Plugin Directory

Changeset 2146891


Ignore:
Timestamp:
08/28/2019 08:17:30 AM (6 years ago)
Author:
gpriday
Message:

2.10.10 release

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

Legend:

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

    r2144307 r2146891  
    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' => ! empty( $panels_mobile_margin_bottom ) ? $panels_mobile_margin_bottom : $panels_margin_bottom
     219                            'margin-bottom' => apply_filters(
     220                                'siteorigin_panels_css_cell_mobile_margin_bottom',
     221                                $settings['margin-bottom'] . 'px',
     222                                $cell,
     223                                $ci,
     224                                $row,
     225                                $ri,
     226                                $panels_data,
     227                                $post_id
     228                            )
    220229                        ), $panels_mobile_width );
    221230                    }
  • siteorigin-panels/tags/2.10.10/lang/siteorigin-panels.pot

    r2141880 r2146891  
    3737msgstr ""
    3838
    39 #: siteorigin-panels.php:334
     39#: siteorigin-panels.php:338
    4040msgid "Read More"
    4141msgstr ""
    4242
    43 #: siteorigin-panels.php:482
     43#: siteorigin-panels.php:486
    4444msgid "Edit Home Page"
    4545msgstr ""
    4646
    47 #: siteorigin-panels.php:502, tpl/js-templates.php:34, tpl/js-templates.php:36
     47#: siteorigin-panels.php:506, tpl/js-templates.php:34, tpl/js-templates.php:36
    4848msgid "Live Editor"
    4949msgstr ""
  • siteorigin-panels/tags/2.10.10/readme.txt

    r2144307 r2146891  
    11=== Page Builder by SiteOrigin ===
    22Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
    3 Requires at least: 4.4
     3Requires at least: 4.7
    44Tested up to: 5.2.2
    5 Stable tag: 2.10.9
    6 Build time: 2019-08-23T12:50:57+02:00
     5Stable tag: 2.10.10
     6Build time: 2019-08-28T10:08:34+02:00
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    9696
    9797== Changelog ==
     98
     99= 2.10.10 - 28 August 2019 =
     100* Added filter for cell bottom margin on mobile.
     101* Make sure widget form checkbox values are unset when unchecked.
     102* Added Widget Options plugin compatibility code.
    98103
    99104= 2.10.9 - 23 August 2019 =
  • siteorigin-panels/tags/2.10.10/siteorigin-panels.php

    r2144307 r2146891  
    44Plugin URI: https://siteorigin.com/page-builder/
    55Description: A drag and drop, responsive page builder that simplifies building your website.
    6 Version: 2.10.9
     6Version: 2.10.10
    77Author: SiteOrigin
    88Author URI: https://siteorigin.com
     
    1212*/
    1313
    14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.9' );
     14define( 'SITEORIGIN_PANELS_VERSION', '2.10.10' );
    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', '-2109' );
     19define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21010' );
    2020
    2121require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
     
    8383            SiteOrigin_Panels_Compat_Layout_Block::single();
    8484        }
    85        
    8685       
    8786        define( 'SITEORIGIN_PANELS_BASE_FILE', __FILE__ );
     
    193192            SiteOrigin_Panels_Admin::single();
    194193        }
     194       
     195        // Compatibility with Widget Options plugin
     196        if( class_exists('WP_Widget_Options') ) {
     197            require_once plugin_dir_path( __FILE__ ) . 'compat/widget-options.php';
     198        }
    195199    }
    196200
  • siteorigin-panels/trunk/inc/renderer.php

    r2144307 r2146891  
    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' => ! empty( $panels_mobile_margin_bottom ) ? $panels_mobile_margin_bottom : $panels_margin_bottom
     219                            'margin-bottom' => apply_filters(
     220                                'siteorigin_panels_css_cell_mobile_margin_bottom',
     221                                $settings['margin-bottom'] . 'px',
     222                                $cell,
     223                                $ci,
     224                                $row,
     225                                $ri,
     226                                $panels_data,
     227                                $post_id
     228                            )
    220229                        ), $panels_mobile_width );
    221230                    }
  • siteorigin-panels/trunk/lang/siteorigin-panels.pot

    r2141880 r2146891  
    3737msgstr ""
    3838
    39 #: siteorigin-panels.php:334
     39#: siteorigin-panels.php:338
    4040msgid "Read More"
    4141msgstr ""
    4242
    43 #: siteorigin-panels.php:482
     43#: siteorigin-panels.php:486
    4444msgid "Edit Home Page"
    4545msgstr ""
    4646
    47 #: siteorigin-panels.php:502, tpl/js-templates.php:34, tpl/js-templates.php:36
     47#: siteorigin-panels.php:506, tpl/js-templates.php:34, tpl/js-templates.php:36
    4848msgid "Live Editor"
    4949msgstr ""
  • siteorigin-panels/trunk/readme.txt

    r2144307 r2146891  
    11=== Page Builder by SiteOrigin ===
    22Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
    3 Requires at least: 4.4
     3Requires at least: 4.7
    44Tested up to: 5.2.2
    5 Stable tag: 2.10.9
    6 Build time: 2019-08-23T12:50:57+02:00
     5Stable tag: 2.10.10
     6Build time: 2019-08-28T10:08:34+02:00
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    9696
    9797== Changelog ==
     98
     99= 2.10.10 - 28 August 2019 =
     100* Added filter for cell bottom margin on mobile.
     101* Make sure widget form checkbox values are unset when unchecked.
     102* Added Widget Options plugin compatibility code.
    98103
    99104= 2.10.9 - 23 August 2019 =
  • siteorigin-panels/trunk/siteorigin-panels.php

    r2144307 r2146891  
    44Plugin URI: https://siteorigin.com/page-builder/
    55Description: A drag and drop, responsive page builder that simplifies building your website.
    6 Version: 2.10.9
     6Version: 2.10.10
    77Author: SiteOrigin
    88Author URI: https://siteorigin.com
     
    1212*/
    1313
    14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.9' );
     14define( 'SITEORIGIN_PANELS_VERSION', '2.10.10' );
    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', '-2109' );
     19define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21010' );
    2020
    2121require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php';
     
    8383            SiteOrigin_Panels_Compat_Layout_Block::single();
    8484        }
    85        
    8685       
    8786        define( 'SITEORIGIN_PANELS_BASE_FILE', __FILE__ );
     
    193192            SiteOrigin_Panels_Admin::single();
    194193        }
     194       
     195        // Compatibility with Widget Options plugin
     196        if( class_exists('WP_Widget_Options') ) {
     197            require_once plugin_dir_path( __FILE__ ) . 'compat/widget-options.php';
     198        }
    195199    }
    196200
Note: See TracChangeset for help on using the changeset viewer.