Version Description
- 2019-07-25 =
Fixed
- Fix license notification always show
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 5.0.1 |
Comparing to | |
See all releases |
Code changes from version 5.0.0 to 5.0.1
- inc/loader.php +1 -1
- inc/update/settings.php +3 -0
- meta-box.php +1 -1
- readme.txt +28 -1
inc/loader.php
CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader {
|
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
-
define( 'RWMB_VER', '5.0.
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
+
define( 'RWMB_VER', '5.0.1' );
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
inc/update/settings.php
CHANGED
@@ -179,6 +179,9 @@ class RWMB_Update_Settings {
|
|
179 |
* Notify users to enter license key.
|
180 |
*/
|
181 |
public function notify() {
|
|
|
|
|
|
|
182 |
$messages = array(
|
183 |
// Translators: %1$s - URL to Meta Box Updater settings page, %2$s - URL to MetaBox.io website.
|
184 |
'no_key' => __( '<b>Warning!</b> You have not set your Meta Box license key yet, which means you are missing out on automatic updates and support! <a href="%1$s">Enter your license key</a> or <a href="%2$s" target="_blank">get one here</a>.', 'meta-box-updater' ),
|
179 |
* Notify users to enter license key.
|
180 |
*/
|
181 |
public function notify() {
|
182 |
+
if ( ! $this->checker->has_extensions() ) {
|
183 |
+
return;
|
184 |
+
}
|
185 |
$messages = array(
|
186 |
// Translators: %1$s - URL to Meta Box Updater settings page, %2$s - URL to MetaBox.io website.
|
187 |
'no_key' => __( '<b>Warning!</b> You have not set your Meta Box license key yet, which means you are missing out on automatic updates and support! <a href="%1$s">Enter your license key</a> or <a href="%2$s" target="_blank">get one here</a>.', 'meta-box-updater' ),
|
meta-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
-
* Version: 5.0.
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
+
* Version: 5.0.1
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced,
|
|
5 |
Requires at least: 4.3
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.2.2
|
8 |
-
Stable tag: 5.0.
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|
@@ -166,6 +166,33 @@ To getting started with the plugin, please read the [Quick Start Guide](https://
|
|
166 |
|
167 |
== Changelog ==
|
168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
[See full changelog here](https://metabox.io/changelog/).
|
170 |
|
171 |
== Upgrade Notice ==
|
|
|
|
5 |
Requires at least: 4.3
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 5.2.2
|
8 |
+
Stable tag: 5.0.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|
166 |
|
167 |
== Changelog ==
|
168 |
|
169 |
+
= 5.0.1 - 2019-07-25 =
|
170 |
+
|
171 |
+
**Fixed**
|
172 |
+
|
173 |
+
- Fix license notification always show
|
174 |
+
|
175 |
+
= 5.0.0 - 2019-07-24 =
|
176 |
+
|
177 |
+
**IMPORTANT:** Since version 5.0.0, the plugin requires PHP >= 5.3. If you use an older PHP version, please ask your host to upgrade or use an older version of Meta Box.
|
178 |
+
|
179 |
+
**Changed**
|
180 |
+
|
181 |
+
- New minimum PHP version is now 5.3.
|
182 |
+
- Rewrite all JavaScript to prepare for Gutenberg blocks
|
183 |
+
- Allow to create meta box with no fields.
|
184 |
+
|
185 |
+
**Added**
|
186 |
+
|
187 |
+
- Add the updater for auto update of premium extensions
|
188 |
+
- Add support for `user`, `settings_pages` in `rwmb_get_object_fields`
|
189 |
+
|
190 |
+
**Fixed**
|
191 |
+
|
192 |
+
- Fix warning for cloneable single image.
|
193 |
+
|
194 |
[See full changelog here](https://metabox.io/changelog/).
|
195 |
|
196 |
== Upgrade Notice ==
|
197 |
+
|
198 |
+
Since version 5.0.0, the plugin requires PHP >= 5.3. If you use an older PHP version, please ask your host to upgrade or use an older version of Meta Box.
|