Skip to content

Commit 69ca04d

Browse files
Merge pull request #536 from wp-shortcake/526-update-readme
Update readme with what's changed in v0.6.0
2 parents 193e562 + 17a7e31 commit 69ca04d

File tree

3 files changed

+38
-14
lines changed

3 files changed

+38
-14
lines changed

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Shortcake (Shortcode UI) #
2-
**Contributors:** fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver
2+
**Contributors:** fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver, garyj, mte90, fredserva, khromov
33
**Tags:** shortcodes
44
**Requires at least:** 4.1
5-
**Tested up to:** 4.3
6-
**Stable tag:** 0.5.0
5+
**Tested up to:** 4.4
6+
**Stable tag:** 0.6.0
77
**License:** GPLv2 or later
88
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
99

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

6060
## Changelog ##
6161

62-
### 0.6.0 (???) ###
63-
* Core integration: Fully support PHP 5.2.
62+
### 0.6.0 (November 2, 2015) ###
63+
* 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.
6464
* 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.
65+
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
66+
* Cleaned up icon vertical alignment in the Insert Post Element UI.
67+
* Added CSS utility classes to all field HTML. For instance, the attachment field is now wrapped with `shortcode-ui-field-attachment`.
68+
* Added filters to modify shortcode UI arguments on registration.
69+
* Cleaned up the example plugin, so it's a much more useful developer reference.
70+
* Uses core's JavaScript regex for parsing shortcodes, instead of maintaining separate regex.
71+
* Permits HTML in field labels and descriptions.
6572
* Added Danish translation.
6673
* Added Italian translation.
67-
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
74+
* Added German translation.
75+
* Core integration: Fully supports PHP 5.2.
76+
* Bug fix: Persists shortcode attributes and inner content when there isn't UI registered for them. Previously, they would be discarded.
77+
* Bug fix: Display the description on the post select field.
78+
* Bug fix: Attribute field change event binds to `input` event rather than `keyup`.
79+
* [Full release notes](http://fusion.net/story/225765/introducing-shortcake-v0-6-0-cream/)
6880

6981
### 0.5.0 (August 26, 2015) ###
7082
* Attachment field: Made it easier to change the attachment by clicking on the thumbnail; added attachment metadata in the field view.

readme.txt

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
=== Shortcake (Shortcode UI) ===
2-
Contributors: fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver
2+
Contributors: fusionengineering, mattheu, danielbachhuber, zebulonj, goldenapples, jitendraharpalani, sanchothefat, bfintal, davisshaver, garyj, mte90, fredserva, khromov
33
Tags: shortcodes
44
Requires at least: 4.1
5-
Tested up to: 4.3
6-
Stable tag: 0.5.0
5+
Tested up to: 4.4
6+
Stable tag: 0.6.0
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

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

5252
== Changelog ==
5353

54-
= 0.6.0 (???) =
55-
* Core integration: Fully support PHP 5.2.
54+
= 0.6.0 (November 2, 2015) =
55+
* 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.
5656
* 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.
57+
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
58+
* Cleaned up icon vertical alignment in the Insert Post Element UI.
59+
* Added CSS utility classes to all field HTML. For instance, the attachment field is now wrapped with `shortcode-ui-field-attachment`.
60+
* Added filters to modify shortcode UI arguments on registration.
61+
* Cleaned up the example plugin, so it's a much more useful developer reference.
62+
* Uses core's JavaScript regex for parsing shortcodes, instead of maintaining separate regex.
63+
* Permits HTML in field labels and descriptions.
5764
* Added Danish translation.
5865
* Added Italian translation.
59-
* When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
66+
* Added German translation.
67+
* Core integration: Fully supports PHP 5.2.
68+
* Bug fix: Persists shortcode attributes and inner content when there isn't UI registered for them. Previously, they would be discarded.
69+
* Bug fix: Display the description on the post select field.
70+
* Bug fix: Attribute field change event binds to `input` event rather than `keyup`.
71+
* [Full release notes](http://fusion.net/story/225765/introducing-shortcake-v0-6-0-cream/)
6072

6173
= 0.5.0 (August 26, 2015) =
6274
* Attachment field: Made it easier to change the attachment by clicking on the thumbnail; added attachment metadata in the field view.

shortcode-ui.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Plugin Name: Shortcake (Shortcode UI)
4-
* Version: 0.6.0-alpha
4+
* Version: 0.6.0
55
* Description: User Interface for adding shortcodes.
66
* Author: Fusion Engineering and community
77
* Author URI: http://next.fusion.net/tag/shortcode-ui/
@@ -19,7 +19,7 @@
1919
* GNU General Public License for more details.
2020
*/
2121

22-
define( 'SHORTCODE_UI_VERSION', '0.6.0-alpha' );
22+
define( 'SHORTCODE_UI_VERSION', '0.6.0' );
2323

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

0 commit comments

Comments
 (0)