Plugin Directory

Changeset 1649342


Ignore:
Timestamp:
05/02/2017 05:02:55 AM (9 years ago)
Author:
DobsonDev
Message:

Tagging version 2.1.6

Location:
dobsondev-shortcodes
Files:
3 edited
12 copied

Legend:

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

    r1631361 r1649342  
    1313Bug Fixes
    1414
     15* Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6)
     16* Tested up to Wordpress 4.7.4 (2.1.6)
    1517* Tested up to Wordpress 4.7.3 (2.1.5)
    1618* Tested up to WordPress 4.7 (2.1.4)
  • dobsondev-shortcodes/tags/2.1.6/dobsondev-shortcodes.php

    r1631361 r1649342  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 2.1.5
     6 * Version: 2.1.6
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    204204      $response_array = json_decode($response);
    205205      // var_dump($response_array);
    206       if (strcasecmp($markdown, "yes") == 0) {
     206      if (strcasecmp($markdown, "yes") == 0 || strcasecmp($markdown, "true") == 0) {
    207207        $parsedown = new Parsedown();
    208208        $output_md_file = $parsedown->text(base64_decode($response_array->content));
  • dobsondev-shortcodes/tags/2.1.6/readme.txt

    r1631361 r1649342  
    66Tags: dobsondev, shortcodes, pdf, portable document format, github gists, github, gists, github readme, github project readme, github repo readme, github file contents, twitch streams, twitch, twitch tv, twitch chat, YouTube video, YouTube, inline code, code snippets, code block, programming, code examples, button, buttons, css button, css buttons, button shortcode, buttons shortcodes, user interaction, user interaction messages, info message, information message, success message, warning message, error message, related posts, related posts shortcode, jquery, jquery related posts, related posts slideshow, tinymce, tinymce plugin, user interface
    77Requires at least: 2.5
    8 Tested up to: 4.7.3
    9 Stable tag: 2.1.5
     8Tested up to: 4.7.4
     9Stable tag: 2.1.6
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    188188Bug Fixes
    189189
     190* Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6)
     191* Tested up to Wordpress 4.7.4 (2.1.6)
    190192* Tested up to Wordpress 4.7.3 (2.1.5)
    191193* Tested up to Wordpress 4.7 (2.1.4)
  • dobsondev-shortcodes/trunk/changelog.txt

    r1631361 r1649342  
    1313Bug Fixes
    1414
     15* Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6)
     16* Tested up to Wordpress 4.7.4 (2.1.6)
    1517* Tested up to Wordpress 4.7.3 (2.1.5)
    1618* Tested up to WordPress 4.7 (2.1.4)
  • dobsondev-shortcodes/trunk/dobsondev-shortcodes.php

    r1631361 r1649342  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 2.1.5
     6 * Version: 2.1.6
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    204204      $response_array = json_decode($response);
    205205      // var_dump($response_array);
    206       if (strcasecmp($markdown, "yes") == 0) {
     206      if (strcasecmp($markdown, "yes") == 0 || strcasecmp($markdown, "true") == 0) {
    207207        $parsedown = new Parsedown();
    208208        $output_md_file = $parsedown->text(base64_decode($response_array->content));
  • dobsondev-shortcodes/trunk/readme.txt

    r1631361 r1649342  
    66Tags: dobsondev, shortcodes, pdf, portable document format, github gists, github, gists, github readme, github project readme, github repo readme, github file contents, twitch streams, twitch, twitch tv, twitch chat, YouTube video, YouTube, inline code, code snippets, code block, programming, code examples, button, buttons, css button, css buttons, button shortcode, buttons shortcodes, user interaction, user interaction messages, info message, information message, success message, warning message, error message, related posts, related posts shortcode, jquery, jquery related posts, related posts slideshow, tinymce, tinymce plugin, user interface
    77Requires at least: 2.5
    8 Tested up to: 4.7.3
    9 Stable tag: 2.1.5
     8Tested up to: 4.7.4
     9Stable tag: 2.1.6
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    188188Bug Fixes
    189189
     190* Setting markdown equal to "true" will now work for embedding GitHub files instead of just "yes" 4.7.4 (2.1.6)
     191* Tested up to Wordpress 4.7.4 (2.1.6)
    190192* Tested up to Wordpress 4.7.3 (2.1.5)
    191193* Tested up to Wordpress 4.7 (2.1.4)
Note: See TracChangeset for help on using the changeset viewer.