Changeset 3494401
- Timestamp:
- 03/30/2026 09:55:17 AM (12 hours ago)
- Location:
- marquee-addons-for-elementor
- Files:
-
- 10 edited
- 1 copied
-
tags/3.9.35 (copied) (copied from marquee-addons-for-elementor/trunk)
-
tags/3.9.35/base.php (modified) (1 diff)
-
tags/3.9.35/includes/widget.php (modified) (1 diff)
-
tags/3.9.35/includes/widgets/class-deensimc-video-marquee.php (modified) (1 diff)
-
tags/3.9.35/marquee-addons-for-elementor.php (modified) (2 diffs)
-
tags/3.9.35/readme.txt (modified) (2 diffs)
-
trunk/base.php (modified) (1 diff)
-
trunk/includes/widget.php (modified) (1 diff)
-
trunk/includes/widgets/class-deensimc-video-marquee.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.35/base.php
r3493292 r3494401 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 4';10 const VERSION = '3.9.35'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/tags/3.9.35/includes/widget.php
r3493292 r3494401 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 4';13 const VERSION = '3.9.35'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 const MINIMUM_PHP_VERSION = '7.4'; -
marquee-addons-for-elementor/tags/3.9.35/includes/widgets/class-deensimc-video-marquee.php
r3420892 r3494401 119 119 ); 120 120 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 156 121 $this->register_gap_control(); 157 122 -
marquee-addons-for-elementor/tags/3.9.35/marquee-addons-for-elementor.php
r3493292 r3494401 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 47 * Version: 3.9.35 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 4');28 define('DEENSIMC_VERSION', '3.9.35'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/tags/3.9.35/readme.txt
r3493292 r3494401 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 46 Stable tag: 3.9.35 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.35 - 2026-03-30 = 269 - Tweak: Removed unused control from the Video Marquee widget. 270 268 271 = 3.9.34 - 2026-03-28 = 269 272 - Tweak: Removed unused control from the Testimonial Marquee widget. -
marquee-addons-for-elementor/trunk/base.php
r3493292 r3494401 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 4';10 const VERSION = '3.9.35'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/trunk/includes/widget.php
r3493292 r3494401 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 4';13 const VERSION = '3.9.35'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 const MINIMUM_PHP_VERSION = '7.4'; -
marquee-addons-for-elementor/trunk/includes/widgets/class-deensimc-video-marquee.php
r3420892 r3494401 119 119 ); 120 120 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 156 121 $this->register_gap_control(); 157 122 -
marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php
r3493292 r3494401 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 47 * Version: 3.9.35 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 4');28 define('DEENSIMC_VERSION', '3.9.35'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/trunk/readme.txt
r3493292 r3494401 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 46 Stable tag: 3.9.35 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.35 - 2026-03-30 = 269 - Tweak: Removed unused control from the Video Marquee widget. 270 268 271 = 3.9.34 - 2026-03-28 = 269 272 - Tweak: Removed unused control from the Testimonial Marquee widget.
Note: See TracChangeset
for help on using the changeset viewer.