Skip to content

Commit

Permalink
Merge pull request #536 from wp-shortcake/526-update-readme
Browse files Browse the repository at this point in the history
Update readme with what's changed in v0.6.0
  • Loading branch information
danielbachhuber committed Nov 2, 2015
2 parents 193e562 + 17a7e31 commit 69ca04d
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 14 deletions.
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Shortcake (Shortcode UI) #
**Contributors:** fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver
**Contributors:** fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver, garyj, mte90, fredserva, khromov
**Tags:** shortcodes
**Requires at least:** 4.1
**Tested up to:** 4.3
**Stable tag:** 0.5.0
**Tested up to:** 4.4
**Stable tag:** 0.6.0
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -59,12 +59,24 @@ We've removed the compatibility shim for the magical `content` attribute. If you

## Changelog ##

### 0.6.0 (???) ###
* Core integration: Fully support PHP 5.2.
### 0.6.0 (November 2, 2015) ###
* Supports an optional `encode=true` argument for attributes, to allow limited HTML support. Attributes need to be run through `shortcode_atts()` in order to be properly decoded.
* Defines a `SHORTCODE_UI_DOING_PREVIEW` constant when rendering a shortcode preview, which enables callbacks to serve a different representation of the shortcode in TinyMCE.
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
* Cleaned up icon vertical alignment in the Insert Post Element UI.
* Added CSS utility classes to all field HTML. For instance, the attachment field is now wrapped with `shortcode-ui-field-attachment`.
* Added filters to modify shortcode UI arguments on registration.
* Cleaned up the example plugin, so it's a much more useful developer reference.
* Uses core's JavaScript regex for parsing shortcodes, instead of maintaining separate regex.
* Permits HTML in field labels and descriptions.
* Added Danish translation.
* Added Italian translation.
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
* Added German translation.
* Core integration: Fully supports PHP 5.2.
* Bug fix: Persists shortcode attributes and inner content when there isn't UI registered for them. Previously, they would be discarded.
* Bug fix: Display the description on the post select field.
* Bug fix: Attribute field change event binds to `input` event rather than `keyup`.
* [Full release notes](http://fusion.net/story/225765/introducing-shortcake-v0-6-0-cream/)

### 0.5.0 (August 26, 2015) ###
* Attachment field: Made it easier to change the attachment by clicking on the thumbnail; added attachment metadata in the field view.
Expand Down
24 changes: 18 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== Shortcake (Shortcode UI) ===
Contributors: fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver
Contributors: fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver, garyj, mte90, fredserva, khromov
Tags: shortcodes
Requires at least: 4.1
Tested up to: 4.3
Stable tag: 0.5.0
Tested up to: 4.4
Stable tag: 0.6.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -51,12 +51,24 @@ We've removed the compatibility shim for the magical `content` attribute. If you

== Changelog ==

= 0.6.0 (???) =
* Core integration: Fully support PHP 5.2.
= 0.6.0 (November 2, 2015) =
* Supports an optional `encode=true` argument for attributes, to allow limited HTML support. Attributes need to be run through `shortcode_atts()` in order to be properly decoded.
* Defines a `SHORTCODE_UI_DOING_PREVIEW` constant when rendering a shortcode preview, which enables callbacks to serve a different representation of the shortcode in TinyMCE.
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
* Cleaned up icon vertical alignment in the Insert Post Element UI.
* Added CSS utility classes to all field HTML. For instance, the attachment field is now wrapped with `shortcode-ui-field-attachment`.
* Added filters to modify shortcode UI arguments on registration.
* Cleaned up the example plugin, so it's a much more useful developer reference.
* Uses core's JavaScript regex for parsing shortcodes, instead of maintaining separate regex.
* Permits HTML in field labels and descriptions.
* Added Danish translation.
* Added Italian translation.
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
* Added German translation.
* Core integration: Fully supports PHP 5.2.
* Bug fix: Persists shortcode attributes and inner content when there isn't UI registered for them. Previously, they would be discarded.
* Bug fix: Display the description on the post select field.
* Bug fix: Attribute field change event binds to `input` event rather than `keyup`.
* [Full release notes](http://fusion.net/story/225765/introducing-shortcake-v0-6-0-cream/)

= 0.5.0 (August 26, 2015) =
* Attachment field: Made it easier to change the attachment by clicking on the thumbnail; added attachment metadata in the field view.
Expand Down
4 changes: 2 additions & 2 deletions shortcode-ui.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Shortcake (Shortcode UI)
* Version: 0.6.0-alpha
* Version: 0.6.0
* Description: User Interface for adding shortcodes.
* Author: Fusion Engineering and community
* Author URI: http://next.fusion.net/tag/shortcode-ui/
Expand All @@ -19,7 +19,7 @@
* GNU General Public License for more details.
*/

define( 'SHORTCODE_UI_VERSION', '0.6.0-alpha' );
define( 'SHORTCODE_UI_VERSION', '0.6.0' );

require_once dirname( __FILE__ ) . '/inc/class-shortcode-ui.php';
require_once dirname( __FILE__ ) . '/inc/fields/class-shortcode-ui-fields.php';
Expand Down

0 comments on commit 69ca04d

Please sign in to comment.