Skip to content

Commit

Permalink
v4.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kprovance committed Oct 17, 2023
1 parent 01890e6 commit 75177cf
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 21 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
# Redux Changelog

## 4.4.7.3
## 4.4.8
* Modified: Additional safeguards against read-only filesystems. Thanks @cezarpopa-cognita.

## 4.4.7.2
* Fixed: #3970 - Added `is_string` check to WordPress data callback argument.
* Removed: Unused code for Support Ticket Submission feature that was never finished.

## 4.4.7.1
* Fixed: Removed extra spaces from `textarea`.
* Release date: October 17, 2023

## 4.4.7
* 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.
* Fixed: Redux template PHP not autoloading.
* Release date: September 14, 2023

## 4.4.6
* New: Global arg `fontawesome_frontend` to enqueue the internal Font Awesome CSS on the front end.
Expand All @@ -23,7 +21,8 @@
* Fixed: Adjusted translation for Google Font update message.
* Fixed: Continuing effort to combat old CDN code because some devs aren't updating their code.
* Fixed: REDUX_PLUGIN_FILE failed with embedded installed. WE NO LONGER SUPPORT EMBEDDED. IT'S FOR LEGACY INSTALLS ONLY.

* Release date: September 13, 2023
*
## 4.4.5
* Fixed: Redux catches error when Google Fonts JSON cannot be read/written due to server misconfiguration.
* Fixed: Output HTML in the admin panel now complies with W3C standards.
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.4.7",
"version": "4.4.8",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
Expand Down
13 changes: 11 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: kprovance, dovyp, redux
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts, metaboxes, settings
Requires at least: 5.0
Requires PHP: 7.1
Tested up to: 6.3
Stable tag: 4.4.7
Tested up to: 6.4
Stable tag: 4.4.8
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.txt

Expand Down Expand Up @@ -116,9 +116,17 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
2. Activate the plugin through the 'Plugins' menu in WordPress.

== Changelog ==
= 4.4.8 =
* Modified: Additional safeguards against read-only filesystems. Thanks @cezarpopa-cognita.
* Fixed: #3970 - Added `is_string` check to WordPress data callback argument.
* Removed: Unused code for Support Ticket Submission feature that was never finished.
* Fixed: Removed extra spaces from `textarea`.
* Release date: October 17, 2023

= 4.4.7 =
* 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.
* Fixed: Redux template PHP not autoloading.
* Release date: September 14, 2023

= 4.4.6 =
* New: Global arg `fontawesome_frontend` to enqueue the internal Font Awesome CSS on the front end.
Expand All @@ -129,6 +137,7 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
* Fixed: Adjusted translation for Google Font update message.
* Fixed: Continuing effort to combat old CDN code because some devs aren't updating their code.
* Fixed: REDUX_PLUGIN_FILE failed with embedded installed. WE NO LONGER SUPPORT EMBEDDED. IT'S FOR LEGACY INSTALLS ONLY.
* Release date: September 13, 2023

= 4.4.5 =
* Fixed: Redux catches error when Google Fonts JSON cannot be read/written due to server misconfiguration.
Expand Down
2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/blue/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/coffee/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/ectoplasm/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/fresh/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/light/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/midnight/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/ocean/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/colors/sunrise/colors.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/redux-fields.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion redux-core/assets/css/redux-fields.min.css.map

Large diffs are not rendered by default.

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.4.7.3';
Redux_Core::$version = '4.4.8';
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: http://wordpress.org/plugins/redux-framework
* GitHub URI: reduxframework/redux-framework
* Description: Build better sites in WordPress fast!
* Version: 4.4.7.3
* Version: 4.4.8
* Requires at least: 5.0
* Requires PHP: 7.1
* Author: Team Redux
Expand Down

0 comments on commit 75177cf

Please sign in to comment.