Skip to content

Commit

Permalink
Version 4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Anh committed Nov 18, 2015
1 parent 274ba95 commit 73190f2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
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.6' );
define( 'RWMB_VER', '4.7' );

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: https://metabox.io
* Description: Create custom meta boxes and custom fields for any post type in WordPress.
* Version: 4.6
* Version: 4.7
* Author: Rilwis
* Author URI: http://www.deluxeblogtips.com
* License: GPL2+
Expand All @@ -15,7 +15,7 @@
defined( 'ABSPATH' ) || exit;

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

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

## Changelog

#### 4.7

* Improvement: add `attributes` for all input fields (text, number, email, ...) so users can add any custom attributes for them. Also added default attributes `required`, `disabled`, `readonly`, `maxlength` and `pattern` for those fields as well. These attributes will be merged into the `attributes`.
* Improvement: add `js_options` for color field which allows users to define custom color palettes and other attributes for color picker. See the options in [Iris page](http://automattic.github.io/Iris/).
* Fix: fix for file and image uploaded via `file_advanced` and `image_advanced` not showing up.

#### 4.6

* Improvement: the plugin translation is now handled in translate.wordpress.org. While the plugin keeps old translation as backward compatibility, it's recommended to translate everything in translate.wordpress.org. Language packs will be automatically updated by WordPress.
Expand Down
8 changes: 7 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, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
Requires at least: 3.5
Tested up to: 4.3.1
Stable tag: 4.6
Stable tag: 4.7
License: GPLv2 or later

Meta Box plugin is a powerful, professional solution to create custom meta boxes and custom fields for WordPress websites.
Expand Down Expand Up @@ -75,6 +75,12 @@ To getting started with the plugin API, please read [this tutorial](https://meta

== Changelog ==

= 4.7 =

* Improvement: add `attributes` for all input fields (text, number, email, ...) so users can add any custom attributes for them. Also added default attributes `required`, `disabled`, `readonly`, `maxlength` and `pattern` for those fields as well. These attributes will be merged into the `attributes`.
* Improvement: add `js_options` for color field which allows users to define custom color palettes and other attributes for color picker. See the options in [Iris page](http://automattic.github.io/Iris/).
* Fix: fix for file and image uploaded via `file_advanced` and `image_advanced` not showing up.

= 4.6 =

* Improvement: the plugin translation is now handled in translate.wordpress.org. While the plugin keeps old translation as backward compatibility, it's recommended to translate everything in translate.wordpress.org. Language packs will be automatically updated by WordPress.
Expand Down

0 comments on commit 73190f2

Please sign in to comment.