Skip to content

Commit

Permalink
Bump version and give props for #14
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Feb 27, 2017
1 parent 63ed449 commit 05e1abd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WordPress Shortcode Button (1.0.5)
WordPress Shortcode Button (1.0.6)
================

Tinymce and Quicktag buttons (and modals) for outputting shortcodes. Built to work with [CMB2](https://github.com/WebDevStudios/CMB2).
Expand Down Expand Up @@ -133,6 +133,9 @@ function shortcode_button_only_pages() {

#### Changelog

* 1.0.6
* Remove the custom recursive QTags button in the shortcode modal wysiwyg editor. Props (@nonsensecreativity)[https://github.com/nonsensecreativity], (#14)[https://github.com/jtsternberg/Shortcode_Button/pull/14].

* 1.0.5
* Fix incorrect content displaying when editing shortcodes with self-closing tags and content.
* Fix radio button 'checked' value displays when editing shortcode.
Expand Down
2 changes: 1 addition & 1 deletion lib/class-shortcode-button.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @todo Fix generic ids possibly conflicting (maybe add a prefix to all fields)
*
* @version 1.0.5
* @version 1.0.6
*/
class Shortcode_Button {

Expand Down
14 changes: 7 additions & 7 deletions shortcode-button.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @author Justin Sternberg <justin@dsgnwrks.pro>
* @copyright 2015-2016 Justin Sternberg <justin@dsgnwrks.pro>
* @license GPL-2.0+
* @version 1.0.5
* @version 1.0.6
* @link https://github.com/jtsternberg/Shortcode_Button
* @since 1.0.0
*/
Expand All @@ -37,7 +37,7 @@
* Loader versioning: http://jtsternberg.github.io/wp-lib-loader/
*/

if ( ! class_exists( 'Shortcode_Button_105', false ) ) {
if ( ! class_exists( 'Shortcode_Button_106', false ) ) {

/**
* Versioned loader class-name
Expand All @@ -48,18 +48,18 @@
* @package Shortcode_Button
* @author Justin Sternberg <justin@dsgnwrks.pro>
* @license GPL-2.0+
* @version 1.0.5
* @version 1.0.6
* @link https://github.com/jtsternberg/Shortcode_Button
* @since 1.0.0
*/
class Shortcode_Button_105 {
class Shortcode_Button_106 {

/**
* Shortcode_Button version number
* @var string
* @since 1.0.0
*/
const VERSION = '1.0.5';
const VERSION = '1.0.6';

/**
* Current version hook priority.
Expand All @@ -68,7 +68,7 @@ class Shortcode_Button_105 {
* @var int
* @since 1.0.0
*/
const PRIORITY = 9994;
const PRIORITY = 9993;

/**
* Starts the version checking process.
Expand Down Expand Up @@ -152,5 +152,5 @@ public function include_lib() {
}

// Kick it off.
new Shortcode_Button_105;
new Shortcode_Button_106;
}

0 comments on commit 05e1abd

Please sign in to comment.