Skip to content

Commit 9ee1e7d

Browse files
committed
Version 3.1.0 push.
1 parent 4782316 commit 9ee1e7d

File tree

4 files changed

+67
-3
lines changed

4 files changed

+67
-3
lines changed

README.md

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

5757
### Master ###
5858

59+
= 3.1.0 =
60+
* Fix Issue 224 - Image Select width was breaking the panel.
61+
* Fix Issue 181 - Broken panel in firefox
62+
* Fix Issue 225 - 0px typography bug. Thanks @partnuz.
63+
* Fix Issue 228 - Resolved a duplicated enqueue on color_link field. Thanks @vertigo7x.
64+
* Fix Issue 231 - Field spacing bug fixes.
65+
* Fix Issue 232 & 233 - Dimensions: bug fix with units and multiple units. Thanks @kpodemski
66+
* Fix Issue 234 - Pass options as a ref so validating actions can modify/sanitize them. Thanks @ZeroBeeOne
67+
* Fix Issue 222 - Tab cookie function wasn't working.
68+
* Feature - Pass params to Select2. Thanks @andreilupu
69+
* Fix Issue 238 - Fix for conditional output. Thanks @partnuz.
70+
* Fix Issue 211 - Google Web font wasn't loading at first init of theme.
71+
* Fix Issue 210 - Elusive Icons update. Changed classes to force use of full elusive name.
72+
* Fix Issue 247 - Media thumbnails were not showing. Also fixed media to keep the largest file, but display the small version in the panel as a thumb. Thanks @kwayyinfotech.
73+
* Fix Issue 144 - JS error when no item found in slider.
74+
* Fix Issue 246 - Typography output errors.
75+
* Feature & Issue 259 - Multi-Text now support validation!
76+
* Fix Issue 248/261 - Links color issue. Also fixed color validation.
77+
* Feature & Issue 262 - Now registered sidebars can be used as a data type.
78+
* Fix Issue 194/276 - Custom taxonomy terms now passing properly. Thanks @kprovance.
79+
* Feature & Issue 273 - Argument save_defaults: Disable the auto-save of the default options to the database if not set.
80+
* Feature - Docs now being moved to the wiki for community participation.
81+
* Issue 283 - Date placeholder. Thanks @kprovance.
82+
* Issue 285 - HTTPS errors on admin. Known WordPress bug. Resolved.
83+
* Fix Issue 288 - Float values now possible for border, dimensions, and spacing.
84+
* Feature - Media field can now accept non-image files with a argument being set.
85+
* Fix Issue 252 - Post Type data wasn't working properly. Thanks @Abu-Taymiyyah.
86+
* Fix Issue 213 - Radio and Button Set wasn't folding.
87+
5988
= 3.0.9 =
6089
* Feature - Added possibility to set default icon class for all sections and tabs.
6190
* Feature - Make is to the WP dir can be moved elsewhere and Redux still function.

README.txt

Lines changed: 30 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
55
Requires at least: 3.5.1
66
Tested up to: 3.7
7-
Stable tag: 3.0.9
7+
Stable tag: 3.1.0
88
License: GPLv3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -139,6 +139,35 @@ That's because the real FAQ section is on our site! Please visit [http://reduxfr
139139

140140
== Changelog ==
141141

142+
= 3.1.0 =
143+
* Fix Issue 224 - Image Select width was breaking the panel.
144+
* Fix Issue 181 - Broken panel in firefox
145+
* Fix Issue 225 - 0px typography bug. Thanks @partnuz.
146+
* Fix Issue 228 - Resolved a duplicated enqueue on color_link field. Thanks @vertigo7x.
147+
* Fix Issue 231 - Field spacing bug fixes.
148+
* Fix Issue 232 & 233 - Dimensions: bug fix with units and multiple units. Thanks @kpodemski
149+
* Fix Issue 234 - Pass options as a ref so validating actions can modify/sanitize them. Thanks @ZeroBeeOne
150+
* Fix Issue 222 - Tab cookie function wasn't working.
151+
* Feature - Pass params to Select2. Thanks @andreilupu
152+
* Fix Issue 238 - Fix for conditional output. Thanks @partnuz.
153+
* Fix Issue 211 - Google Web font wasn't loading at first init of theme.
154+
* Fix Issue 210 - Elusive Icons update. Changed classes to force use of full elusive name.
155+
* Fix Issue 247 - Media thumbnails were not showing. Also fixed media to keep the largest file, but display the small version in the panel as a thumb. Thanks @kwayyinfotech.
156+
* Fix Issue 144 - JS error when no item found in slider.
157+
* Fix Issue 246 - Typography output errors.
158+
* Feature & Issue 259 - Multi-Text now support validation!
159+
* Fix Issue 248/261 - Links color issue. Also fixed color validation.
160+
* Feature & Issue 262 - Now registered sidebars can be used as a data type.
161+
* Fix Issue 194/276 - Custom taxonomy terms now passing properly. Thanks @kprovance.
162+
* Feature & Issue 273 - Argument save_defaults: Disable the auto-save of the default options to the database if not set.
163+
* Feature - Docs now being moved to the wiki for community participation.
164+
* Issue 283 - Date placeholder. Thanks @kprovance.
165+
* Issue 285 - HTTPS errors on admin. Known WordPress bug. Resolved.
166+
* Fix Issue 288 - Float values now possible for border, dimensions, and spacing.
167+
* Feature - Media field can now accept non-image files with a argument being set.
168+
* Fix Issue 252 - Post Type data wasn't working properly. Thanks @Abu-Taymiyyah.
169+
* Fix Issue 213 - Radio and Button Set wasn't folding.
170+
142171
= 3.0.9 =
143172
* Feature - Added possibility to set default icon class for all sections and tabs.
144173
* Feature - Make is to the WP dir can be moved elsewhere and Redux still function.

ReduxCore/framework.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838
class ReduxFramework {
3939

40-
public static $_version = '3.0.9';
40+
public static $_version = '3.1.0';
4141
public static $_dir;
4242
public static $_url;
4343
public static $_properties;
@@ -2004,9 +2004,11 @@ public function _field_input( $field, $v = "" ) {
20042004
$value = ( isset( $this->options[$field['id']] ) ) ? $this->options[$field['id']] : '';
20052005
do_action( 'redux-before-field-' . $this->args['opt_name'], $field, $value ); // REMOVE
20062006
do_action( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/callback/before', $field, $value );
2007+
do_action( 'redux/field/'.$this->args['opt_name'].'/callback/before', $field, $value );
20072008
call_user_func( $field['callback'], $field, $value );
20082009
do_action( 'redux-after-field-' . $this->args['opt_name'], $field, $value ); // REMOVE
20092010
do_action( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/callback/after', $field, $value );
2011+
do_action( 'redux/field/'.$this->args['opt_name'].'/callback/after', $field, $value );
20102012
return;
20112013
}
20122014

@@ -2030,13 +2032,15 @@ public function _field_input( $field, $v = "" ) {
20302032
}
20312033
do_action( 'redux-before-field-' . $this->args['opt_name'], $field, $value ); // REMOVE
20322034
do_action( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/render/before', $field, $value );
2035+
do_action( 'redux/field/'.$this->args['opt_name'].'/render/before', $field, $value );
20332036

20342037
$render = new $field_class( $field, $value, $this );
20352038
ob_start();
20362039
/** @noinspection PhpUndefinedMethodInspection */
20372040
$render->render();
20382041
$_render = apply_filters( 'redux-field-'.$this->args['opt_name'], ob_get_contents(), $field ); // REMOVE
20392042
$_render = apply_filters( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/render/after', ob_get_contents(), $field );
2043+
$_render = apply_filters( 'redux/field/'.$this->args['opt_name'].'/render/after', ob_get_contents(), $field );
20402044
ob_end_clean();
20412045

20422046
//save the values into a unique array in case we need it for dependencies
@@ -2047,6 +2051,7 @@ public function _field_input( $field, $v = "" ) {
20472051
extract($this->check_dependencies($field));
20482052

20492053
do_action( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/fieldset/before/' . $this->args['opt_name'], $field, $value );
2054+
do_action( 'redux/field/'.$this->args['opt_name'].'/fieldset/before/' . $this->args['opt_name'], $field, $value );
20502055
echo '<fieldset id="'.$this->args['opt_name'].'-'.$field['id'].'" class="redux-field redux-container-'.$field['type'].' '.$class_string.'" data-id="'.$field['id'].'" '.$data_string.'>';
20512056
echo $_render;
20522057

@@ -2060,6 +2065,7 @@ public function _field_input( $field, $v = "" ) {
20602065

20612066
do_action( 'redux-after-field-' . $this->args['opt_name'], $field, $value ); // REMOVE
20622067
do_action( 'redux/field/'.$this->args['opt_name'].'/'.$field['type'].'/fieldset/after/' . $this->args['opt_name'], $field, $value );
2068+
do_action( 'redux/field/'.$this->args['opt_name'].'/fieldset/after/' . $this->args['opt_name'], $field, $value );
20632069
}
20642070
}
20652071
} // function

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Plugin URI: http://wordpress.org/plugins/redux-framework/
1717
* Github URI: https://github.com/ReduxFramework/ReduxFramework
1818
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
19-
* Version: 3.0.9
19+
* Version: 3.1.0
2020
* Author: Redux Team
2121
* Author URI: http://reduxframework.com
2222
* Text Domain: redux-framework

0 commit comments

Comments
 (0)