Changeset 3473408
- Timestamp:
- 03/03/2026 09:10:04 AM (4 weeks ago)
- Location:
- marquee-addons-for-elementor
- Files:
-
- 10 edited
- 1 copied
-
tags/3.9.28 (copied) (copied from marquee-addons-for-elementor/trunk)
-
tags/3.9.28/base.php (modified) (1 diff)
-
tags/3.9.28/includes/widget.php (modified) (1 diff)
-
tags/3.9.28/includes/widgets/traits/button-marquee/trait-button-style-controls.php (modified) (1 diff)
-
tags/3.9.28/marquee-addons-for-elementor.php (modified) (2 diffs)
-
tags/3.9.28/readme.txt (modified) (2 diffs)
-
trunk/base.php (modified) (1 diff)
-
trunk/includes/widget.php (modified) (1 diff)
-
trunk/includes/widgets/traits/button-marquee/trait-button-style-controls.php (modified) (1 diff)
-
trunk/marquee-addons-for-elementor.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
marquee-addons-for-elementor/tags/3.9.28/base.php
r3470096 r3473408 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.2 7';10 const VERSION = '3.9.28'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/tags/3.9.28/includes/widget.php
r3470096 r3473408 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.2 7';13 const VERSION = '3.9.28'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 const MINIMUM_PHP_VERSION = '7.4'; -
marquee-addons-for-elementor/tags/3.9.28/includes/widgets/traits/button-marquee/trait-button-style-controls.php
r3461328 r3473408 53 53 'selectors' => [ 54 54 '{{WRAPPER}} .deensimc-button-marquee' => '{{VALUE}};', 55 ], 56 ] 57 ); 58 $this->add_responsive_control( 59 'deensimc_button_fixed_width_switch', 60 [ 61 'label' => esc_html__('Fixed width', 'marquee-addons-for-elementor'), 62 'type' => Controls_Manager::SWITCHER, 63 'label_on' => esc_html__('On', 'marquee-addons-for-elementor'), 64 'label_off' => esc_html__('Off', 'marquee-addons-for-elementor'), 65 'return_value' => 'yes', 66 'default' => '', 67 ] 68 ); 69 70 $this->add_responsive_control( 71 'deensimc_button_width', 72 [ 73 'label' => esc_html__('Width', 'marquee-addons-for-elementor'), 74 'type' => Controls_Manager::SLIDER, 75 'size_units' => ['%', 'px'], 76 'range' => [ 77 '%' => [ 78 'min' => 0, 79 'max' => 100, 80 'step' => 1, 81 ], 82 'px' => [ 83 'min' => 100, 84 'max' => 500, 85 'step' => 1, 86 ], 87 ], 88 'default' => [ 89 'unit' => 'px', 90 'size' => 150, 91 ], 92 'condition' => [ 93 'deensimc_button_fixed_width_switch' => 'yes', 94 ], 95 'selectors' => [ 96 '{{WRAPPER}} .deensimc-button' => 'width: {{SIZE}}{{UNIT}};', 97 '{{WRAPPER}} .deensimc-button-marquee' => 'width: {{SIZE}}{{UNIT}};', 55 98 ], 56 99 ] -
marquee-addons-for-elementor/tags/3.9.28/marquee-addons-for-elementor.php
r3470096 r3473408 4 4 * Plugin Name: Marquee Addons for Elementor - Essential Motion Widgets & Templates 5 5 * Description: Marquee Addons an Elementor addon to create smooth, endless marquee carousels, showcases images, logos, or content with dynamic movement to engage visitors. It also allows you to create image accordions, stacked sliders, and text marquees. 6 * Version: 3.9.2 76 * Version: 3.9.28 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 25 25 define('DEENSIMC_PATH', plugin_dir_path(__FILE__)); 26 26 define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/'); 27 define('DEENSIMC_VERSION', '3.9.2 7');27 define('DEENSIMC_VERSION', '3.9.28'); 28 28 29 29 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/tags/3.9.28/readme.txt
r3470096 r3473408 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.2 76 Stable tag: 3.9.28 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.28 - 2026-03-03 = 269 - New: Added button width control to set fixed button width. 270 268 271 = 3.9.27 - 2026-02-26 = 269 272 - New: Updated Product Carousel demo and documentation links. -
marquee-addons-for-elementor/trunk/base.php
r3470096 r3473408 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.2 7';10 const VERSION = '3.9.28'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/trunk/includes/widget.php
r3470096 r3473408 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.2 7';13 const VERSION = '3.9.28'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 const MINIMUM_PHP_VERSION = '7.4'; -
marquee-addons-for-elementor/trunk/includes/widgets/traits/button-marquee/trait-button-style-controls.php
r3461328 r3473408 53 53 'selectors' => [ 54 54 '{{WRAPPER}} .deensimc-button-marquee' => '{{VALUE}};', 55 ], 56 ] 57 ); 58 $this->add_responsive_control( 59 'deensimc_button_fixed_width_switch', 60 [ 61 'label' => esc_html__('Fixed width', 'marquee-addons-for-elementor'), 62 'type' => Controls_Manager::SWITCHER, 63 'label_on' => esc_html__('On', 'marquee-addons-for-elementor'), 64 'label_off' => esc_html__('Off', 'marquee-addons-for-elementor'), 65 'return_value' => 'yes', 66 'default' => '', 67 ] 68 ); 69 70 $this->add_responsive_control( 71 'deensimc_button_width', 72 [ 73 'label' => esc_html__('Width', 'marquee-addons-for-elementor'), 74 'type' => Controls_Manager::SLIDER, 75 'size_units' => ['%', 'px'], 76 'range' => [ 77 '%' => [ 78 'min' => 0, 79 'max' => 100, 80 'step' => 1, 81 ], 82 'px' => [ 83 'min' => 100, 84 'max' => 500, 85 'step' => 1, 86 ], 87 ], 88 'default' => [ 89 'unit' => 'px', 90 'size' => 150, 91 ], 92 'condition' => [ 93 'deensimc_button_fixed_width_switch' => 'yes', 94 ], 95 'selectors' => [ 96 '{{WRAPPER}} .deensimc-button' => 'width: {{SIZE}}{{UNIT}};', 97 '{{WRAPPER}} .deensimc-button-marquee' => 'width: {{SIZE}}{{UNIT}};', 55 98 ], 56 99 ] -
marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php
r3470096 r3473408 4 4 * Plugin Name: Marquee Addons for Elementor - Essential Motion Widgets & Templates 5 5 * Description: Marquee Addons an Elementor addon to create smooth, endless marquee carousels, showcases images, logos, or content with dynamic movement to engage visitors. It also allows you to create image accordions, stacked sliders, and text marquees. 6 * Version: 3.9.2 76 * Version: 3.9.28 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 25 25 define('DEENSIMC_PATH', plugin_dir_path(__FILE__)); 26 26 define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/'); 27 define('DEENSIMC_VERSION', '3.9.2 7');27 define('DEENSIMC_VERSION', '3.9.28'); 28 28 29 29 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/trunk/readme.txt
r3470096 r3473408 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.2 76 Stable tag: 3.9.28 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.28 - 2026-03-03 = 269 - New: Added button width control to set fixed button width. 270 268 271 = 3.9.27 - 2026-02-26 = 269 272 - New: Updated Product Carousel demo and documentation links.
Note: See TracChangeset
for help on using the changeset viewer.