Changeset 2208818
- Timestamp:
- 12/09/2019 08:53:45 PM (6 years ago)
- Location:
- dobsondev-shortcodes
- Files:
-
- 4 edited
- 13 copied
-
tags/2.1.12 (copied) (copied from dobsondev-shortcodes/trunk)
-
tags/2.1.12/changelog.txt (copied) (copied from dobsondev-shortcodes/trunk/changelog.txt) (1 diff)
-
tags/2.1.12/css (copied) (copied from dobsondev-shortcodes/trunk/css)
-
tags/2.1.12/css/dobsondev-shortcodes.css (copied) (copied from dobsondev-shortcodes/trunk/css/dobsondev-shortcodes.css)
-
tags/2.1.12/css/dobsondev-shortcodes.min.css (copied) (copied from dobsondev-shortcodes/trunk/css/dobsondev-shortcodes.min.css)
-
tags/2.1.12/dobsondev-shortcodes.php (copied) (copied from dobsondev-shortcodes/trunk/dobsondev-shortcodes.php) (6 diffs)
-
tags/2.1.12/js (copied) (copied from dobsondev-shortcodes/trunk/js)
-
tags/2.1.12/js/tinymce-plugin.js (copied) (copied from dobsondev-shortcodes/trunk/js/tinymce-plugin.js)
-
tags/2.1.12/js/tinymce-plugin.min.js (copied) (copied from dobsondev-shortcodes/trunk/js/tinymce-plugin.min.js)
-
tags/2.1.12/libs (copied) (copied from dobsondev-shortcodes/trunk/libs)
-
tags/2.1.12/libs/Parsedown.php (copied) (copied from dobsondev-shortcodes/trunk/libs/Parsedown.php) (1 diff)
-
tags/2.1.12/readme.txt (copied) (copied from dobsondev-shortcodes/trunk/readme.txt) (2 diffs)
-
tags/2.1.12/res (copied) (copied from dobsondev-shortcodes/trunk/res)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/dobsondev-shortcodes.php (modified) (6 diffs)
-
trunk/libs/Parsedown.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dobsondev-shortcodes/tags/2.1.12/changelog.txt
r2190986 r2208818 13 13 Bug Fixes 14 14 15 * Fixed bug with Parsedown if other plugins used the same library and didn't change the class name (2.1.12) 15 16 * Tested up to WordPress 5.3 (2.1.11) 16 17 * Tested up to WordPress 5.1 (2.1.10) -
dobsondev-shortcodes/tags/2.1.12/dobsondev-shortcodes.php
r2190986 r2208818 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 2.1.1 16 * Version: 2.1.12 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 29 29 define( 'DOBSONDEV_SHRTCODE_TEXTDOMAIN', 'dobsondev-shortcodes' ); 30 30 /* Define our version number for the plugin */ 31 define( 'DOBSONDEV_SHRTCODE_VER', '2.1.1 1' );31 define( 'DOBSONDEV_SHRTCODE_VER', '2.1.12' ); 32 32 33 33 … … 143 143 $response_array = json_decode($response); 144 144 // var_dump($response_array); 145 $parsedown = new Parsedown();145 $parsedown = new DobsonDevShortcodesParsedown(); 146 146 $output_readme = $parsedown->text(base64_decode($response_array->content)); 147 147 if ( $cache_id !== "NULL" || !empty( $cache_id ) ) { … … 205 205 // var_dump($response_array); 206 206 if (strcasecmp($markdown, "yes") == 0 || strcasecmp($markdown, "true") == 0) { 207 $parsedown = new Parsedown();207 $parsedown = new DobsonDevShortcodesParsedown(); 208 208 $output_md_file = $parsedown->text(base64_decode($response_array->content)); 209 209 if ( $cache_id !== "NULL" || !empty( $cache_id ) ) { … … 356 356 function dobsondev_shrtcode_kodi_addon_download($atts) { 357 357 extract(shortcode_atts(array( 358 'addonid' => "NULL",359 'addonxmlurl' => "NULL",358 'addonid' => "NULL", 359 'addonxmlurl' => "NULL", 360 360 'repoprefix' => "" 361 361 ), $atts)); … … 364 364 } else { 365 365 $curl = curl_init(); 366 curl_setopt_array($curl, array(367 CURLOPT_RETURNTRANSFER => 1,368 CURLOPT_URL => $addonxmlurl,369 CURLOPT_USERAGENT => 'Repo Info Grabber 1.0',370 CURLOPT_HEADER => false,371 CURLOPT_SSL_VERIFYPEER => false372 ));366 curl_setopt_array($curl, array( 367 CURLOPT_RETURNTRANSFER => 1, 368 CURLOPT_URL => $addonxmlurl, 369 CURLOPT_USERAGENT => 'Repo Info Grabber 1.0', 370 CURLOPT_HEADER => false, 371 CURLOPT_SSL_VERIFYPEER => false 372 )); 373 373 $response = curl_exec($curl); 374 374 // var_dump($response); -
dobsondev-shortcodes/tags/2.1.12/libs/Parsedown.php
r1851269 r2208818 14 14 # 15 15 16 class Parsedown16 class DobsonDevShortcodesParsedown 17 17 { 18 18 # ~ -
dobsondev-shortcodes/tags/2.1.12/readme.txt
r2190986 r2208818 7 7 Requires at least: 2.5 8 8 Tested up to: 5.3 9 Stable tag: 2.1.1 19 Stable tag: 2.1.12 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 188 188 Bug Fixes 189 189 190 * Fixed bug with Parsedown if other plugins used the same library and didn't change the class name (2.1.12) 191 * Tested up to WordPress 5.3 (2.1.11) 190 192 * Tested up to WordPress 4.9 (2.1.8) 191 193 * Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6) -
dobsondev-shortcodes/trunk/changelog.txt
r2190986 r2208818 13 13 Bug Fixes 14 14 15 * Fixed bug with Parsedown if other plugins used the same library and didn't change the class name (2.1.12) 15 16 * Tested up to WordPress 5.3 (2.1.11) 16 17 * Tested up to WordPress 5.1 (2.1.10) -
dobsondev-shortcodes/trunk/dobsondev-shortcodes.php
r2190986 r2208818 4 4 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/ 5 5 * Description: A collection of helpful shortcodes. 6 * Version: 2.1.1 16 * Version: 2.1.12 7 7 * Author: Alex Dobson 8 8 * Author URI: http://dobsondev.com/ … … 29 29 define( 'DOBSONDEV_SHRTCODE_TEXTDOMAIN', 'dobsondev-shortcodes' ); 30 30 /* Define our version number for the plugin */ 31 define( 'DOBSONDEV_SHRTCODE_VER', '2.1.1 1' );31 define( 'DOBSONDEV_SHRTCODE_VER', '2.1.12' ); 32 32 33 33 … … 143 143 $response_array = json_decode($response); 144 144 // var_dump($response_array); 145 $parsedown = new Parsedown();145 $parsedown = new DobsonDevShortcodesParsedown(); 146 146 $output_readme = $parsedown->text(base64_decode($response_array->content)); 147 147 if ( $cache_id !== "NULL" || !empty( $cache_id ) ) { … … 205 205 // var_dump($response_array); 206 206 if (strcasecmp($markdown, "yes") == 0 || strcasecmp($markdown, "true") == 0) { 207 $parsedown = new Parsedown();207 $parsedown = new DobsonDevShortcodesParsedown(); 208 208 $output_md_file = $parsedown->text(base64_decode($response_array->content)); 209 209 if ( $cache_id !== "NULL" || !empty( $cache_id ) ) { … … 356 356 function dobsondev_shrtcode_kodi_addon_download($atts) { 357 357 extract(shortcode_atts(array( 358 'addonid' => "NULL",359 'addonxmlurl' => "NULL",358 'addonid' => "NULL", 359 'addonxmlurl' => "NULL", 360 360 'repoprefix' => "" 361 361 ), $atts)); … … 364 364 } else { 365 365 $curl = curl_init(); 366 curl_setopt_array($curl, array(367 CURLOPT_RETURNTRANSFER => 1,368 CURLOPT_URL => $addonxmlurl,369 CURLOPT_USERAGENT => 'Repo Info Grabber 1.0',370 CURLOPT_HEADER => false,371 CURLOPT_SSL_VERIFYPEER => false372 ));366 curl_setopt_array($curl, array( 367 CURLOPT_RETURNTRANSFER => 1, 368 CURLOPT_URL => $addonxmlurl, 369 CURLOPT_USERAGENT => 'Repo Info Grabber 1.0', 370 CURLOPT_HEADER => false, 371 CURLOPT_SSL_VERIFYPEER => false 372 )); 373 373 $response = curl_exec($curl); 374 374 // var_dump($response); -
dobsondev-shortcodes/trunk/libs/Parsedown.php
r1851269 r2208818 14 14 # 15 15 16 class Parsedown16 class DobsonDevShortcodesParsedown 17 17 { 18 18 # ~ -
dobsondev-shortcodes/trunk/readme.txt
r2190986 r2208818 7 7 Requires at least: 2.5 8 8 Tested up to: 5.3 9 Stable tag: 2.1.1 19 Stable tag: 2.1.12 10 10 11 11 Add a collection of helpful shortcodes to your site. … … 188 188 Bug Fixes 189 189 190 * Fixed bug with Parsedown if other plugins used the same library and didn't change the class name (2.1.12) 191 * Tested up to WordPress 5.3 (2.1.11) 190 192 * Tested up to WordPress 4.9 (2.1.8) 191 193 * Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6)
Note: See TracChangeset
for help on using the changeset viewer.