Plugin Directory

Changeset 2144307


Ignore:
Timestamp:
08/23/2019 10:55:03 AM (6 years ago)
Author:
gpriday
Message:

2.10.9 release

Location:
siteorigin-panels
Files:
8 added
8 deleted
5 edited
2 copied

Legend:

Unmodified
Added
Removed
  • siteorigin-panels/tags/2.10.9/inc/renderer.php

    r2143504 r2144307  
    217217                    if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) {
    218218                        $css->add_cell_css( $post_id, $ri, $ci, '', array(
    219                             'margin-bottom' => $panels_mobile_margin_bottom
     219                            'margin-bottom' => ! empty( $panels_mobile_margin_bottom ) ? $panels_mobile_margin_bottom : $panels_margin_bottom
    220220                        ), $panels_mobile_width );
    221221                    }
  • siteorigin-panels/tags/2.10.9/readme.txt

    r2143509 r2144307  
    33Requires at least: 4.4
    44Tested up to: 5.2.2
    5 Stable tag: 2.10.8
    6 Build time: 2019-08-22T08:10:06+02:00
     5Stable tag: 2.10.9
     6Build time: 2019-08-23T12:50:57+02:00
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    9696
    9797== Changelog ==
     98
     99= 2.10.9 - 23 August 2019 =
     100* Use desktop margin between cells when collapsed and no mobile margin is given.
    98101
    99102= 2.10.8 - 22 August 2019 =
  • siteorigin-panels/tags/2.10.9/siteorigin-panels.php

    r2143504 r2144307  
    44Plugin URI: https://siteorigin.com/page-builder/
    55Description: A drag and drop, responsive page builder that simplifies building your website.
    6 Version: 2.10.8
     6Version: 2.10.9
    77Author: SiteOrigin
    88Author URI: https://siteorigin.com
     
    1212*/
    1313
    14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.8' );
     14define( 'SITEORIGIN_PANELS_VERSION', '2.10.9' );
    1515if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
    1616    define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
    1717}
    1818define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
    19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2108' );
     19define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2109' );
    2020
    2121require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
  • siteorigin-panels/trunk/inc/renderer.php

    r2143504 r2144307  
    217217                    if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) {
    218218                        $css->add_cell_css( $post_id, $ri, $ci, '', array(
    219                             'margin-bottom' => $panels_mobile_margin_bottom
     219                            'margin-bottom' => ! empty( $panels_mobile_margin_bottom ) ? $panels_mobile_margin_bottom : $panels_margin_bottom
    220220                        ), $panels_mobile_width );
    221221                    }
  • siteorigin-panels/trunk/readme.txt

    r2143509 r2144307  
    33Requires at least: 4.4
    44Tested up to: 5.2.2
    5 Stable tag: 2.10.8
    6 Build time: 2019-08-22T08:10:06+02:00
     5Stable tag: 2.10.9
     6Build time: 2019-08-23T12:50:57+02:00
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    9696
    9797== Changelog ==
     98
     99= 2.10.9 - 23 August 2019 =
     100* Use desktop margin between cells when collapsed and no mobile margin is given.
    98101
    99102= 2.10.8 - 22 August 2019 =
  • siteorigin-panels/trunk/siteorigin-panels.php

    r2143504 r2144307  
    44Plugin URI: https://siteorigin.com/page-builder/
    55Description: A drag and drop, responsive page builder that simplifies building your website.
    6 Version: 2.10.8
     6Version: 2.10.9
    77Author: SiteOrigin
    88Author URI: https://siteorigin.com
     
    1212*/
    1313
    14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.8' );
     14define( 'SITEORIGIN_PANELS_VERSION', '2.10.9' );
    1515if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
    1616    define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
    1717}
    1818define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' );
    19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2108' );
     19define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-2109' );
    2020
    2121require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
Note: See TracChangeset for help on using the changeset viewer.