Plugin Directory

Changeset 1182701


Ignore:
Timestamp:
06/17/2015 05:10:00 PM (11 years ago)
Author:
DobsonDev
Message:

Tagging version 1.1.5. Fixed a bug where GitHub file contents would not display line breaks properly.

Location:
dobsondev-shortcodes
Files:
3 edited
7 copied

Legend:

Unmodified
Added
Removed
  • dobsondev-shortcodes/tags/1.1.5/changelog.txt

    r1155546 r1182701  
    1414* Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2)
    1515* Minified the CSS and JS scripts (1.1.3)
     16* Fixed a bug where GitHub file contents wouldn't display line breaks properly if they were not a markdown file - thanks to [Stephanie Locke](https://github.com/stephlocke) for catching this and letting me know (1.1.5)
    1617
    1718
  • dobsondev-shortcodes/tags/1.1.5/dobsondev-shortcodes.php

    r1167894 r1182701  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 1.1.4
     6 * Version: 1.1.5
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    165165        return $output_md_file;
    166166      } else {
    167         $output_file = base64_decode($response_array->content);
     167        $output_file = nl2br(base64_decode($response_array->content));
    168168        if ( $cache_id !== "NULL" ) {
    169169          // set the transient if the cache_id is set so we can use it later for faster loading time
  • dobsondev-shortcodes/tags/1.1.5/readme.txt

    r1167894 r1182701  
    77Requires at least: 2.5
    88Tested up to: 4.2.2
    9 Stable tag: 1.1.4
     9Stable tag: 1.1.5
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    167167* Minified the CSS and JS scripts (1.1.3)
    168168* Fixed a naming error for the WordPress transients used in the GitHub README and File shortcodes (1.1.4)
     169* Fixed a bug where GitHub file contents wouldn't display line breaks properly if they were not a markdown file - thanks to [Stephanie Locke](https://github.com/stephlocke) for catching this and letting me know (1.1.5)
    169170
    170171= - 1.0 - =
  • dobsondev-shortcodes/trunk/changelog.txt

    r1155546 r1182701  
    1414* Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2)
    1515* Minified the CSS and JS scripts (1.1.3)
     16* Fixed a bug where GitHub file contents wouldn't display line breaks properly if they were not a markdown file - thanks to [Stephanie Locke](https://github.com/stephlocke) for catching this and letting me know (1.1.5)
    1617
    1718
  • dobsondev-shortcodes/trunk/dobsondev-shortcodes.php

    r1167894 r1182701  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 1.1.4
     6 * Version: 1.1.5
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    165165        return $output_md_file;
    166166      } else {
    167         $output_file = base64_decode($response_array->content);
     167        $output_file = nl2br(base64_decode($response_array->content));
    168168        if ( $cache_id !== "NULL" ) {
    169169          // set the transient if the cache_id is set so we can use it later for faster loading time
  • dobsondev-shortcodes/trunk/readme.txt

    r1167894 r1182701  
    77Requires at least: 2.5
    88Tested up to: 4.2.2
    9 Stable tag: 1.1.4
     9Stable tag: 1.1.5
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    167167* Minified the CSS and JS scripts (1.1.3)
    168168* Fixed a naming error for the WordPress transients used in the GitHub README and File shortcodes (1.1.4)
     169* Fixed a bug where GitHub file contents wouldn't display line breaks properly if they were not a markdown file - thanks to [Stephanie Locke](https://github.com/stephlocke) for catching this and letting me know (1.1.5)
    169170
    170171= - 1.0 - =
Note: See TracChangeset for help on using the changeset viewer.