Page Builder by SiteOrigin - Version 2.10.9

Version Description

  • 23 August 2019 =
  • Use desktop margin between cells when collapsed and no mobile margin is given.
Download this release

Release Info

Developer gpriday
Plugin Icon 128x128 Page Builder by SiteOrigin
Version 2.10.9
Comparing to
See all releases

Code changes from version 2.10.8 to 2.10.9

inc/renderer.php CHANGED
@@ -216,7 +216,7 @@ class SiteOrigin_Panels_Renderer {
216
  foreach ( $row['cells'] as $ci => $cell ) {
217
  if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) {
218
  $css->add_cell_css( $post_id, $ri, $ci, '', array(
219
- 'margin-bottom' => $panels_mobile_margin_bottom
220
  ), $panels_mobile_width );
221
  }
222
  }
216
  foreach ( $row['cells'] as $ci => $cell ) {
217
  if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) {
218
  $css->add_cell_css( $post_id, $ri, $ci, '', array(
219
+ 'margin-bottom' => ! empty( $panels_mobile_margin_bottom ) ? $panels_mobile_margin_bottom : $panels_margin_bottom
220
  ), $panels_mobile_width );
221
  }
222
  }
js/{siteorigin-panels-2108.js → siteorigin-panels-2109.js} RENAMED
File without changes
js/{siteorigin-panels-2108.min.js → siteorigin-panels-2109.min.js} RENAMED
File without changes
js/{styling-2108.js → styling-2109.js} RENAMED
File without changes
js/{styling-2108.min.js → styling-2109.min.js} RENAMED
File without changes
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
3
  Requires at least: 4.4
4
  Tested up to: 5.2.2
5
- Stable tag: 2.10.8
6
- Build time: 2019-08-22T08:10:06+02:00
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
  Donate link: https://siteorigin.com/downloads/premium/
@@ -96,6 +96,9 @@ We've tried to ensure that Page Builder is compatible with most plugin widgets.
96
 
97
  == Changelog ==
98
 
 
 
 
99
  = 2.10.8 - 22 August 2019 =
100
  * Made mobile bottom margin default to empty.
101
  * Fixed remove button appearing when no image was present in style field.
2
  Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
3
  Requires at least: 4.4
4
  Tested up to: 5.2.2
5
+ Stable tag: 2.10.9
6
+ Build time: 2019-08-23T12:50:57+02:00
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
  Donate link: https://siteorigin.com/downloads/premium/
96
 
97
  == Changelog ==
98
 
99
+ = 2.10.9 - 23 August 2019 =
100
+ * Use desktop margin between cells when collapsed and no mobile margin is given.
101
+
102
  = 2.10.8 - 22 August 2019 =
103
  * Made mobile bottom margin default to empty.
104
  * Fixed remove button appearing when no image was present in style field.
siteorigin-panels.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Page Builder by SiteOrigin
4
  Plugin URI: https://siteorigin.com/page-builder/
5
  Description: A drag and drop, responsive page builder that simplifies building your website.
6
- Version: 2.10.8
7
  Author: SiteOrigin
8
  Author URI: https://siteorigin.com
9
  License: GPL3
@@ -11,12 +11,12 @@ License URI: http://www.gnu.org/licenses/gpl.html
11
  Donate link: http://siteorigin.com/page-builder/#donate
12
  */
13
 
14
- define( 'SITEORIGIN_PANELS_VERSION', '2.10.8' );
15
  if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
16
  define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
17
  }
18
  define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
19
- define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2108' );
20
 
21
  require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
22
 
3
  Plugin Name: Page Builder by SiteOrigin
4
  Plugin URI: https://siteorigin.com/page-builder/
5
  Description: A drag and drop, responsive page builder that simplifies building your website.
6
+ Version: 2.10.9
7
  Author: SiteOrigin
8
  Author URI: https://siteorigin.com
9
  License: GPL3
11
  Donate link: http://siteorigin.com/page-builder/#donate
12
  */
13
 
14
+ define( 'SITEORIGIN_PANELS_VERSION', '2.10.9' );
15
  if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
16
  define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
17
  }
18
  define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
19
+ define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2109' );
20
 
21
  require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
22