Plugin Directory

Changeset 3473408


Ignore:
Timestamp:
03/03/2026 09:10:04 AM (4 weeks ago)
Author:
debuggersstudio
Message:

Update to version 3.9.28 from GitHub

Location:
marquee-addons-for-elementor
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • marquee-addons-for-elementor/tags/3.9.28/base.php

    r3470096 r3473408  
    88{
    99    private static $_instance = null;
    10     const VERSION = '3.9.27';
     10    const VERSION = '3.9.28';
    1111
    1212    public function __construct()
  • marquee-addons-for-elementor/tags/3.9.28/includes/widget.php

    r3470096 r3473408  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.27';
     13    const VERSION = '3.9.28';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    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  
    5353        'selectors' => [
    5454          '{{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}};',
    5598        ],
    5699      ]
  • marquee-addons-for-elementor/tags/3.9.28/marquee-addons-for-elementor.php

    r3470096 r3473408  
    44 * Plugin Name: Marquee Addons for Elementor - Essential Motion Widgets & Templates
    55 * 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.27
     6 * Version: 3.9.28
    77 * Requires at least: 5.8
    88 * Requires PHP: 7.4
     
    2525define('DEENSIMC_PATH', plugin_dir_path(__FILE__));
    2626define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/');
    27 define('DEENSIMC_VERSION', '3.9.27');
     27define('DEENSIMC_VERSION', '3.9.28');
    2828
    2929function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/tags/3.9.28/readme.txt

    r3470096 r3473408  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.27
     6Stable tag: 3.9.28
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.28 - 2026-03-03 =
     269- New: Added button width control to set fixed button width.
     270
    268271= 3.9.27 - 2026-02-26 =
    269272- New: Updated Product Carousel demo and documentation links.
  • marquee-addons-for-elementor/trunk/base.php

    r3470096 r3473408  
    88{
    99    private static $_instance = null;
    10     const VERSION = '3.9.27';
     10    const VERSION = '3.9.28';
    1111
    1212    public function __construct()
  • marquee-addons-for-elementor/trunk/includes/widget.php

    r3470096 r3473408  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.27';
     13    const VERSION = '3.9.28';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    const MINIMUM_PHP_VERSION = '7.4';
  • marquee-addons-for-elementor/trunk/includes/widgets/traits/button-marquee/trait-button-style-controls.php

    r3461328 r3473408  
    5353        'selectors' => [
    5454          '{{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}};',
    5598        ],
    5699      ]
  • marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php

    r3470096 r3473408  
    44 * Plugin Name: Marquee Addons for Elementor - Essential Motion Widgets & Templates
    55 * 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.27
     6 * Version: 3.9.28
    77 * Requires at least: 5.8
    88 * Requires PHP: 7.4
     
    2525define('DEENSIMC_PATH', plugin_dir_path(__FILE__));
    2626define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/');
    27 define('DEENSIMC_VERSION', '3.9.27');
     27define('DEENSIMC_VERSION', '3.9.28');
    2828
    2929function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/trunk/readme.txt

    r3470096 r3473408  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.27
     6Stable tag: 3.9.28
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.28 - 2026-03-03 =
     269- New: Added button width control to set fixed button width.
     270
    268271= 3.9.27 - 2026-02-26 =
    269272- New: Updated Product Carousel demo and documentation links.
Note: See TracChangeset for help on using the changeset viewer.