Skip to content

Commit 5fba620

Browse files
committed
3.2.9 release
Signed-off-by:KProvance <[email protected]>
1 parent 0af8fb4 commit 5fba620

File tree

5 files changed

+44
-7
lines changed

5 files changed

+44
-7
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ Send me an email at [email protected] so I can add you to our user sp
7575
### Master ###
7676

7777
= 3.2.8.21 =
78-
* Added: Network admin support! Set argument 'database' to network and data will be saved site-wide. Also two new
79-
arguments: network_admin & network_admin for where to show the panel.
78+
* Added: Network admin support! Set argument 'database' to network and data will be saved site-wide. Also two new arguments: network_admin & network_sites for where to show the panel.
8079

8180
= 3.2.8.20 =
8281
* Fixed: Redux now ignores any directories that begin with `.` in the extension folder. See #1213.

README.txt

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: section214, dovyp, kprovance
33
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=N5AD7TSH8YA5U
44
Tags: admin, admin interface, options, theme options, plugin options, options framework, settings, web fonts, google fonts
55
Requires at least: 3.5.1
6-
Tested up to: 3.9.0
7-
Stable tag: 3.2.8
6+
Tested up to: 3.9.1
7+
Stable tag: 3.2.9
88
License: GPLv3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

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

126126
== Changelog ==
127127

128+
= 3.2.9 =
129+
* Added: Network admin support! Set argument 'database' to network and data will be saved site-wide. Also two new arguments: network_admin & network_sites for where to show the panel.
130+
* Added: Customizer hook that can be used to simulate the customizer for live preview in the customizer. `redux/customizer/live_preview`
131+
* Added: `output` argument for `color` and `color_rgba` fields accepts key/pairs for different modes.
132+
* Added: `class` argument to the Redux Arguments, section array, and metabox array. If set, a class will be appended to whichever level is used. This allows further customization for our users.
133+
* Added: disable_save_warn flags to the arguments to disable the "you should save" slidedown.
134+
* Added: Actions hooks for errors and warnings.
135+
* Fixed: Redux now ignores any directories that begin with `.` in the extension folder. See #1213.
136+
* Fixed: Redux not saving when validating uploads.
137+
* Fixed: Border field output/compiler formatting. Removed 'inherit' in place of default values. See #1208.
138+
* Fixed: Trim() warning in framework.php when saving. See #1209, #1201.
139+
* Fixed: Typography not outputting all styles when `all_styles` set to true.
140+
* Fixed: 'Cannot send header' issues with typography.
141+
* Fixed: Small fix for validation if subsection parent is free of errors, remove the red highlight when not expanded.
142+
* Fixed: Small CSS classes for flashing fonts where web-font-loader.
143+
* Fixed: ASync Flash on fonts. FINALLY. What a pain.
144+
* Fixed: 3+ JavaScript errors found in the background field. Now works flawlessly.
145+
* Fixed: PHP warnings in background field. #1173. Thanks, @abossola.
146+
* Fixed: CSS validation not respecting child selector symbol. #1162
147+
* Fixed: Extra check for typography bug.
148+
* Fixed: Error css alignment issue with subsections.
149+
* Fixed: javascript error in typography field.
150+
* Fixed: Added a title to the google fonts stylesheet to fix validation errors.
151+
* Fixed: One more slides field error check, and an extra JS goodie for an extension.
152+
* Fixed: Leftover debug code messing up slides field.
153+
* Fixed: More reliable saved action hook.
154+
* Fixed: Removed erroneous debug output in link_color field.
155+
* Modified: Dimension field default now accepts either `units` or `unit`.
156+
* Modified: Google CSS moved into HEAD via WP enqueue.
157+
* Modified: Now do a trim on all fields before validating. No need to alert because of a space...
158+
* Modified: Typography field CSS completely rewritten. All thanks to @eplanetdesign!
159+
* Modified: Validation now works in metaboxes as well as updates numbers as changes occur. Validation for subsections is SO hot now.
160+
* Modified: Various CSS fixes and improvements.
161+
* Modified: Turned of mod_rewrite check.
162+
* Modified: How errors are displayed, no longer dependent on the ID, now proper classes.
163+
* Modified: Error notice stays until all errors are gone. Also updates it's number as errors fixed!
164+
* Modified: Moved google font files to proprietary folder in upload to help with permission issues.
165+
128166
= 3.2.8 =
129167
* Fixed: Formatting of field files. Normalizing headers.
130168
* Added: is_empty / empty / !isset AND not_empty / !empty / isset as required operations

ReduxCore/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class ReduxFramework {
6868
// ATTENTION DEVS
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.
71-
public static $_version = '3.2.8.21';
71+
public static $_version = '3.2.9';
7272
public static $_dir;
7373
public static $_url;
7474
public static $_upload_dir;

class.redux-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ReduxFrameworkPlugin {
2525
* @const string VERSION The plugin version, used for cache-busting and script file references
2626
* @since 3.0.0
2727
*/
28-
const VERSION = '3.2.8.20';
28+
const VERSION = '3.2.9';
2929

3030
/**
3131
* @access protected

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.2.8.21
15+
* Version: 3.2.9
1616
* Text Domain: redux-framework
1717
* License: GPL3+
1818
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt

0 commit comments

Comments
 (0)