Plugin Directory

Changeset 1131367


Ignore:
Timestamp:
04/09/2015 05:27:45 PM (11 years ago)
Author:
DobsonDev
Message:

Tagging Version 1.1.2

Location:
dobsondev-shortcodes
Files:
3 edited
7 copied

Legend:

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

    r1129669 r1131367  
    1 = 1.1.1 =
     1= 1.1 =
    22
    33New Features
    44
    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)
    67
    78Bug Fixes
    89
    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)
    2114
    2215= 1.0 =
  • dobsondev-shortcodes/tags/1.1.2/dobsondev-shortcodes.php

    r1129669 r1131367  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    108108    // var_dump($response_array);
    109109    $parsedown = new Parsedown();
    110     echo $parsedown->text(base64_decode($response_array->content));
     110    return $parsedown->text(base64_decode($response_array->content));
    111111  }
    112112}
     
    138138    if (strcasecmp($markdown, "yes") == 0) {
    139139      $parsedown = new Parsedown();
    140       echo $parsedown->text(base64_decode($response_array->content));
     140      return $parsedown->text(base64_decode($response_array->content));
    141141    } else {
    142       echo base64_decode($response_array->content);
     142      return base64_decode($response_array->content);
    143143    }
    144144  }
  • dobsondev-shortcodes/tags/1.1.2/readme.txt

    r1129695 r1131367  
    77Requires at least: 2.5
    88Tested up to: 4.1.1
    9 Stable tag: 1.1.1
     9Stable tag: 1.1.2
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    147147== Changelog ==
    148148
    149 = - 1.1.1 - =
     149= - 1.1 - =
    150150
    151151New Features
    152152
    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)
    154155
    155156Bug Fixes
    156157
    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)
    171162
    172163= - 1.0 - =
  • dobsondev-shortcodes/trunk/changelog.txt

    r1129669 r1131367  
    1 = 1.1.1 =
     1= 1.1 =
    22
    33New Features
    44
    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)
    67
    78Bug Fixes
    89
    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)
    2114
    2215= 1.0 =
  • dobsondev-shortcodes/trunk/dobsondev-shortcodes.php

    r1129669 r1131367  
    44 * Plugin URI: http://dobsondev.com/portfolio/dobsondev-shortcodes/
    55 * Description: A collection of helpful shortcodes.
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Author: Alex Dobson
    88 * Author URI: http://dobsondev.com/
     
    108108    // var_dump($response_array);
    109109    $parsedown = new Parsedown();
    110     echo $parsedown->text(base64_decode($response_array->content));
     110    return $parsedown->text(base64_decode($response_array->content));
    111111  }
    112112}
     
    138138    if (strcasecmp($markdown, "yes") == 0) {
    139139      $parsedown = new Parsedown();
    140       echo $parsedown->text(base64_decode($response_array->content));
     140      return $parsedown->text(base64_decode($response_array->content));
    141141    } else {
    142       echo base64_decode($response_array->content);
     142      return base64_decode($response_array->content);
    143143    }
    144144  }
  • dobsondev-shortcodes/trunk/readme.txt

    r1129695 r1131367  
    77Requires at least: 2.5
    88Tested up to: 4.1.1
    9 Stable tag: 1.1.1
     9Stable tag: 1.1.2
    1010
    1111Add a collection of helpful shortcodes to your site.
     
    147147== Changelog ==
    148148
    149 = - 1.1.1 - =
     149= - 1.1 - =
    150150
    151151New Features
    152152
    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)
    154155
    155156Bug Fixes
    156157
    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)
    171162
    172163= - 1.0 - =
Note: See TracChangeset for help on using the changeset viewer.