Plugin Directory

Changeset 1739345


Ignore:
Timestamp:
10/02/2017 06:11:52 AM (9 years ago)
Author:
maurobringolf
Message:

Release version v0.2.3 from GitHub

Location:
mnml-footnotes
Files:
2 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mnml-footnotes/tags/v0.2.3/mnml-footnotes.php

    r1739196 r1739345  
    33 * Plugin Name: MNML Footnotes
    44 * Description: Auto-listed footnotes for posts.
    5  * Version:     0.2.2
     5 * Version:     0.2.3
    66 * Author:      Mauro Bringolf
    77 * Author URI:  https://maurobringolf.ch
  • mnml-footnotes/tags/v0.2.3/readme.txt

    r1739196 r1739345  
    55Requires PHP: 5.3
    66Tested up to: 4.8.2
    7 Stable tag: 0.2.2
     7Stable tag: 0.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
    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 =
    4449
    4550* Bugfix: Fix global post variable in tests and remove unused code. Fixes [#11](https://github.com/maurobringolf/mnml-footnotes/issues/11)
    4651
    47 = v0.2.1 = 25 September 2017
     52= v0.2.1 - 25 September 2017 =
    4853
    4954* Testing: Use Precise and simplify config on TravisCI.
    5055* Documentation: Include required PHP version for w.org.
    5156
    52 = v0.2.0 = 11 August 2017
     57= v0.2.0 - 11 August 2017 =
    5358
    5459* 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)
    5560for an example.
    5661
    57 = v0.1.2 = 10 June 2017
     62= v0.1.2 - 10 June 2017 =
     63
    5864* A sketch of another shortcode was removed in favor of simplicity for now. Nothing changes though, the shortcode for
    5965footnote references works exactly the same way as before.
    6066
    61 = v0.1.1 = 10 June 2017
     67= v0.1.1 - 10 June 2017 =
     68
    6269* The plugin was renamed to MNML Footnotes.
    6370* A bug concerning repeated footnotes referencing the same text has been fixed.
    6471* Whitespace at the beginning and end of footnote content is now trimmed away.
    6572
    66 = v0.1.0 = 17 April 2017
     73= v0.1.0 - 17 April 2017 =
     74
    6775* Footnotes that only contain a link will now automatically convert into anchor tags with target="_blank".
    6876* 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.
    6977
    70 = v0.0.1 = 26 March 2017
     78= v0.0.1 - 26 March 2017 =
    7179Initial version.
  • mnml-footnotes/tags/v0.2.3/src/class-main.php

    r1739196 r1739345  
    6363
    6464        $this->prefix = 'mnml-footnotes';
    65         $this->version = '0.2.2';
     65        $this->version = '0.2.3';
    6666        $this->file = $file;
    6767        $this->settings = new Settings();
  • mnml-footnotes/tags/v0.2.3/src/class-shortcodes.php

    r1739196 r1739345  
    9191        if ( $post && $post instanceof \WP_Post ) {
    9292
    93             var_dump( $this->footnotes );
    94 
    9593            $footnotes = isset( $this->footnotes[ $post->ID ] ) ? $this->footnotes[ $post->ID ] : false;
    9694
  • mnml-footnotes/trunk/mnml-footnotes.php

    r1739196 r1739345  
    33 * Plugin Name: MNML Footnotes
    44 * Description: Auto-listed footnotes for posts.
    5  * Version:     0.2.2
     5 * Version:     0.2.3
    66 * Author:      Mauro Bringolf
    77 * Author URI:  https://maurobringolf.ch
  • mnml-footnotes/trunk/readme.txt

    r1739196 r1739345  
    55Requires PHP: 5.3
    66Tested up to: 4.8.2
    7 Stable tag: 0.2.2
     7Stable tag: 0.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
    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 =
    4449
    4550* Bugfix: Fix global post variable in tests and remove unused code. Fixes [#11](https://github.com/maurobringolf/mnml-footnotes/issues/11)
    4651
    47 = v0.2.1 = 25 September 2017
     52= v0.2.1 - 25 September 2017 =
    4853
    4954* Testing: Use Precise and simplify config on TravisCI.
    5055* Documentation: Include required PHP version for w.org.
    5156
    52 = v0.2.0 = 11 August 2017
     57= v0.2.0 - 11 August 2017 =
    5358
    5459* 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)
    5560for an example.
    5661
    57 = v0.1.2 = 10 June 2017
     62= v0.1.2 - 10 June 2017 =
     63
    5864* A sketch of another shortcode was removed in favor of simplicity for now. Nothing changes though, the shortcode for
    5965footnote references works exactly the same way as before.
    6066
    61 = v0.1.1 = 10 June 2017
     67= v0.1.1 - 10 June 2017 =
     68
    6269* The plugin was renamed to MNML Footnotes.
    6370* A bug concerning repeated footnotes referencing the same text has been fixed.
    6471* Whitespace at the beginning and end of footnote content is now trimmed away.
    6572
    66 = v0.1.0 = 17 April 2017
     73= v0.1.0 - 17 April 2017 =
     74
    6775* Footnotes that only contain a link will now automatically convert into anchor tags with target="_blank".
    6876* 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.
    6977
    70 = v0.0.1 = 26 March 2017
     78= v0.0.1 - 26 March 2017 =
    7179Initial version.
  • mnml-footnotes/trunk/src/class-main.php

    r1739196 r1739345  
    6363
    6464        $this->prefix = 'mnml-footnotes';
    65         $this->version = '0.2.2';
     65        $this->version = '0.2.3';
    6666        $this->file = $file;
    6767        $this->settings = new Settings();
  • mnml-footnotes/trunk/src/class-shortcodes.php

    r1739196 r1739345  
    9191        if ( $post && $post instanceof \WP_Post ) {
    9292
    93             var_dump( $this->footnotes );
    94 
    9593            $footnotes = isset( $this->footnotes[ $post->ID ] ) ? $this->footnotes[ $post->ID ] : false;
    9694
Note: See TracChangeset for help on using the changeset viewer.