Changeset 1182701
- Timestamp:
- 06/17/2015 05:10:00 PM (11 years ago)
- Location:
- dobsondev-shortcodes
- Files:
-
- 3 edited
- 7 copied
-
tags/1.1.5 (copied) (copied from dobsondev-shortcodes/trunk)
-
tags/1.1.5/changelog.txt (copied) (copied from dobsondev-shortcodes/trunk/changelog.txt) (1 diff)
-
tags/1.1.5/css (copied) (copied from dobsondev-shortcodes/trunk/css)
-
tags/1.1.5/dobsondev-shortcodes.php (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.php) (2 diffs)
-
tags/1.1.5/js (copied) (copied from dobsondev-shortcodes/trunk/js)
-
tags/1.1.5/libs (copied) (copied from dobsondev-shortcodes/trunk/libs)
-
tags/1.1.5/readme.txt (copied) (copied from dobsondev-shortcodes/trunk/readme.txt) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/dobsondev-shortcodes.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dobsondev-shortcodes/tags/1.1.5/changelog.txt
r1155546 r1182701 14 14 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 15 15 * 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) 16 17 17 18 -
dobsondev-shortcodes/tags/1.1.5/dobsondev-shortcodes.php
r1167894 r1182701 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 1.1. 46 * Version: 1.1.5 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 165 165 return $output_md_file; 166 166 } else { 167 $output_file = base64_decode($response_array->content);167 $output_file = nl2br(base64_decode($response_array->content)); 168 168 if ( $cache_id !== "NULL" ) { 169 169 // 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 7 7 Requires at least: 2.5 8 8 Tested up to: 4.2.2 9 Stable tag: 1.1. 49 Stable tag: 1.1.5 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 167 167 * Minified the CSS and JS scripts (1.1.3) 168 168 * 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) 169 170 170 171 = - 1.0 - = -
dobsondev-shortcodes/trunk/changelog.txt
r1155546 r1182701 14 14 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 15 15 * 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) 16 17 17 18 -
dobsondev-shortcodes/trunk/dobsondev-shortcodes.php
r1167894 r1182701 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 1.1. 46 * Version: 1.1.5 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 165 165 return $output_md_file; 166 166 } else { 167 $output_file = base64_decode($response_array->content);167 $output_file = nl2br(base64_decode($response_array->content)); 168 168 if ( $cache_id !== "NULL" ) { 169 169 // 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 7 7 Requires at least: 2.5 8 8 Tested up to: 4.2.2 9 Stable tag: 1.1. 49 Stable tag: 1.1.5 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 167 167 * Minified the CSS and JS scripts (1.1.3) 168 168 * 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) 169 170 170 171 = - 1.0 - =
Note: See TracChangeset
for help on using the changeset viewer.