Skip to content

Commit

Permalink
Version 4.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Anh committed Jun 13, 2015
1 parent 2690112 commit 5608733
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"meta-box",
"wordpress-plugin"
],
"version": "4.5.3",
"version": "4.5.4",
"description": "Easily create custom meta boxes in WordPress.",
"homepage": "http://metabox.io",
"license": "GPLv2",
Expand Down
2 changes: 1 addition & 1 deletion meta-box-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class RWMB_Loader
{
static function load( $url, $dir )
{
define( 'RWMB_VER', '4.5.3' );
define( 'RWMB_VER', '4.5.4' );

define( 'RWMB_URL', $url );
define( 'RWMB_DIR', $dir );
Expand Down
4 changes: 2 additions & 2 deletions meta-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Meta Box
Plugin URI: http://metabox.io
Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
Version: 4.5.3
Version: 4.5.4
Author: Rilwis
Author URI: http://www.deluxeblogtips.com
License: GPL2+
Expand All @@ -13,7 +13,7 @@
defined( 'ABSPATH' ) || exit;

// Script version, used to add version for scripts and styles
define( 'RWMB_VER', '4.5.3' );
define( 'RWMB_VER', '4.5.4' );

// Define plugin URLs, for fast enqueuing scripts and styles
if ( ! defined( 'RWMB_URL' ) )
Expand Down
8 changes: 8 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ To getting started with the plugin API, please read [this tutorial](http://metab

## Changelog

#### 4.5.4

* Improvement: Add "Select All|None" for `select`, `select_advanced`, `post` fields
* Improvement: Add `max_clone` parameter which limits number of clones
* Improvement: Add `sort_clone` parameter which allows users to sort (drag and drop) cloned inputs
* Improvement: Add Polish language. Thank Michael
* Fix: Prevent warning when post type doesn't exist (`post` field)

#### 4.5.3
* Improvement: Use `wp_json_encode` instead of `json_encode`. Thank Sam Ford.
* Fix: Escape value for cloneable fields
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://www.deluxeblogtips.com/donate
Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
Requires at least: 3.5
Tested up to: 4.2.2
Stable tag: 4.5.3
Stable tag: 4.5.4
License: GPLv2 or later

Meta Box plugin is a complete tool to create meta box and custom fields in WordPress: lightweight, powerful and easy-to-use.
Expand Down Expand Up @@ -69,6 +69,13 @@ To getting started with the plugin API, please read [this tutorial](http://metab

== Changelog ==

= 4.5.4 =
* Improvement: Add "Select All|None" for `select`, `select_advanced`, `post` fields
* Improvement: Add `max_clone` parameter which limits number of clones
* Improvement: Add `sort_clone` parameter which allows users to sort (drag and drop) cloned inputs
* Improvement: Add Polish language. Thank Michael
* Fix: Prevent warning when post type doesn't exist (`post` field)

= 4.5.3 =
* Improvement: Use `wp_json_encode` instead of `json_encode`. Thank Sam Ford.
* Fix: Escape value for cloneable fields
Expand Down

0 comments on commit 5608733

Please sign in to comment.