Skip to content

Commit 27f61cd

Browse files
committed
v4.4.7
1 parent d1ff0cc commit 27f61cd

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Redux Changelog
22

3-
## 4.4.6.3
4-
* Removed: CDN alternative support for `ace_editor`. Devs won't update their code, leaving us no choice. Use the `redux/<opt_name>/fields/ace/script` filter to enqueue a local ACE Editor script if needed.
3+
## 4.4.7
4+
* Removed: CDN vendor support for `ace_editor`. Devs won't update their code, leaving us no choice. Use the `redux/<opt_name>/fields/ace/script` filter to enqueue a local ACE Editor script if needed.
55
* Fixed: Redux template PHP not autoloading.
66

77
## 4.4.6

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "gulpfile.js",
44
"name": "redux-framework",
55
"author": "Team Redux",
6-
"version": "4.4.5",
6+
"version": "4.4.7",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: admin, admin interface, options, theme options, plugin options, options fr
44
Requires at least: 5.0
55
Requires PHP: 7.1
66
Tested up to: 6.3
7-
Stable tag: 4.4.6
7+
Stable tag: 4.4.7
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -116,6 +116,10 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
116116
2. Activate the plugin through the 'Plugins' menu in WordPress.
117117

118118
== Changelog ==
119+
= 4.4.7 =
120+
* Removed: CDN vendor support for `ace_editor`. Devs won't update their code, leaving us no choice. Use the `redux/<opt_name>/fields/ace/script` filter to enqueue a local ACE Editor script if needed.
121+
* Fixed: Redux template PHP not autoloading.
122+
119123
= 4.4.6 =
120124
* New: Global arg `fontawesome_frontend` to enqueue the internal Font Awesome CSS on the front end.
121125
* New: Taxonomy Metaboxes Extension [https://devs.redux.io/core-extensions/taxonomy.html](https://devs.redux.io/core-extensions/taxonomy.html)

redux-core/assets/css/redux-fields.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redux-core/assets/css/redux-fields.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
require_once __DIR__ . '/class-redux-core.php';
3434

35-
Redux_Core::$version = '4.4.6.3';
35+
Redux_Core::$version = '4.4.7';
3636
Redux_Core::$redux_path = __DIR__;
3737
Redux_Core::instance();
3838

redux-framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: http://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.4.6.3
11+
* Version: 4.4.7
1212
* Requires at least: 5.0
1313
* Requires PHP: 7.1
1414
* Author: Team Redux

redux-templates/redux-templates.php

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
// Define Physical Path.
1414
define( 'REDUXTEMPLATES_DIR_PATH', trailingslashit( plugin_dir_path( __FILE__ ) ) );
1515

16-
// Version Check & Include Core.
17-
//Redux_Functions_Ex::register_class_path( 'ReduxTemplates', REDUXTEMPLATES_DIR_PATH . 'classes/' );
18-
1916
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-init.php';
2017
require_once REDUXTEMPLATES_DIR_PATH . 'classes/class-template-overrides.php';
2118

0 commit comments

Comments
 (0)