Version Description
Download this release
Release Info
Developer | dovyp |
Plugin | Redux Framework |
Version | 3.6.17 |
Comparing to | |
See all releases |
Code changes from version 3.6.16 to 3.6.17
- CHANGELOG.md +3 -0
- ReduxCore/framework.php +1 -1
- ReduxCore/inc/class.redux_api.php +15 -0
- class.redux-plugin.php +1 -1
- composer.json +1 -1
- package.json +1 -1
- readme.txt +2 -2
- redux-framework.php +1 -1
CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
# Redux Framework Changelog
|
2 |
|
|
|
|
|
|
|
3 |
## 3.6.15
|
4 |
* Fixed: Redux API setSections would hang up when several sections with no ID share the same title.
|
5 |
|
1 |
# Redux Framework Changelog
|
2 |
|
3 |
+
## 3.6.17
|
4 |
+
* Added: Redux API disable_demo to disable the plugin demo notice.
|
5 |
+
|
6 |
## 3.6.15
|
7 |
* Fixed: Redux API setSections would hang up when several sections with no ID share the same title.
|
8 |
|
ReduxCore/framework.php
CHANGED
@@ -69,7 +69,7 @@
|
|
69 |
// Please update the build number with each push, no matter how small.
|
70 |
// This will make for easier support when we ask users what version they are using.
|
71 |
|
72 |
-
public static $_version = '3.6.
|
73 |
public static $_dir;
|
74 |
public static $_url;
|
75 |
public static $_upload_dir;
|
69 |
// Please update the build number with each push, no matter how small.
|
70 |
// This will make for easier support when we ask users what version they are using.
|
71 |
|
72 |
+
public static $_version = '3.6.17';
|
73 |
public static $_dir;
|
74 |
public static $_url;
|
75 |
public static $_upload_dir;
|
ReduxCore/inc/class.redux_api.php
CHANGED
@@ -571,6 +571,21 @@
|
|
571 |
}
|
572 |
}
|
573 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
|
575 |
public static function getAllExtensions() {
|
576 |
$redux = ReduxFrameworkInstances::get_all_instances();
|
571 |
}
|
572 |
}
|
573 |
}
|
574 |
+
|
575 |
+
/**
|
576 |
+
* Method to disables Redux demo mode popup.
|
577 |
+
*/
|
578 |
+
public static function disable_demo() {
|
579 |
+
add_action('ReduxFrameworkPlugin_admin_notice', 'Redux::remove_demo', 0);
|
580 |
+
add_action('redux_framework_plugin_admin_notice', 'Redux::remove_demo', 0);
|
581 |
+
}
|
582 |
+
|
583 |
+
/**
|
584 |
+
* Callback used by Redux::disable_demo() to remove the demo mode notice from Redux.
|
585 |
+
*/
|
586 |
+
function remove_demo() {
|
587 |
+
update_option('ReduxFrameworkPlugin_ACTIVATED_NOTICES', '');
|
588 |
+
}
|
589 |
|
590 |
public static function getAllExtensions() {
|
591 |
$redux = ReduxFrameworkInstances::get_all_instances();
|
class.redux-plugin.php
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
* @since 3.0.0
|
27 |
*/
|
28 |
|
29 |
-
const VERSION = '3.6.
|
30 |
|
31 |
/**
|
32 |
* @access protected
|
26 |
* @since 3.0.0
|
27 |
*/
|
28 |
|
29 |
+
const VERSION = '3.6.17';
|
30 |
|
31 |
/**
|
32 |
* @access protected
|
composer.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "redux-framework/redux-framework",
|
3 |
-
"version": "3.6.
|
4 |
"authors": [
|
5 |
{
|
6 |
"name": "Team Redux"
|
1 |
{
|
2 |
"name": "redux-framework/redux-framework",
|
3 |
+
"version": "3.6.17",
|
4 |
"authors": [
|
5 |
{
|
6 |
"name": "Team Redux"
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "redux-framework",
|
3 |
-
"version": "3.6.
|
4 |
"title": "ReduxFramework",
|
5 |
"description": "Redux is a simple, truly extensible options framework for WordPress themes and plugins.",
|
6 |
"main": "Gruntfile.js",
|
1 |
{
|
2 |
"name": "redux-framework",
|
3 |
+
"version": "3.6.17",
|
4 |
"title": "ReduxFramework",
|
5 |
"description": "Redux is a simple, truly extensible options framework for WordPress themes and plugins.",
|
6 |
"main": "Gruntfile.js",
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dovyp, redux
|
|
3 |
Donate link: http://paypal.me/reduxframework
|
4 |
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 5.3.
|
7 |
-
Stable tag: 3.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
3 |
Donate link: http://paypal.me/reduxframework
|
4 |
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 5.3.3
|
7 |
+
Stable tag: 3.6.17
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
redux-framework.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
|
13 |
* Author: Team Redux
|
14 |
* Author URI: http://reduxframework.com
|
15 |
-
* Version: 3.6.
|
16 |
* Text Domain: redux-framework
|
17 |
* License: GPL2+
|
18 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
12 |
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
|
13 |
* Author: Team Redux
|
14 |
* Author URI: http://reduxframework.com
|
15 |
+
* Version: 3.6.17
|
16 |
* Text Domain: redux-framework
|
17 |
* License: GPL2+
|
18 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|