Skip to content

Commit

Permalink
v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kprovance committed Dec 2, 2024
1 parent abdc3ef commit 58e7b26
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 20 deletions.
25 changes: 9 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,23 @@
# Redux Changelog

## 4.5.0.5
## 4.5.1
* Updated: Font Awesome 6.7.1
* Fixed: Entire panel over customizer panel not 'clickable.'

## 4.5.0.4
* Updated: Font Awesome 6.7
* Fixed: Options Search bar rendering multiple time on customizer UI.
* Added `null` to multiple typesafe declarations.
* Fixed: Changed typesafe declarations to transient variables from `array` to `mixed` to prevent fatal errors.
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.

## 4.5.0.3
* Fixed: `color_scheme` and `social_profiles` giving `cannot assign null to array` errors when fields not in use.
* Fixed: #4037 - Additional JavaScript errors in regard to TinyMCE when not loaded via `editor` field.

## 4.5.0.2
* Fixed: #4037 - JavaScript errors in regard to TinyMCE when not loaded via `editor` field.
* Fixed: #4037 - `repeater` "Add" button failing when no `editor` field was loaded.
* Fixed: #4040 - WP 6.7 broke Redux menus in customizer.
* Fixed: #4040 - WP 6.7 broke Redux menus in customizer.
* Fixed: "Reset Section" resetting everything to blank or zero.
* Fixed: #4043 - Float loses precision in `color_rgba` when `show_default` is set to true. Thanks @andrejarh
* Fixed: #4042 - `multi_media` field not saving or retaining data in customizer.
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
* Modified: Option panel search bar moved to core (previously an extension).
* Added: CSS output added to `slider` field.

## 4.5.0.1
* Modified: Allow `null` assignments to core variable to prevent fatal errors when devs disable Google Fonts.
* Added `null` to multiple typesafe declarations.
* Added: CSS output added to `slider` field.
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
* Release date: December 3, 2024

## 4.5.0
* Changed: Minimum PHP version now 7.4.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"main": "gulpfile.js",
"name": "redux-framework",
"author": "Team Redux",
"version": "4.5.0",
"version": "4.5.1",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
Expand Down
21 changes: 20 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework
Requires at least: 5.0
Requires PHP: 7.4
Tested up to: 6.7
Stable tag: 4.5.0
Stable tag: 4.5.1
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.txt

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

== Changelog ==

= 4.5.1 =
* Updated: Font Awesome 6.7.1
* Fixed: Options Search bar rendering multiple time on customizer UI.
* Fixed: Changed typesafe declarations to transient variables from `array` to `mixed` to prevent fatal errors.
* Fixed: `color_scheme` and `social_profiles` giving `cannot assign null to array` errors when fields not in use.
* Fixed: JavaScript errors in regard to TinyMCE when not loaded via `editor` field.
* Fixed: `repeater` "Add" button failing when no `editor` field was loaded.
* Fixed: WP 6.7 broke Redux menus in customizer.
* Fixed: "Reset Section" resetting everything to blank or zero.
* Fixed: Float loses precision in `color_rgba` when `show_default` is set to true. Thanks @andrejarh
* Fixed: `multi_media` field not saving or retaining data in customizer.
* Modified: Customizer HTML output to support WordPress installations prior to version 6.7.
* Modified: Option panel search bar moved to core (previously an extension).
* Modified: Allow `null` assignments to core variable to prevent fatal errors when devs disable Google Fonts.
* Added `null` to multiple typesafe declarations.
* Added: CSS output added to `slider` field.
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
* Release date: December 3, 2024

= 4.5.0 =
* Changed: Minimum PHP version now 7.4.
* Fixed: Datetime wasn't escaping some translations and domain was incorrect.
Expand Down
2 changes: 1 addition & 1 deletion redux-core/framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

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

Redux_Core::$version = '4.5.0.5';
Redux_Core::$version = '4.5.1';
Redux_Core::$redux_path = __DIR__;
Redux_Core::instance();

Expand Down
2 changes: 1 addition & 1 deletion redux-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Plugin URI: https://wordpress.org/plugins/redux-framework
* GitHub URI: reduxframework/redux-framework
* Description: Build better sites in WordPress fast!
* Version: 4.5.0.5
* Version: 4.5.1
* Requires at least: 5.0
* Requires PHP: 7.4
* Author: Team Redux
Expand Down

0 comments on commit 58e7b26

Please sign in to comment.