Changeset 3485466
- Timestamp:
- 03/18/2026 09:44:52 AM (12 days ago)
- Location:
- marquee-addons-for-elementor
- Files:
-
- 10 edited
- 1 copied
-
tags/3.9.32 (copied) (copied from marquee-addons-for-elementor/trunk)
-
tags/3.9.32/base.php (modified) (1 diff)
-
tags/3.9.32/includes/widget.php (modified) (1 diff)
-
tags/3.9.32/includes/widgets/traits/image-marquee/style-image-controls.php (modified) (1 diff)
-
tags/3.9.32/marquee-addons-for-elementor.php (modified) (2 diffs)
-
tags/3.9.32/readme.txt (modified) (2 diffs)
-
trunk/base.php (modified) (1 diff)
-
trunk/includes/widget.php (modified) (1 diff)
-
trunk/includes/widgets/traits/image-marquee/style-image-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.32/base.php
r3482954 r3485466 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 1';10 const VERSION = '3.9.32'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/tags/3.9.32/includes/widget.php
r3482954 r3485466 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 1';13 const VERSION = '3.9.32'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 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 19 19 'label' => esc_html__('Image', 'marquee-addons-for-elementor'), 20 20 '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 ],56 21 ] 57 22 ); -
marquee-addons-for-elementor/tags/3.9.32/marquee-addons-for-elementor.php
r3482954 r3485466 5 5 * Plugin URI: https://marqueeaddons.com/ 6 6 * 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.3 17 * Version: 3.9.32 8 8 * Requires at least: 5.8 9 9 * Requires PHP: 7.4 … … 26 26 define('DEENSIMC_PATH', plugin_dir_path(__FILE__)); 27 27 define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/'); 28 define('DEENSIMC_VERSION', '3.9.3 1');28 define('DEENSIMC_VERSION', '3.9.32'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/tags/3.9.32/readme.txt
r3482954 r3485466 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 16 Stable tag: 3.9.32 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.32 - 2026-03-18 = 269 - Tweak: Removed unused control from the Image Marquee widget. 270 268 271 = 3.9.31 - 2026-03-15 = 269 272 - New: Added X and Y offset controls for text marquee icons. -
marquee-addons-for-elementor/trunk/base.php
r3482954 r3485466 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 1';10 const VERSION = '3.9.32'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/trunk/includes/widget.php
r3482954 r3485466 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 1';13 const VERSION = '3.9.32'; 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/image-marquee/style-image-controls.php
r3420892 r3485466 19 19 'label' => esc_html__('Image', 'marquee-addons-for-elementor'), 20 20 '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 ],56 21 ] 57 22 ); -
marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php
r3482954 r3485466 5 5 * Plugin URI: https://marqueeaddons.com/ 6 6 * 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.3 17 * Version: 3.9.32 8 8 * Requires at least: 5.8 9 9 * Requires PHP: 7.4 … … 26 26 define('DEENSIMC_PATH', plugin_dir_path(__FILE__)); 27 27 define('DEENSIMC_ASSETS_URL', DEENSIMC_URL . 'assets/'); 28 define('DEENSIMC_VERSION', '3.9.3 1');28 define('DEENSIMC_VERSION', '3.9.32'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/trunk/readme.txt
r3482954 r3485466 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 16 Stable tag: 3.9.32 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.32 - 2026-03-18 = 269 - Tweak: Removed unused control from the Image Marquee widget. 270 268 271 = 3.9.31 - 2026-03-15 = 269 272 - New: Added X and Y offset controls for text marquee icons.
Note: See TracChangeset
for help on using the changeset viewer.