Skip to content

Commit 459bfb7

Browse files
committed
Version 4.12.2
1 parent 20b37be commit 459bfb7

6 files changed

Lines changed: 18 additions & 13 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ php:
66
- 5.5
77
- 5.4
88
- 5.3
9+
- 5.2
910

1011
matrix:
1112
fast_finish: true

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
## [Unreleased]
77

8+
## [4.12.2] - 2017-07-12
9+
### Added
10+
- Added new `media:reset` event for media fields to clear the selection.
11+
### Changed
12+
- Improve meta box registry that can handle various types of meta boxes. Used for term meta, user meta, settings pages.
13+
- Improve the way set current object id for meta box and add fields to the registry.
14+
815
## [4.12.1] - 2017-07-05
916
### Fixed
1017
- Helper function doesn't work. #1144.
@@ -684,7 +691,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
684691
## 1.0
685692
- procedural code
686693

687-
[Unreleased]: https://github.com/rilwis/meta-box/compare/4.12.1...HEAD
694+
[Unreleased]: https://github.com/rilwis/meta-box/compare/4.12.2...HEAD
695+
[4.12.2]: https://github.com/rilwis/meta-box/compare/4.12.1...4.12.2
688696
[4.12.1]: https://github.com/rilwis/meta-box/compare/4.12...4.12.1
689697
[4.12]: https://github.com/rilwis/meta-box/compare/4.11.3...4.12
690698
[4.11.3]: https://github.com/rilwis/meta-box/compare/4.11.2...4.11.3

inc/loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class RWMB_Loader {
1818
*/
1919
protected function constants() {
2020
// Script version, used to add version for scripts and styles.
21-
define( 'RWMB_VER', '4.12.1' );
21+
define( 'RWMB_VER', '4.12.2' );
2222

2323
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
2424

meta-box.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Meta Box
44
* Plugin URI: https://metabox.io
55
* Description: Create custom meta boxes and custom fields in WordPress.
6-
* Version: 4.12.1
6+
* Version: 4.12.2
77
* Author: MetaBox.io
88
* Author URI: https://metabox.io
99
* License: GPL2+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meta-box",
3-
"version": "4.12.1",
3+
"version": "4.12.2",
44
"description": "A powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress websites.",
55
"keywords": [
66
"meta box",

readme.txt

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/anhtnt
44
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
55
Requires at least: 4.1
66
Tested up to: 4.8
7-
Stable tag: 4.12.1
7+
Stable tag: 4.12.2
88
License: GPLv2 or later
99

1010
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
@@ -132,16 +132,12 @@ To getting started with the plugin, please read [this tutorial](https://metabox.
132132
#### Fixed
133133
- Helper function doesn't work. #1144.
134134

135-
= 4.12 - 2017-07-04 =
135+
= 4.12.2 - 2017-07-12 =
136136
#### Added
137-
- Completed the storage abstraction. All the actions add/get/update/delete post meta now use the storage methods. Make it easy to extend for other extensions for term/user meta and settings pages.
138-
- Added `autofocus`, `autocomplete` HTML5 attribute to inputs.
139-
- Added `alpha_channel` to `color` field. Set it to `true` to allow picking colors with opacity.
140-
- Click on the image will open a popup for re-select image. Works for `image_advanced` and `image_upload` (`plupload_image`) fields.
141-
137+
- Added new `media:reset` event for media fields to clear the selection.
142138
#### Changed
143-
- Auto display oembed media when pasting the URL, without click "Preview" button (and it's removed).
144-
- Better styles for media fields. Use the loading icon from WordPress.
139+
- Improve meta box registry that can handle various types of meta boxes. Used for term meta, user meta, settings pages.
140+
- Improve the way set current object id for meta box and add fields to the registry.
145141

146142
#### Fixed
147143
- Fix cloning an editor inside a group in WordPress 4.8. Caused by updated version of TinyMCE using Promise.

0 commit comments

Comments
 (0)