Changeset 1739345
- Timestamp:
- 10/02/2017 06:11:52 AM (9 years ago)
- Location:
- mnml-footnotes
- Files:
-
- 2 added
- 8 edited
- 1 copied
-
tags/v0.2.3 (copied) (copied from mnml-footnotes/trunk)
-
tags/v0.2.3/mnml-footnotes-0.2.3 (added)
-
tags/v0.2.3/mnml-footnotes.php (modified) (1 diff)
-
tags/v0.2.3/readme.txt (modified) (2 diffs)
-
tags/v0.2.3/src/class-main.php (modified) (1 diff)
-
tags/v0.2.3/src/class-shortcodes.php (modified) (1 diff)
-
trunk/mnml-footnotes-0.2.3 (added)
-
trunk/mnml-footnotes.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/class-main.php (modified) (1 diff)
-
trunk/src/class-shortcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mnml-footnotes/tags/v0.2.3/mnml-footnotes.php
r1739196 r1739345 3 3 * Plugin Name: MNML Footnotes 4 4 * Description: Auto-listed footnotes for posts. 5 * Version: 0.2. 25 * Version: 0.2.3 6 6 * Author: Mauro Bringolf 7 7 * Author URI: https://maurobringolf.ch -
mnml-footnotes/tags/v0.2.3/readme.txt
r1739196 r1739345 5 5 Requires PHP: 5.3 6 6 Tested up to: 4.8.2 7 Stable tag: 0.2. 27 Stable tag: 0.2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = v0.2.2 = 1 October 2017 43 = v0.2.3 - 2 October 2017 = 44 45 * Testing: Disallow var_dump and some others in PHP_CodeSniffer 46 * Documentation: Improved changelog formatting 47 48 = v0.2.2 - 1 October 2017 = 44 49 45 50 * Bugfix: Fix global post variable in tests and remove unused code. Fixes [#11](https://github.com/maurobringolf/mnml-footnotes/issues/11) 46 51 47 = v0.2.1 = 25 September 201752 = v0.2.1 - 25 September 2017 = 48 53 49 54 * Testing: Use Precise and simplify config on TravisCI. 50 55 * Documentation: Include required PHP version for w.org. 51 56 52 = v0.2.0 = 11 August 201757 = v0.2.0 - 11 August 2017 = 53 58 54 59 * Added a filter called `mnml_footnote_text` that enables customizing the footnote output the via PHP. See [the developer section on GitHub](https://github.com/maurobringolf/mnml-footnotes/#developers) 55 60 for an example. 56 61 57 = v0.1.2 = 10 June 2017 62 = v0.1.2 - 10 June 2017 = 63 58 64 * A sketch of another shortcode was removed in favor of simplicity for now. Nothing changes though, the shortcode for 59 65 footnote references works exactly the same way as before. 60 66 61 = v0.1.1 = 10 June 2017 67 = v0.1.1 - 10 June 2017 = 68 62 69 * The plugin was renamed to MNML Footnotes. 63 70 * A bug concerning repeated footnotes referencing the same text has been fixed. 64 71 * Whitespace at the beginning and end of footnote content is now trimmed away. 65 72 66 = v0.1.0 = 17 April 2017 73 = v0.1.0 - 17 April 2017 = 74 67 75 * Footnotes that only contain a link will now automatically convert into anchor tags with target="_blank". 68 76 * The few words by this plugin on the settings page are now translatable. A `.pot` file for translations is also included inside the `/lang` directory. 69 77 70 = v0.0.1 = 26 March 201778 = v0.0.1 - 26 March 2017 = 71 79 Initial version. -
mnml-footnotes/tags/v0.2.3/src/class-main.php
r1739196 r1739345 63 63 64 64 $this->prefix = 'mnml-footnotes'; 65 $this->version = '0.2. 2';65 $this->version = '0.2.3'; 66 66 $this->file = $file; 67 67 $this->settings = new Settings(); -
mnml-footnotes/tags/v0.2.3/src/class-shortcodes.php
r1739196 r1739345 91 91 if ( $post && $post instanceof \WP_Post ) { 92 92 93 var_dump( $this->footnotes );94 95 93 $footnotes = isset( $this->footnotes[ $post->ID ] ) ? $this->footnotes[ $post->ID ] : false; 96 94 -
mnml-footnotes/trunk/mnml-footnotes.php
r1739196 r1739345 3 3 * Plugin Name: MNML Footnotes 4 4 * Description: Auto-listed footnotes for posts. 5 * Version: 0.2. 25 * Version: 0.2.3 6 6 * Author: Mauro Bringolf 7 7 * Author URI: https://maurobringolf.ch -
mnml-footnotes/trunk/readme.txt
r1739196 r1739345 5 5 Requires PHP: 5.3 6 6 Tested up to: 4.8.2 7 Stable tag: 0.2. 27 Stable tag: 0.2.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = v0.2.2 = 1 October 2017 43 = v0.2.3 - 2 October 2017 = 44 45 * Testing: Disallow var_dump and some others in PHP_CodeSniffer 46 * Documentation: Improved changelog formatting 47 48 = v0.2.2 - 1 October 2017 = 44 49 45 50 * Bugfix: Fix global post variable in tests and remove unused code. Fixes [#11](https://github.com/maurobringolf/mnml-footnotes/issues/11) 46 51 47 = v0.2.1 = 25 September 201752 = v0.2.1 - 25 September 2017 = 48 53 49 54 * Testing: Use Precise and simplify config on TravisCI. 50 55 * Documentation: Include required PHP version for w.org. 51 56 52 = v0.2.0 = 11 August 201757 = v0.2.0 - 11 August 2017 = 53 58 54 59 * Added a filter called `mnml_footnote_text` that enables customizing the footnote output the via PHP. See [the developer section on GitHub](https://github.com/maurobringolf/mnml-footnotes/#developers) 55 60 for an example. 56 61 57 = v0.1.2 = 10 June 2017 62 = v0.1.2 - 10 June 2017 = 63 58 64 * A sketch of another shortcode was removed in favor of simplicity for now. Nothing changes though, the shortcode for 59 65 footnote references works exactly the same way as before. 60 66 61 = v0.1.1 = 10 June 2017 67 = v0.1.1 - 10 June 2017 = 68 62 69 * The plugin was renamed to MNML Footnotes. 63 70 * A bug concerning repeated footnotes referencing the same text has been fixed. 64 71 * Whitespace at the beginning and end of footnote content is now trimmed away. 65 72 66 = v0.1.0 = 17 April 2017 73 = v0.1.0 - 17 April 2017 = 74 67 75 * Footnotes that only contain a link will now automatically convert into anchor tags with target="_blank". 68 76 * The few words by this plugin on the settings page are now translatable. A `.pot` file for translations is also included inside the `/lang` directory. 69 77 70 = v0.0.1 = 26 March 201778 = v0.0.1 - 26 March 2017 = 71 79 Initial version. -
mnml-footnotes/trunk/src/class-main.php
r1739196 r1739345 63 63 64 64 $this->prefix = 'mnml-footnotes'; 65 $this->version = '0.2. 2';65 $this->version = '0.2.3'; 66 66 $this->file = $file; 67 67 $this->settings = new Settings(); -
mnml-footnotes/trunk/src/class-shortcodes.php
r1739196 r1739345 91 91 if ( $post && $post instanceof \WP_Post ) { 92 92 93 var_dump( $this->footnotes );94 95 93 $footnotes = isset( $this->footnotes[ $post->ID ] ) ? $this->footnotes[ $post->ID ] : false; 96 94
Note: See TracChangeset
for help on using the changeset viewer.