Plugin Directory

Changeset 3485466


Ignore:
Timestamp:
03/18/2026 09:44:52 AM (12 days ago)
Author:
debuggersstudio
Message:

Update to version 3.9.32 from GitHub

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

Legend:

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

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

    r3482954 r3485466  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.31';
     13    const VERSION = '3.9.32';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    const MINIMUM_PHP_VERSION = '7.4';
  • marquee-addons-for-elementor/tags/3.9.32/includes/widgets/traits/image-marquee/style-image-controls.php

    r3420892 r3485466  
    1919                'label' => esc_html__('Image', 'marquee-addons-for-elementor'),
    2020                'tab'   => Controls_Manager::TAB_STYLE,
    21             ]
    22         );
    23 
    24         $this->add_responsive_control(
    25             'deensimc_horizontal_align',
    26             [
    27                 'label' => esc_html__('Alignment', 'marquee-addons-for-elementor'),
    28                 'type' =>  Controls_Manager::CHOOSE,
    29                 'options' => [
    30                     'left' => [
    31                         'title' => esc_html__('Left', 'marquee-addons-for-elementor'),
    32                         'icon' => 'eicon-h-align-left',
    33                     ],
    34                     'center' => [
    35                         'title' => esc_html__('Center', 'marquee-addons-for-elementor'),
    36                         'icon' => 'eicon-h-align-center',
    37                     ],
    38                     'right' => [
    39                         'title' => esc_html__('Right', 'marquee-addons-for-elementor'),
    40                         'icon' => 'eicon-h-align-right',
    41                     ],
    42                 ],
    43                 'default' => 'center',
    44                 'toggle' => true,
    45                 'selectors_dictionary' => [
    46                     'left' => 'margin-left: 0; margin-right: auto;',
    47                     'center' => 'margin-left: auto; margin-right: auto;',
    48                     'right' => 'margin-left: auto; margin-right: 0;',
    49                 ],
    50                 'selectors' => [
    51                     '{{WRAPPER}} .deensimc-image-marquee .deensimc-marquee-track-wrapper' => '{{VALUE}};',
    52                 ],
    53                 'condition' => [
    54                     'deensimc_marquee_vertical_orientation' => 'yes',
    55                 ],
    5621            ]
    5722        );
  • marquee-addons-for-elementor/tags/3.9.32/marquee-addons-for-elementor.php

    r3482954 r3485466  
    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.31
     7 * Version: 3.9.32
    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.31');
     28define('DEENSIMC_VERSION', '3.9.32');
    2929
    3030function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/tags/3.9.32/readme.txt

    r3482954 r3485466  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.31
     6Stable tag: 3.9.32
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.32 - 2026-03-18 =
     269- Tweak: Removed unused control from the Image Marquee widget.
     270
    268271= 3.9.31 - 2026-03-15 =
    269272- New: Added X and Y offset controls for text marquee icons.
  • marquee-addons-for-elementor/trunk/base.php

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

    r3482954 r3485466  
    1111    use Deensimcpro_Promo;
    1212
    13     const VERSION = '3.9.31';
     13    const VERSION = '3.9.32';
    1414    const MINIMUM_ELEMENTOR_VERSION = '3.5.0';
    1515    const MINIMUM_PHP_VERSION = '7.4';
  • marquee-addons-for-elementor/trunk/includes/widgets/traits/image-marquee/style-image-controls.php

    r3420892 r3485466  
    1919                'label' => esc_html__('Image', 'marquee-addons-for-elementor'),
    2020                'tab'   => Controls_Manager::TAB_STYLE,
    21             ]
    22         );
    23 
    24         $this->add_responsive_control(
    25             'deensimc_horizontal_align',
    26             [
    27                 'label' => esc_html__('Alignment', 'marquee-addons-for-elementor'),
    28                 'type' =>  Controls_Manager::CHOOSE,
    29                 'options' => [
    30                     'left' => [
    31                         'title' => esc_html__('Left', 'marquee-addons-for-elementor'),
    32                         'icon' => 'eicon-h-align-left',
    33                     ],
    34                     'center' => [
    35                         'title' => esc_html__('Center', 'marquee-addons-for-elementor'),
    36                         'icon' => 'eicon-h-align-center',
    37                     ],
    38                     'right' => [
    39                         'title' => esc_html__('Right', 'marquee-addons-for-elementor'),
    40                         'icon' => 'eicon-h-align-right',
    41                     ],
    42                 ],
    43                 'default' => 'center',
    44                 'toggle' => true,
    45                 'selectors_dictionary' => [
    46                     'left' => 'margin-left: 0; margin-right: auto;',
    47                     'center' => 'margin-left: auto; margin-right: auto;',
    48                     'right' => 'margin-left: auto; margin-right: 0;',
    49                 ],
    50                 'selectors' => [
    51                     '{{WRAPPER}} .deensimc-image-marquee .deensimc-marquee-track-wrapper' => '{{VALUE}};',
    52                 ],
    53                 'condition' => [
    54                     'deensimc_marquee_vertical_orientation' => 'yes',
    55                 ],
    5621            ]
    5722        );
  • marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php

    r3482954 r3485466  
    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.31
     7 * Version: 3.9.32
    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.31');
     28define('DEENSIMC_VERSION', '3.9.32');
    2929
    3030function deensimc_load_plugin_data(): void
  • marquee-addons-for-elementor/trunk/readme.txt

    r3482954 r3485466  
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 3.9.31
     6Stable tag: 3.9.32
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    266266== Changelog ==
    267267
     268= 3.9.32 - 2026-03-18 =
     269- Tweak: Removed unused control from the Image Marquee widget.
     270
    268271= 3.9.31 - 2026-03-15 =
    269272- New: Added X and Y offset controls for text marquee icons.
Note: See TracChangeset for help on using the changeset viewer.