Skip to content

Commit 0254c25

Browse files
committed
WP.org release
1 parent a31dfba commit 0254c25

File tree

7 files changed

+25
-6
lines changed

7 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Redux Framework Changelog
22

3+
## 3.6.4
4+
* WP.org release
5+
36
## 3.6.3.5
47
* Modified: Changed gitignore file to exclude sublime text files.
58
* Fixed: #2966 - Translation bug. Identified and fixed by @iiandrade. Thanks!

ReduxCore/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ReduxFramework {
6969
// Please update the build number with each push, no matter how small.
7070
// This will make for easier support when we ask users what version they are using.
7171

72-
public static $_version = '3.6.3.5';
72+
public static $_version = '3.6.4';
7373
public static $_dir;
7474
public static $_url;
7575
public static $_upload_dir;

class.redux-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ReduxFrameworkPlugin {
2626
* @since 3.0.0
2727
*/
2828

29-
const VERSION = '3.6.3.5';
29+
const VERSION = '3.6.4';
3030

3131
/**
3232
* @access protected

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-framework/redux-framework",
3-
"version": "3.6.3",
3+
"version": "3.6.4",
44
"authors": [
55
{
66
"name": "Team Redux"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-framework",
3-
"version": "3.6.3",
3+
"version": "3.6.4",
44
"title": "ReduxFramework",
55
"description": "Redux is a simple, truly extensible options framework for WordPress themes and plugins.",
66
"main": "Gruntfile.js",

readme.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: http://ideas.reduxframework.com
44
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
55
Requires at least: 3.5.1
66
Tested up to: 4.8
7-
Stable tag: 3.6.3
7+
Stable tag: 3.6.4
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -125,6 +125,22 @@ That's because the real FAQ section is on our site! Please visit [http://docs.re
125125

126126
== Changelog ==
127127

128+
## 3.6.4
129+
* Modified: Changed gitignore file to exclude sublime text files.
130+
* Fixed: #2966 - Translation bug. Identified and fixed by @iiandrade. Thanks!
131+
* Modified: Generated all CSS map files to get rid of Chrome warnings.
132+
* Added: Required for the Advanced Customizer thanks to @britner!
133+
* Modified: Various customizer fixes and changes to match new styles.
134+
* Modified: Customizer only code in Redux.js, moved to the customizer.js file.
135+
* Modified: Isolated Redux CSS to be nested and not affect other products or WP UI.
136+
* Added: #3222 - HUGE update by @enchiridion to allow for advanced and complicated permissions. WTG!
137+
* Added: New hooks for how Extension APIs are called. Much cleaner.
138+
* Fixed: #3214 - Typography color field not triggering compiler hook.
139+
* Fixed: #3201 - Index error when using compiler argument with spinner field.
140+
* Updated: #3189 - PHP7 compatibility for preg_replace validation.
141+
* Fixed: #3186 - Multi text field not removing single field when clicking "Remove".
142+
* Fixed: #3180, #2641 - Button set multi mode saving incorrectly. Please check your code for a possible backward compatibility issue when using this mode. The foreach() function with an empty() check must now be used, versus individual array keys as only selected options are saved to the database.
143+
128144
## 3.6.3
129145
* Modified: Change customizer hover styles to match WP 4.7.
130146
* Modified: #3169 - print_r of wpdb queries in dev_mode removed.

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
1313
* Author: Team Redux
1414
* Author URI: http://reduxframework.com
15-
* Version: 3.6.3.5
15+
* Version: 3.6.4
1616
* Text Domain: redux-framework
1717
* License: GPL2+
1818
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt

0 commit comments

Comments
 (0)