Changeset 1131367
- Timestamp:
- 04/09/2015 05:27:45 PM (11 years ago)
- Location:
- dobsondev-shortcodes
- Files:
-
- 3 edited
- 7 copied
-
tags/1.1.2 (copied) (copied from dobsondev-shortcodes/trunk)
-
tags/1.1.2/changelog.txt (copied) (copied from dobsondev-shortcodes/trunk/changelog.txt) (1 diff)
-
tags/1.1.2/dobsondev-shortcodes.css (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.css)
-
tags/1.1.2/dobsondev-shortcodes.js (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.js)
-
tags/1.1.2/dobsondev-shortcodes.php (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.php) (3 diffs)
-
tags/1.1.2/libs (copied) (copied from dobsondev-shortcodes/trunk/libs)
-
tags/1.1.2/readme.txt (copied) (copied from dobsondev-shortcodes/trunk/readme.txt) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/dobsondev-shortcodes.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dobsondev-shortcodes/tags/1.1.2/changelog.txt
r1129669 r1131367 1 = 1.1 .1=1 = 1.1 = 2 2 3 3 New Features 4 4 5 * Added shortcode for displaying GitHub repository file contents. 5 * Added shortcode for displaying GitHub repository README.md files (1.1.0) 6 * Added shortcode for displaying GitHub repository file contents (1.1.1) 6 7 7 8 Bug Fixes 8 9 9 * Changed some documentation errors. 10 11 = 1.1.0 = 12 13 New Features 14 15 * Added shortcode for displaying GitHub Repository README.md files 16 17 Bug Fixes 18 19 * Added some documentation that was missing 20 * Added the tags for tested up to 4.1.1 10 * Added some documentation that was missing (1.1.0) 11 * Added the tags for tested up to WordPress 4.1.1 (1.1.0) 12 * Changed some documentation errors (1.1.1) 13 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 21 14 22 15 = 1.0 = -
dobsondev-shortcodes/tags/1.1.2/dobsondev-shortcodes.php
r1129669 r1131367 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 108 108 // var_dump($response_array); 109 109 $parsedown = new Parsedown(); 110 echo$parsedown->text(base64_decode($response_array->content));110 return $parsedown->text(base64_decode($response_array->content)); 111 111 } 112 112 } … … 138 138 if (strcasecmp($markdown, "yes") == 0) { 139 139 $parsedown = new Parsedown(); 140 echo$parsedown->text(base64_decode($response_array->content));140 return $parsedown->text(base64_decode($response_array->content)); 141 141 } else { 142 echobase64_decode($response_array->content);142 return base64_decode($response_array->content); 143 143 } 144 144 } -
dobsondev-shortcodes/tags/1.1.2/readme.txt
r1129695 r1131367 7 7 Requires at least: 2.5 8 8 Tested up to: 4.1.1 9 Stable tag: 1.1. 19 Stable tag: 1.1.2 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 147 147 == Changelog == 148 148 149 = - 1.1 .1- =149 = - 1.1 - = 150 150 151 151 New Features 152 152 153 * Added shortcode for displaying GitHub repository file contents. 153 * Added shortcode for displaying GitHub repository README.md files (1.1.0) 154 * Added shortcode for displaying GitHub repository file contents (1.1.1) 154 155 155 156 Bug Fixes 156 157 157 * Changed some documentation errors. 158 159 = - 1.1.0 - = 160 161 The Markdown Parser used for the GitHub repository Readme shortcode is [Parsedown](http://parsedown.org/). 162 163 New Features 164 165 * Added shortcode for displaying GitHub repository README.md files 166 167 Bug Fixes 168 169 * Added some documentation that was missing 170 * Added the tags for tested up to 4.1.1 158 * Added some documentation that was missing (1.1.0) 159 * Added the tags for tested up to WordPress 4.1.1 (1.1.0) 160 * Changed some documentation errors (1.1.1) 161 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 171 162 172 163 = - 1.0 - = -
dobsondev-shortcodes/trunk/changelog.txt
r1129669 r1131367 1 = 1.1 .1=1 = 1.1 = 2 2 3 3 New Features 4 4 5 * Added shortcode for displaying GitHub repository file contents. 5 * Added shortcode for displaying GitHub repository README.md files (1.1.0) 6 * Added shortcode for displaying GitHub repository file contents (1.1.1) 6 7 7 8 Bug Fixes 8 9 9 * Changed some documentation errors. 10 11 = 1.1.0 = 12 13 New Features 14 15 * Added shortcode for displaying GitHub Repository README.md files 16 17 Bug Fixes 18 19 * Added some documentation that was missing 20 * Added the tags for tested up to 4.1.1 10 * Added some documentation that was missing (1.1.0) 11 * Added the tags for tested up to WordPress 4.1.1 (1.1.0) 12 * Changed some documentation errors (1.1.1) 13 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 21 14 22 15 = 1.0 = -
dobsondev-shortcodes/trunk/dobsondev-shortcodes.php
r1129669 r1131367 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 108 108 // var_dump($response_array); 109 109 $parsedown = new Parsedown(); 110 echo$parsedown->text(base64_decode($response_array->content));110 return $parsedown->text(base64_decode($response_array->content)); 111 111 } 112 112 } … … 138 138 if (strcasecmp($markdown, "yes") == 0) { 139 139 $parsedown = new Parsedown(); 140 echo$parsedown->text(base64_decode($response_array->content));140 return $parsedown->text(base64_decode($response_array->content)); 141 141 } else { 142 echobase64_decode($response_array->content);142 return base64_decode($response_array->content); 143 143 } 144 144 } -
dobsondev-shortcodes/trunk/readme.txt
r1129695 r1131367 7 7 Requires at least: 2.5 8 8 Tested up to: 4.1.1 9 Stable tag: 1.1. 19 Stable tag: 1.1.2 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 147 147 == Changelog == 148 148 149 = - 1.1 .1- =149 = - 1.1 - = 150 150 151 151 New Features 152 152 153 * Added shortcode for displaying GitHub repository file contents. 153 * Added shortcode for displaying GitHub repository README.md files (1.1.0) 154 * Added shortcode for displaying GitHub repository file contents (1.1.1) 154 155 155 156 Bug Fixes 156 157 157 * Changed some documentation errors. 158 159 = - 1.1.0 - = 160 161 The Markdown Parser used for the GitHub repository Readme shortcode is [Parsedown](http://parsedown.org/). 162 163 New Features 164 165 * Added shortcode for displaying GitHub repository README.md files 166 167 Bug Fixes 168 169 * Added some documentation that was missing 170 * Added the tags for tested up to 4.1.1 158 * Added some documentation that was missing (1.1.0) 159 * Added the tags for tested up to WordPress 4.1.1 (1.1.0) 160 * Changed some documentation errors (1.1.1) 161 * Fixed a return error in the GitHub README and GitHub File Contents shortcodes (1.1.2) 171 162 172 163 = - 1.0 - =
Note: See TracChangeset
for help on using the changeset viewer.