Changeset 2146891
- Timestamp:
- 08/28/2019 08:17:30 AM (6 years ago)
- Location:
- siteorigin-panels
- Files:
-
- 10 added
- 8 deleted
- 5 edited
- 4 copied
-
tags/2.10.10 (copied) (copied from siteorigin-panels/trunk)
-
tags/2.10.10/compat/widget-options.php (added)
-
tags/2.10.10/inc/renderer.php (copied) (copied from siteorigin-panels/trunk/inc/renderer.php) (1 diff)
-
tags/2.10.10/js/siteorigin-panels-21010.js (added)
-
tags/2.10.10/js/siteorigin-panels-21010.min.js (added)
-
tags/2.10.10/js/siteorigin-panels-2108.js (deleted)
-
tags/2.10.10/js/siteorigin-panels-2108.min.js (deleted)
-
tags/2.10.10/js/styling-21010.js (added)
-
tags/2.10.10/js/styling-21010.min.js (added)
-
tags/2.10.10/js/styling-2108.js (deleted)
-
tags/2.10.10/js/styling-2108.min.js (deleted)
-
tags/2.10.10/lang/siteorigin-panels.pot (modified) (1 diff)
-
tags/2.10.10/readme.txt (copied) (copied from siteorigin-panels/trunk/readme.txt) (2 diffs)
-
tags/2.10.10/siteorigin-panels.php (copied) (copied from siteorigin-panels/trunk/siteorigin-panels.php) (4 diffs)
-
trunk/compat/widget-options.php (added)
-
trunk/inc/renderer.php (modified) (1 diff)
-
trunk/js/siteorigin-panels-21010.js (added)
-
trunk/js/siteorigin-panels-21010.min.js (added)
-
trunk/js/siteorigin-panels-2109.js (deleted)
-
trunk/js/siteorigin-panels-2109.min.js (deleted)
-
trunk/js/styling-21010.js (added)
-
trunk/js/styling-21010.min.js (added)
-
trunk/js/styling-2109.js (deleted)
-
trunk/js/styling-2109.min.js (deleted)
-
trunk/lang/siteorigin-panels.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/siteorigin-panels.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
siteorigin-panels/tags/2.10.10/inc/renderer.php
r2144307 r2146891 217 217 if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) { 218 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 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 ) 220 229 ), $panels_mobile_width ); 221 230 } -
siteorigin-panels/tags/2.10.10/lang/siteorigin-panels.pot
r2141880 r2146891 37 37 msgstr "" 38 38 39 #: siteorigin-panels.php:33 439 #: siteorigin-panels.php:338 40 40 msgid "Read More" 41 41 msgstr "" 42 42 43 #: siteorigin-panels.php:48 243 #: siteorigin-panels.php:486 44 44 msgid "Edit Home Page" 45 45 msgstr "" 46 46 47 #: siteorigin-panels.php:50 2, tpl/js-templates.php:34, tpl/js-templates.php:3647 #: siteorigin-panels.php:506, tpl/js-templates.php:34, tpl/js-templates.php:36 48 48 msgid "Live Editor" 49 49 msgstr "" -
siteorigin-panels/tags/2.10.10/readme.txt
r2144307 r2146891 1 1 === Page Builder by SiteOrigin === 2 2 Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid 3 Requires at least: 4. 43 Requires at least: 4.7 4 4 Tested up to: 5.2.2 5 Stable tag: 2.10. 96 Build time: 2019-08-2 3T12:50:57+02:005 Stable tag: 2.10.10 6 Build time: 2019-08-28T10:08:34+02:00 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 96 96 97 97 == 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. 98 103 99 104 = 2.10.9 - 23 August 2019 = -
siteorigin-panels/tags/2.10.10/siteorigin-panels.php
r2144307 r2146891 4 4 Plugin URI: https://siteorigin.com/page-builder/ 5 5 Description: A drag and drop, responsive page builder that simplifies building your website. 6 Version: 2.10. 96 Version: 2.10.10 7 7 Author: SiteOrigin 8 8 Author URI: https://siteorigin.com … … 12 12 */ 13 13 14 define( 'SITEORIGIN_PANELS_VERSION', '2.10. 9' );14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.10' ); 15 15 if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) { 16 16 define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' ); 17 17 } 18 18 define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' ); 19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-210 9' );19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21010' ); 20 20 21 21 require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php'; … … 83 83 SiteOrigin_Panels_Compat_Layout_Block::single(); 84 84 } 85 86 85 87 86 define( 'SITEORIGIN_PANELS_BASE_FILE', __FILE__ ); … … 193 192 SiteOrigin_Panels_Admin::single(); 194 193 } 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 } 195 199 } 196 200 -
siteorigin-panels/trunk/inc/renderer.php
r2144307 r2146891 217 217 if ( ( $collapse_order == 'left-top' && $ci != $cell_count - 1 ) || ( $collapse_order == 'right-top' && $ci !== 0 ) ) { 218 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 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 ) 220 229 ), $panels_mobile_width ); 221 230 } -
siteorigin-panels/trunk/lang/siteorigin-panels.pot
r2141880 r2146891 37 37 msgstr "" 38 38 39 #: siteorigin-panels.php:33 439 #: siteorigin-panels.php:338 40 40 msgid "Read More" 41 41 msgstr "" 42 42 43 #: siteorigin-panels.php:48 243 #: siteorigin-panels.php:486 44 44 msgid "Edit Home Page" 45 45 msgstr "" 46 46 47 #: siteorigin-panels.php:50 2, tpl/js-templates.php:34, tpl/js-templates.php:3647 #: siteorigin-panels.php:506, tpl/js-templates.php:34, tpl/js-templates.php:36 48 48 msgid "Live Editor" 49 49 msgstr "" -
siteorigin-panels/trunk/readme.txt
r2144307 r2146891 1 1 === Page Builder by SiteOrigin === 2 2 Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid 3 Requires at least: 4. 43 Requires at least: 4.7 4 4 Tested up to: 5.2.2 5 Stable tag: 2.10. 96 Build time: 2019-08-2 3T12:50:57+02:005 Stable tag: 2.10.10 6 Build time: 2019-08-28T10:08:34+02:00 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl.html … … 96 96 97 97 == 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. 98 103 99 104 = 2.10.9 - 23 August 2019 = -
siteorigin-panels/trunk/siteorigin-panels.php
r2144307 r2146891 4 4 Plugin URI: https://siteorigin.com/page-builder/ 5 5 Description: A drag and drop, responsive page builder that simplifies building your website. 6 Version: 2.10. 96 Version: 2.10.10 7 7 Author: SiteOrigin 8 8 Author URI: https://siteorigin.com … … 12 12 */ 13 13 14 define( 'SITEORIGIN_PANELS_VERSION', '2.10. 9' );14 define( 'SITEORIGIN_PANELS_VERSION', '2.10.10' ); 15 15 if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) { 16 16 define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' ); 17 17 } 18 18 define( 'SITEORIGIN_PANELS_CSS_SUFFIX', '.min' ); 19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-210 9' );19 define( 'SITEORIGIN_PANELS_VERSION_SUFFIX', '-21010' ); 20 20 21 21 require_once plugin_dir_path( __FILE__ ) . 'inc/functions.php'; … … 83 83 SiteOrigin_Panels_Compat_Layout_Block::single(); 84 84 } 85 86 85 87 86 define( 'SITEORIGIN_PANELS_BASE_FILE', __FILE__ ); … … 193 192 SiteOrigin_Panels_Admin::single(); 194 193 } 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 } 195 199 } 196 200
Note: See TracChangeset
for help on using the changeset viewer.