Skip to content

Commit f1c1057

Browse files
committed
3.2.4 Release.
1 parent 389cab1 commit f1c1057

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ Send me an email at [email protected] so I can add you to our user sp
7474

7575
### Master ###
7676

77+
= 3.2.4 =
78+
* Fixed: Unload error on first load if the typography defaults are not set.
79+
7780
= 3.2.3.5 =
7881
* Modified: Moved update check functions to class file and out of the core.
7982
* Fixed: Errors pertaining to mod_rewrite check.

README.txt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
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: 3.9.0
7-
Stable tag: 3.2.3
7+
Stable tag: 3.2.4
88
License: GPLv3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

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

126126
== Changelog ==
127127

128+
129+
= 3.2.4 =
130+
* Fixed: Unload error on first load if the typography defaults are not set.
131+
* Fixed: Errors pertaining to mod_rewrite check.
132+
* Fixed: All those headers already set errors.
133+
* Added: $changed_values variable to save hooks denoting the old values on a save.
134+
* Added: Pointers to Extensions on load.
135+
* Modified: CSS Output for the background field.
136+
* Fixed: Validation error messages not appearing on save.
137+
* Modified: Speed boost on validation types.
138+
* Added: Apache mod_rewrite check. This should solve many issues we've been seeing regarding mod_rewrite noe being enabled.
139+
* Fixed: Sortable field not saving properly.
140+
* Fixed: Erroneous data in admin.less
141+
* Updated: sample-config.php. Sortable checkbox field example now uses true/false instead of text meant for textbox example.
142+
128143
= 3.2.3 =
129144
* Fixed: Responsive issues with spacing and dimension fields.
130145
* Fixed: Style conflicts with WP 3.9. Added register filter to fields via id.

ReduxCore/assets/js/redux.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ReduxCore/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @package Redux_Framework
1818
* @subpackage Core
1919
* @author Redux Framework Team
20-
* @version 3.2.3
20+
* @version 3.2.4
2121
*/
2222

2323
// Exit if accessed directly

ReduxCore/inc/fields/typography/field_typography.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jQuery(document).ready(function($) {
227227
jQuery(family).val(family.data('value'));
228228
}
229229
typographySelect(family);
230-
230+
window.onbeforeunload = null;
231231
});
232232
//init when value is changed
233233
jQuery('.redux-typography').on('change', function() {

redux-framework.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
* Plugin URI: http://wordpress.org/plugins/redux-framework
1111
* Github URI: https://github.com/ReduxFramework/redux-framework
1212
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
13-
* Author: Redux
13+
* Author: Team Redux
1414
* Author URI: http://reduxframework.com
15-
* Version: 3.2.3.5
15+
* Version: 3.2.4
1616
* Text Domain: redux-framework
1717
* License: GPL3+
1818
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1919
* Domain Path: /ReduxFramework/ReduxCore/languages
2020
*
2121
* @package ReduxFramework
2222
* @author Dovy Paukstys <[email protected]>
23-
* @author Daniel J Griffiths <[email protected]>
2423
* @author Kevin Provance <[email protected]>
24+
* @author Daniel J Griffiths <[email protected]>
2525
* @license GNU General Public License, version 3
2626
* @copyright 2012-2014 Redux Framework
2727
*/

0 commit comments

Comments
 (0)