WordPress Page Builder – Beaver Builder - Version 1.6.2

Version Description

Download this release

Release Info

Developer justinbusa
Plugin Icon 128x128 WordPress Page Builder – Beaver Builder
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1.1 to 1.6.2

changelog.txt CHANGED
@@ -1,3 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.1.1 - 08/11/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.6.2 - 08/16/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>The Menu module is now out of beta! Be sure to check out <a href="https://www.wpbeaverbuilder.com/the-menu-module-is-now-in-beta/" target="_blank">the blog post</a> for more info on how that works.</li>
5
+ <li>Added opacity settings for menu background colors in the Menu module.</li>
6
+ <li>Added vertical and horizontal spacing settings for menu items in the Menu module.</li>
7
+ <li>Added Polish translation.</li>
8
+ </ul>
9
+ <p><strong>Bug Fixes</strong></p>
10
+ <ul>
11
+ <li>Fixed an issue with the Menu module when an empty menu is selected.</li>
12
+ <li>Fixed an issue with the Menu module when resizing from desktop to mobile.</li>
13
+ <li>Fixed an issue with the width of the Menu module accordion layout.</li>
14
+ <li>Fixed an issue with widgets such as the Master Slider widget that only register their scripts in the wp_enqueue_scripts action instead of enqueuing them there.</li>
15
+ </ul>
16
+
17
  <h4>1.6.1.1 - 08/11/2015</h4>
18
  <p><strong>Enhancements</strong></p>
19
  <ul>
classes/class-fl-builder.php CHANGED
@@ -577,9 +577,13 @@ final class FLBuilder {
577
  {
578
  global $wp_scripts;
579
  global $wp_styles;
 
 
 
 
580
 
581
- // Deregister scripts and styles so we can capture those
582
- // registered by content functions such as shortcodes.
583
  if(isset($wp_scripts)) {
584
  $wp_scripts->queue = array();
585
  }
@@ -587,10 +591,6 @@ final class FLBuilder {
587
  $wp_styles->queue = array();
588
  }
589
 
590
- // Enqueue jQuery again so it's not added by any
591
- // third party shortcodes or plugins.
592
- wp_enqueue_script('jquery');
593
-
594
  // Render the layout.
595
  ob_start();
596
  self::render_rows();
@@ -601,8 +601,7 @@ final class FLBuilder {
601
  echo do_shortcode($html);
602
  $html = ob_get_clean();
603
 
604
- // Print scripts and styles registered by content
605
- // functions such as shortcodes.
606
  ob_start();
607
 
608
  if(isset($wp_scripts)) {
577
  {
578
  global $wp_scripts;
579
  global $wp_styles;
580
+
581
+ // Do the wp_enqueue_scripts action here to register any scripts or
582
+ // styles that might need to be registered for shortcodes or widgets.
583
+ do_action( 'wp_enqueue_scripts' );
584
 
585
+ // Dequeue scripts and styles so we can capture only those
586
+ // enqueued by shortcodes or widgets.
587
  if(isset($wp_scripts)) {
588
  $wp_scripts->queue = array();
589
  }
591
  $wp_styles->queue = array();
592
  }
593
 
 
 
 
 
594
  // Render the layout.
595
  ob_start();
596
  self::render_rows();
601
  echo do_shortcode($html);
602
  $html = ob_get_clean();
603
 
604
+ // Print scripts and styles enqueued by shortcodes or widgets.
 
605
  ob_start();
606
 
607
  if(isset($wp_scripts)) {
fl-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
- * Version: 1.6.1.1
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,7 +11,7 @@
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
- define('FL_BUILDER_VERSION', '1.6.1.1');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
+ * Version: 1.6.2
7
  * Author: The Beaver Builder Team
8
  * Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
9
  * Copyright: (c) 2014 Beaver Builder
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
+ define('FL_BUILDER_VERSION', '1.6.2');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
img/svg/hamburger-menu.svg ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <svg version="1.1" class="hamburger-menu" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
2
+ <rect class="fl-hamburger-menu-top" width="512" height="102"/>
3
+ <rect class="fl-hamburger-menu-middle" y="205" width="512" height="102"/>
4
+ <rect class="fl-hamburger-menu-bottom" y="410" width="512" height="102"/>
5
+ </svg>
includes/updater-config.php CHANGED
@@ -3,7 +3,7 @@
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
- 'version' => '1.6.1.1',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
3
  if(class_exists('FLUpdater')) {
4
  FLUpdater::add_product(array(
5
  'name' => 'Beaver Builder Plugin (Lite Version)',
6
+ 'version' => '1.6.2',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
languages/pl_PL.mo ADDED
Binary file
languages/pl_PL.po ADDED
@@ -0,0 +1,5424 @@