Skip to content

Commit ef65bd5

Browse files
committed
3.4.0 Release prep.
1 parent 6cf8649 commit ef65bd5

File tree

4 files changed

+66
-5
lines changed

4 files changed

+66
-5
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.4.0
4+
* WP.org Release
5+
36
## 3.3.10.7
47
* Fixed: Reset section hook firing too early.
58

README.txt

Lines changed: 61 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== Redux Framework ===
2-
Contributors: section214, dovyp, kprovance
2+
Contributors: dovyp, kprovance, section214
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: 4.0
7-
Stable tag: 3.3.9.4
6+
Tested up to: 4.2
7+
Stable tag: 3.4.0
88
License: GPLv3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

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

126126
== Changelog ==
127127

128+
# 3.4.0
129+
* Fixed: Reset section hook firing too early.
130+
* Modified: The Redux Repeater field has landed!
131+
* Fixed: #1983 - color_rgba not outputting default values on first load (before save).
132+
* Fixed: Google font enqueues with opt_name to avoid collision with multiple Redux instances.
133+
* Fixed: #1980 - JS errors with sorter & sortable.
134+
* Fixed: color_rgba field outputting incorrect information via output/compiler.
135+
* Fixed: #1979 - Goole fonts not properly loading in typography dropdown.
136+
* Fixed: Undefined index error on MU installs.
137+
* Removed: SASS compile of field CSS, for the time being. Compiler remains in core.
138+
* Improved: Panel load time, most notable when not in dev_mode. Better for your clients. :)
139+
* Updated: Elusive Font library.
140+
* Fixed: #1961 - color_rgba field defaulting to black on reset.
141+
* Fixed: #1941 - Datepicker opened off screen.
142+
* Fixed: #1756, #1957 - Slider issues. Thanks @FFIN!
143+
* Fixed: #1960 - Duplicate slide when clicking Add. Again, thanks to @FFIN for the fix.
144+
* Added: New filter: apply_filters 'redux/validate/{opt_name}/before_validation'
145+
* Fixed: #1745 - Adding settings submenu to empty submenu now works. Many, many thanks to @No3x for cracking this one!
146+
* Fixed: #1955 - Undefined index rgba in output routine.
147+
* Modified: #1947 - Added display:none to TR tag under info field.
148+
* Replaced: #1951 - Replaced develop branch of scssphp to master branch due to PHP 5.2 incompatibililty.
149+
* Fixed: #1943 - Removed premature DIV close.
150+
* Fixed: #1945 - Media preview not rendering when default ID specified.
151+
* Modified: #1930 - reorder 'psedo-class of link_color field. Thanks @freddessaint
152+
* Modified: SASS compiler outputs to page by default. Faster.
153+
* Fixed: #1927 - Incorrect dir path to spectrum library in color_rgba field corrected.
154+
* Modified: color_rgba field now usees spectrum color picker. minicolors removed. Just...too buggy.
155+
* Modified: #1922 - Filesystem output function.
156+
* Fixed: Added PHP 5.2 support (ugh!) for SASS compiler.
157+
* Fixed: More SASS compiler tweaking.
158+
* Fixed: PHP errors when disabling SASS.
159+
* Fixed #1909 - malformed DIV class HTML in slider field.
160+
* Removed Argument for SASS compile file output location removed. Didn't work, too much trouble.
161+
* Fixed: #1904 - select_image field not displaying saved value on page reload.
162+
* Fixed: SASS compile under multi-instance outputting incorrect CSS file
163+
* Fixed: redux-admin scss images converted to base64
164+
* Added SASS compiler for admin CSS.
165+
* Added SASS to CSS for grunt compiler.
166+
* Added SASS compiler for fields.
167+
* Updated: select2 3.5.2
168+
* Fixed: #1856 - Illegal offset string warnings in framework.php. Thanks @CGlingener.
169+
* Fixed: #1874 - Required operator 'contains' and 'not_contains' not working with select set to multi.
170+
* Fixed: #1829 - Required operator '=' and '!=' not working with select set to multi.
171+
* Fixed: #1870 - Border field doubling up on px in output/compiler.
172+
* Added: `hidden` argument for fields.
173+
* Added: `hidden` argument for sections.
174+
* Fixed: #1868 - Improper panel render when opening expanded, when `open_expanded` set to true.
175+
* Added: `hide_expand` argument, to hide the expand options button.
176+
* Fixed: #1865 - Sortable select not saving proper order.
177+
* Fixed: #1864 - Footer z-index CSS adjusted.
178+
* Fixed: #1848 - Import-export filed buttons not functioning properly.
179+
* Fixed: #1834 - Wordpress data dealing with IDs as array keys not rendering properly.
180+
* Fixed: #1830 - Font lists were added in quotes. Thanks @karimhossenbux.
181+
* Fixed: #1798 - Fixed lazy load JS to only load visible sections. Much more optimized.
182+
* Fixed: #1821 - Exo 2 font not working, issue with typography and escaping.
183+
* Added: #1803 - Optgroup support for select field.
184+
* Added: Decimal increments to spinner.
185+
128186
## 3.3.9.4
129187
* Added: Customizer now supports PANEL! Yay 4.0.
130188
* Fixed: #1789 - Customizer now properly working again with WP 4.0. Odd bug.

ReduxCore/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ReduxFramework {
7070
// ATTENTION DEVS
7171
// Please update the build number with each push, no matter how small.
7272
// This will make for easier support when we ask users what version they are using.
73-
public static $_version = '3.3.10.7';
73+
public static $_version = '3.4.0';
7474
public static $_dir;
7575
public static $_url;
7676
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.3.10.7';
28+
const VERSION = '3.4.0';
2929

3030
/**
3131
* @access protected

0 commit comments

Comments
 (0)