Plugin Directory

Changeset 3494401


Ignore:
Timestamp:
03/30/2026 09:55:17 AM (12 hours ago)
Author:
debuggersstudio
Message:

Update to version 3.9.35 from GitHub

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

Legend:

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

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

    r3493292 r3494401  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.34';
     13    const VERSION = '3.9.35';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    const MINIMUM_PHP_VERSION = '7.4';
  • marquee-addons-for-elementor/tags/3.9.35/includes/widgets/class-deensimc-video-marquee.php

    r3420892 r3494401  
    119119        );
    120120
    121         $this->add_responsive_control(
    122             'deensimc_video_marquee_horizontal_align',
    123             [
    124                 'label' => esc_html__('Alignment', 'marquee-addons-for-elementor'),
    125                 'type' =>  Controls_Manager::CHOOSE,
    126                 'options' => [
    127                     'left' => [
    128                         'title' => esc_html__('Left', 'marquee-addons-for-elementor'),
    129                         'icon' => 'eicon-h-align-left',
    130                     ],
    131                     'center' => [
    132                         'title' => esc_html__('Center', 'marquee-addons-for-elementor'),
    133                         'icon' => 'eicon-h-align-center',
    134                     ],
    135                     'right' => [
    136                         'title' => esc_html__('Right', 'marquee-addons-for-elementor'),
    137                         'icon' => 'eicon-h-align-right',
    138                     ],
    139                 ],
    140                 'default' => 'center',
    141                 'toggle' => true,
    142                 'selectors_dictionary' => [
    143                     'left' => 'margin-left: 0; margin-right: auto;',
    144                     'center' => 'margin-left: auto; margin-right: auto;',
    145                     'right' => 'margin-left: auto; margin-right: 0;',
    146                 ],
    147                 'selectors' => [
    148                     '{{WRAPPER}} .deensimc-video-marquee .deensimc-marquee-track-wrapper' => '{{VALUE}};',
    149                 ],
    150                 'condition' => [
    151                     'deensimc_marquee_vertical_orientation' => 'yes',
    152                 ],
    153             ]
    154         );
    155 
    156121        $this->register_gap_control();
    157122
  • marquee-addons-for-elementor/tags/3.9.35/marquee-addons-for-elementor.php

    r3493292 r3494401  
    55 * Plugin URI: https://marqueeaddons.com/
    66 * 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.
    7  * Version: 3.9.34
     7 * Version: 3.9.35
    88 * Requires at least: 5.8
    99 * Requires PHP: 7.4
     
    2626define('DEENSIMC_PATH', plugin_dir_path(__FILE__));
    2727define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/');
    28 define('DEENSIMC_VERSION', '3.9.34');
     28define('DEENSIMC_VERSION', '3.9.35');
    2929
    3030function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/tags/3.9.35/readme.txt

    r3493292 r3494401  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.34
     6Stable tag: 3.9.35
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.35 - 2026-03-30 =
     269- Tweak: Removed unused control from the Video Marquee widget.
     270
    268271= 3.9.34 - 2026-03-28 =
    269272- Tweak: Removed unused control from the Testimonial Marquee widget.
  • marquee-addons-for-elementor/trunk/base.php

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

    r3493292 r3494401  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.34';
     13    const VERSION = '3.9.35';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    const MINIMUM_PHP_VERSION = '7.4';
  • marquee-addons-for-elementor/trunk/includes/widgets/class-deensimc-video-marquee.php

    r3420892 r3494401  
    119119        );
    120120
    121         $this->add_responsive_control(
    122             'deensimc_video_marquee_horizontal_align',
    123             [
    124                 'label' => esc_html__('Alignment', 'marquee-addons-for-elementor'),
    125                 'type' =>  Controls_Manager::CHOOSE,
    126                 'options' => [
    127                     'left' => [
    128                         'title' => esc_html__('Left', 'marquee-addons-for-elementor'),
    129                         'icon' => 'eicon-h-align-left',
    130                     ],
    131                     'center' => [
    132                         'title' => esc_html__('Center', 'marquee-addons-for-elementor'),
    133                         'icon' => 'eicon-h-align-center',
    134                     ],
    135                     'right' => [
    136                         'title' => esc_html__('Right', 'marquee-addons-for-elementor'),
    137                         'icon' => 'eicon-h-align-right',
    138                     ],
    139                 ],
    140                 'default' => 'center',
    141                 'toggle' => true,
    142                 'selectors_dictionary' => [
    143                     'left' => 'margin-left: 0; margin-right: auto;',
    144                     'center' => 'margin-left: auto; margin-right: auto;',
    145                     'right' => 'margin-left: auto; margin-right: 0;',
    146                 ],
    147                 'selectors' => [
    148                     '{{WRAPPER}} .deensimc-video-marquee .deensimc-marquee-track-wrapper' => '{{VALUE}};',
    149                 ],
    150                 'condition' => [
    151                     'deensimc_marquee_vertical_orientation' => 'yes',
    152                 ],
    153             ]
    154         );
    155 
    156121        $this->register_gap_control();
    157122
  • marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php

    r3493292 r3494401  
    55 * Plugin URI: https://marqueeaddons.com/
    66 * 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.
    7  * Version: 3.9.34
     7 * Version: 3.9.35
    88 * Requires at least: 5.8
    99 * Requires PHP: 7.4
     
    2626define('DEENSIMC_PATH', plugin_dir_path(__FILE__));
    2727define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/');
    28 define('DEENSIMC_VERSION', '3.9.34');
     28define('DEENSIMC_VERSION', '3.9.35');
    2929
    3030function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/trunk/readme.txt

    r3493292 r3494401  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.34
     6Stable tag: 3.9.35
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.35 - 2026-03-30 =
     269- Tweak: Removed unused control from the Video Marquee widget.
     270
    268271= 3.9.34 - 2026-03-28 =
    269272- Tweak: Removed unused control from the Testimonial Marquee widget.
Note: See TracChangeset for help on using the changeset viewer.