Nimble Page Builder - Version 1.6.2

Version Description

Added Post Grid module. Updated the customizer UI with a new checkbox design. Improved code performance.

=

Download this release

Release Info

Developer nikeo
Plugin Icon 128x128 Nimble Page Builder
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1 to 1.6.2

inc/sektions/ccat-sektions.php CHANGED
@@ -2568,7 +2568,7 @@ function sek_hex_invert( $hex, $make_prop_value = true ) {
2568
  }
2569
  function sek_extract_unit( $value ) {
2570
  $unit = preg_replace('/[0-9]|\.|,/', '', $value );
2571
- $unit = preg_replace('/(\W)+/', '', $unit);
2572
  return 0 === preg_match( "/(px|em|%)/i", $unit ) ? 'px' : $unit;
2573
  }
2574
  function sek_extract_numeric_value( $value ) {
2568
  }
2569
  function sek_extract_unit( $value ) {
2570
  $unit = preg_replace('/[0-9]|\.|,/', '', $value );
2571
+ $unit = str_replace('-', '', $unit );
2572
  return 0 === preg_match( "/(px|em|%)/i", $unit ) ? 'px' : $unit;
2573
  }
2574
  function sek_extract_numeric_value( $value ) {
nimble-builder.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Nimble Page Builder
4
  * Description: Powerful drag and drop page builder using the native WordPress customizer.
5
- * Version: 1.6.1
6
  * Text Domain: nimble-builder
7
  * Author: Press Customizr
8
  * Author URI: https://nimblebuilder.com/?utm_source=wp-plugins&utm_medium=wp-dashboard&utm_campaign=author-uri
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  /* ------------------------------------------------------------------------- *
14
  * CONSTANTS
15
  /* ------------------------------------------------------------------------- */
16
- $current_version = "1.6.1";
17
  if ( !defined( "NIMBLE_VERSION" ) ) { define( "NIMBLE_VERSION", $current_version ); }
18
  if ( !defined( 'NIMBLE_DIR_NAME' ) ) { define( 'NIMBLE_DIR_NAME' , basename( dirname( __FILE__ ) ) ); }
19
  if ( !defined( 'NIMBLE_BASE_URL' ) ) { define( 'NIMBLE_BASE_URL' , plugins_url( NIMBLE_DIR_NAME ) ); }
@@ -26,7 +26,7 @@ if ( !defined( 'NIMBLE_PLUGIN_FILE' ) ) { define( 'NIMBLE_PLUGIN_FILE', __FILE__
26
  if ( !defined( 'NIMBLE_SAVED_SECTIONS_ENABLED' ) ) { define ( 'NIMBLE_SAVED_SECTIONS_ENABLED', false ); }
27
  if ( !defined( 'NIMBLE_HEADER_FOOTER_ENABLED' ) ) { define ( 'NIMBLE_HEADER_FOOTER_ENABLED', false ); }
28
 
29
- if ( !defined( 'NIMBLE_SHOW_UPDATE_NOTICE_FOR_VERSION' ) ) { define( 'NIMBLE_SHOW_UPDATE_NOTICE_FOR_VERSION', '1.6.1' ); }
30
  if ( !defined( 'NIMBLE_RELEASE_NOTE_URL' ) ) { define( 'NIMBLE_RELEASE_NOTE_URL', 'https://presscustomizr.com/nimble-builder-version-1-6-1-introduces-a-post-grid-module/?utm_source=usersite&utm_medium=link&utm_campaign=nimble-update-notice' ); }
31
 
32
  if ( !defined( 'NIMBLE_WELCOME_NOTICE_ID' ) ) { define ( 'NIMBLE_WELCOME_NOTICE_ID', 'nimble-welcome-notice-12-2018' ); }
2
  /**
3
  * Plugin Name: Nimble Page Builder
4
  * Description: Powerful drag and drop page builder using the native WordPress customizer.
5
+ * Version: 1.6.2
6
  * Text Domain: nimble-builder
7
  * Author: Press Customizr
8
  * Author URI: https://nimblebuilder.com/?utm_source=wp-plugins&utm_medium=wp-dashboard&utm_campaign=author-uri
13
  /* ------------------------------------------------------------------------- *
14
  * CONSTANTS
15
  /* ------------------------------------------------------------------------- */
16
+ $current_version = "1.6.2";
17
  if ( !defined( "NIMBLE_VERSION" ) ) { define( "NIMBLE_VERSION", $current_version ); }
18
  if ( !defined( 'NIMBLE_DIR_NAME' ) ) { define( 'NIMBLE_DIR_NAME' , basename( dirname( __FILE__ ) ) ); }
19
  if ( !defined( 'NIMBLE_BASE_URL' ) ) { define( 'NIMBLE_BASE_URL' , plugins_url( NIMBLE_DIR_NAME ) ); }
26
  if ( !defined( 'NIMBLE_SAVED_SECTIONS_ENABLED' ) ) { define ( 'NIMBLE_SAVED_SECTIONS_ENABLED', false ); }
27
  if ( !defined( 'NIMBLE_HEADER_FOOTER_ENABLED' ) ) { define ( 'NIMBLE_HEADER_FOOTER_ENABLED', false ); }
28
 
29
+ if ( !defined( 'NIMBLE_SHOW_UPDATE_NOTICE_FOR_VERSION' ) ) { define( 'NIMBLE_SHOW_UPDATE_NOTICE_FOR_VERSION', '1.6.2' ); }
30
  if ( !defined( 'NIMBLE_RELEASE_NOTE_URL' ) ) { define( 'NIMBLE_RELEASE_NOTE_URL', 'https://presscustomizr.com/nimble-builder-version-1-6-1-introduces-a-post-grid-module/?utm_source=usersite&utm_medium=link&utm_campaign=nimble-update-notice' ); }
31
 
32
  if ( !defined( 'NIMBLE_WELCOME_NOTICE_ID' ) ) { define ( 'NIMBLE_WELCOME_NOTICE_ID', 'nimble-welcome-notice-12-2018' ); }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: page builder, visual editor, customizer, drag and drop, header, footer, la
6
  Requires at least: 4.7
7
  Requires PHP: 5.4
8
  Tested up to: 5.1.1
9
- Stable tag: 1.6.1
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8FMNQPU36U27J&source=url
@@ -96,10 +96,13 @@ You'll find a growing online knowledge base for Nimble builder here : [Nimble bu
96
  The Nimble builder works with any WordPress theme. If you experience any problem with a specific theme, please report it in the [plugin support forum](https://wordpress.org/support/plugin/nimble-builder).
97
 
98
  == Upgrade Notice ==
99
- = 1.6.1 =
100
  Added Post Grid module. Updated the customizer UI with a new checkbox design. Improved code performance.
101
 
102
  == Changelog ==
 
 
 
103
  = 1.6.1 : April 3rd 2019 =
104
  * fixed : nimble top bar not hidden when searching theme or saving a draft
105
  * fixed : apply a default margin top and bottom to headings, in order to avoid theme stylesheet breaking vertical centering
6
  Requires at least: 4.7
7
  Requires PHP: 5.4
8
  Tested up to: 5.1.1
9
+ Stable tag: 1.6.2
10
  License: GPLv3
11
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
12
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8FMNQPU36U27J&source=url
96
  The Nimble builder works with any WordPress theme. If you experience any problem with a specific theme, please report it in the [plugin support forum](https://wordpress.org/support/plugin/nimble-builder).
97
 
98
  == Upgrade Notice ==
99
+ = 1.6.2 =
100
  Added Post Grid module. Updated the customizer UI with a new checkbox design. Improved code performance.
101
 
102
  == Changelog ==
103
+ = 1.6.2 : April 3rd 2019 =
104
+ * fixed : bug when a section width is set in percent
105
+
106
  = 1.6.1 : April 3rd 2019 =
107
  * fixed : nimble top bar not hidden when searching theme or saving a draft
108
  * fixed : apply a default margin top and bottom to headings, in order to avoid theme stylesheet breaking vertical centering