Skip to content

Commit 58e7b26

Browse files
committed
v4.5.1
1 parent abdc3ef commit 58e7b26

File tree

5 files changed

+32
-20
lines changed

5 files changed

+32
-20
lines changed

CHANGELOG.md

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,23 @@
11
# Redux Changelog
22

3-
## 4.5.0.5
3+
## 4.5.1
44
* Updated: Font Awesome 6.7.1
5-
* Fixed: Entire panel over customizer panel not 'clickable.'
6-
7-
## 4.5.0.4
8-
* Updated: Font Awesome 6.7
95
* Fixed: Options Search bar rendering multiple time on customizer UI.
10-
* Added `null` to multiple typesafe declarations.
116
* Fixed: Changed typesafe declarations to transient variables from `array` to `mixed` to prevent fatal errors.
12-
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
13-
14-
## 4.5.0.3
157
* Fixed: `color_scheme` and `social_profiles` giving `cannot assign null to array` errors when fields not in use.
16-
* Fixed: #4037 - Additional JavaScript errors in regard to TinyMCE when not loaded via `editor` field.
17-
18-
## 4.5.0.2
8+
* Fixed: #4037 - JavaScript errors in regard to TinyMCE when not loaded via `editor` field.
199
* Fixed: #4037 - `repeater` "Add" button failing when no `editor` field was loaded.
20-
* Fixed: #4040 - WP 6.7 broke Redux menus in customizer.
10+
* Fixed: #4040 - WP 6.7 broke Redux menus in customizer.
2111
* Fixed: "Reset Section" resetting everything to blank or zero.
12+
* Fixed: #4043 - Float loses precision in `color_rgba` when `show_default` is set to true. Thanks @andrejarh
13+
* Fixed: #4042 - `multi_media` field not saving or retaining data in customizer.
14+
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
2215
* Modified: Option panel search bar moved to core (previously an extension).
23-
* Added: CSS output added to `slider` field.
24-
25-
## 4.5.0.1
2616
* Modified: Allow `null` assignments to core variable to prevent fatal errors when devs disable Google Fonts.
17+
* Added `null` to multiple typesafe declarations.
18+
* Added: CSS output added to `slider` field.
2719
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
20+
* Release date: December 3, 2024
2821

2922
## 4.5.0
3023
* Changed: Minimum PHP version now 7.4.

package.json

Lines changed: 1 addition & 1 deletion
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.5.0",
6+
"version": "4.5.1",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework
44
Requires at least: 5.0
55
Requires PHP: 7.4
66
Tested up to: 6.7
7-
Stable tag: 4.5.0
7+
Stable tag: 4.5.1
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -122,6 +122,25 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
122122

123123
== Changelog ==
124124

125+
= 4.5.1 =
126+
* Updated: Font Awesome 6.7.1
127+
* Fixed: Options Search bar rendering multiple time on customizer UI.
128+
* Fixed: Changed typesafe declarations to transient variables from `array` to `mixed` to prevent fatal errors.
129+
* Fixed: `color_scheme` and `social_profiles` giving `cannot assign null to array` errors when fields not in use.
130+
* Fixed: JavaScript errors in regard to TinyMCE when not loaded via `editor` field.
131+
* Fixed: `repeater` "Add" button failing when no `editor` field was loaded.
132+
* Fixed: WP 6.7 broke Redux menus in customizer.
133+
* Fixed: "Reset Section" resetting everything to blank or zero.
134+
* Fixed: Float loses precision in `color_rgba` when `show_default` is set to true. Thanks @andrejarh
135+
* Fixed: `multi_media` field not saving or retaining data in customizer.
136+
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
137+
* Modified: Option panel search bar moved to core (previously an extension).
138+
* Modified: Allow `null` assignments to core variable to prevent fatal errors when devs disable Google Fonts.
139+
* Added `null` to multiple typesafe declarations.
140+
* Added: CSS output added to `slider` field.
141+
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
142+
* Release date: December 3, 2024
143+
125144
= 4.5.0 =
126145
* Changed: Minimum PHP version now 7.4.
127146
* Fixed: Datetime wasn't escaping some translations and domain was incorrect.

redux-core/framework.php

Lines changed: 1 addition & 1 deletion
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.5.0.5';
35+
Redux_Core::$version = '4.5.1';
3636
Redux_Core::$redux_path = __DIR__;
3737
Redux_Core::instance();
3838

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: https://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.5.0.5
11+
* Version: 4.5.1
1212
* Requires at least: 5.0
1313
* Requires PHP: 7.4
1414
* Author: Team Redux

0 commit comments

Comments
 (0)