Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit cd6951c

Browse files
committed
4.1.23 - Massive speed improvements to the library.
1 parent 4924edf commit cd6951c

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Redux Changelog
22

3+
## 4.1.23
4+
* Fixed: Massive speed improvement to the library.
5+
* Fixed: Pro template count error if previously activated and Redux Pro not enabled.
6+
* Release date: Oct 24, 2020
7+
38
## 4.1.22
49
* Fixed: Menu locations WordPress data object not providing name.
510
* Added: Undefined if menu location is not assigned to a menu.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reduxframework/redux-framework-4",
3-
"version": "4.1.22",
3+
"version": "4.1.23",
44
"authors": [
55
{
66
"name": "Redux.io",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "gulpfile.js",
44
"name": "redux",
55
"author": "Redux.io + Dōvy Paukstys",
6-
"version": "4.1.22",
6+
"version": "4.1.23",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block ed
55
Requires at least: 4.0
66
Requires PHP: 5.3
77
Tested up to: 5.5
8-
Stable tag: 4.1.22
8+
Stable tag: 4.1.23
99
License: GPL-2.0+
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1111

@@ -154,6 +154,11 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
154154

155155
== Changelog ==
156156

157+
== 4.1.23 ==
158+
* Fixed: Massive speed improvement to the library.
159+
* Fixed: Pro template count error if previously activated and Redux Pro not enabled.
160+
* Release date: Oct 24, 2020
161+
157162
= 4.1.22 =
158163
* Fixed: Menu locations WordPress data object not providing name.
159164
* Added: Undefined if menu location is not assigned to a menu.

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
require_once dirname( __FILE__ ) . '/class-redux-core.php';
2525

26-
Redux_Core::$version = '4.1.22';
26+
Redux_Core::$version = '4.1.23';
2727
Redux_Core::$redux_path = dirname( __FILE__ );
2828
Redux_Core::instance();
2929

redux-framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Description: Build better sites in WordPress fast
1111
* Author: Redux.io + Dovy Paukstys
1212
* Author URI: http://redux.io
13-
* Version: 4.1.22
13+
* Version: 4.1.23
1414
* Text Domain: redux-framework
1515
* License: GPLv3 or later
1616
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt

redux-templates/classes/class-api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public function get_index( \WP_REST_Request $request ) {
347347
$data = json_decode( ReduxTemplates\Init::get_local_file_contents( $test_path ), true );
348348
} else {
349349
$parameters['no_cache'] = 1;
350-
$data = $this->api_cache_fetch( $parameters, $config, 'library.json' );
350+
$data = $this->api_cache_fetch( $parameters, $config, 'library/' );
351351
}
352352

353353
if ( isset( $data['plugins'] ) ) {

redux-templates/classes/class-init.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,10 @@ public function editor_assets() {
138138
'supported_plugins' => array(), // Load the supported plugins.
139139
'tos' => \Redux_Connection_Banner::tos_blurb( 'import_wizard' ),
140140
);
141-
142141
if ( ! $global_vars['mokama'] ) {
143142
// phpcs:disable Squiz.PHP.CommentedOutCode
144143
// delete_user_meta( get_current_user_id(), '_redux_templates_counts'); // To test left.
145-
if ( ! \Redux_Functions_Ex::activated() ) {
146-
$global_vars['left'] = ReduxTemplates\Init::left( get_current_user_id() );
147-
} else {
148-
$global_vars['left'] = 999;
149-
}
144+
$global_vars['left'] = ReduxTemplates\Init::left( get_current_user_id() );
150145

151146
// phpcs:ignore
152147
// delete_user_meta( get_current_user_id(), '_redux_welcome_guide' ); // For testing.

0 commit comments

Comments
 (0)