Changeset 3482954
- Timestamp:
- 03/15/2026 08:32:04 AM (2 weeks ago)
- Location:
- marquee-addons-for-elementor
- Files:
-
- 10 edited
- 1 copied
-
tags/3.9.31 (copied) (copied from marquee-addons-for-elementor/trunk)
-
tags/3.9.31/base.php (modified) (1 diff)
-
tags/3.9.31/includes/widget.php (modified) (1 diff)
-
tags/3.9.31/includes/widgets/traits/text-marquee/style-text-contents.php (modified) (2 diffs)
-
tags/3.9.31/marquee-addons-for-elementor.php (modified) (2 diffs)
-
tags/3.9.31/readme.txt (modified) (2 diffs)
-
trunk/base.php (modified) (1 diff)
-
trunk/includes/widget.php (modified) (1 diff)
-
trunk/includes/widgets/traits/text-marquee/style-text-contents.php (modified) (2 diffs)
-
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.31/base.php
r3481024 r3482954 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 0';10 const VERSION = '3.9.31'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/tags/3.9.31/includes/widget.php
r3481024 r3482954 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 0';13 const VERSION = '3.9.31'; 14 14 const MINIMUM_ELEMENTOR_VERSION = '3.5.0'; 15 15 const MINIMUM_PHP_VERSION = '7.4'; -
marquee-addons-for-elementor/tags/3.9.31/includes/widgets/traits/text-marquee/style-text-contents.php
r3447763 r3482954 159 159 'deensimc_icon_vertical_alignment', 160 160 [ 161 'label' => esc_html__(' VerticalAlignment', 'marquee-addons-for-elementor'),161 'label' => esc_html__('Icon Alignment', 'marquee-addons-for-elementor'), 162 162 'type' => Controls_Manager::CHOOSE, 163 163 'options' => [ … … 181 181 '{{WRAPPER}} .deensimc-text-wrapper i' => 'align-self: {{VALUE}}; flex-shrink: 0;', 182 182 ], 183 'condition' => [ 184 'deensimc_marquee_vertical_orientation' => 'yes', 185 ], 186 ] 187 ); 183 ] 184 ); 185 186 $this->add_responsive_control( 187 'deensimc_text_icon_translate_x', 188 [ 189 'label' => esc_html__('Offset X', 'marquee-addons-for-elementor'), 190 'type' => Controls_Manager::SLIDER, 191 'size_units' => ['px'], 192 'range' => [ 193 'px' => [ 194 'min' => -20, 195 'max' => 20, 196 'step' => 1, 197 ], 198 ], 199 'selectors' => [ 200 '{{WRAPPER}} .deensimc-text-wrapper svg' => '--deensimc-icon-translate-x: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 201 '{{WRAPPER}} .deensimc-text-wrapper i' => '--deensimc-icon-translate-x: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 202 ], 203 ] 204 ); 205 206 $this->add_responsive_control( 207 'deensimc_text_icon_translate_y', 208 [ 209 'label' => esc_html__('Offset Y', 'marquee-addons-for-elementor'), 210 'type' => Controls_Manager::SLIDER, 211 'size_units' => ['px'], 212 'range' => [ 213 'px' => [ 214 'min' => -20, 215 'max' => 20, 216 'step' => 1, 217 ], 218 ], 219 'selectors' => [ 220 '{{WRAPPER}} .deensimc-text-wrapper svg' => '--deensimc-icon-translate-y: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 221 '{{WRAPPER}} .deensimc-text-wrapper i' => '--deensimc-icon-translate-y: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 222 ], 223 ] 224 ); 225 188 226 // animation 189 227 $this->add_control( -
marquee-addons-for-elementor/tags/3.9.31/marquee-addons-for-elementor.php
r3481024 r3482954 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 07 * Version: 3.9.31 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 0');28 define('DEENSIMC_VERSION', '3.9.31'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/tags/3.9.31/readme.txt
r3481024 r3482954 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 06 Stable tag: 3.9.31 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.31 - 2026-03-15 = 269 - New: Added X and Y offset controls for text marquee icons. 270 - Tweak: Improved icon alignment control naming. 271 - Tweak: Enabled icon alignment control for all marquee orientations. 272 268 273 = 3.9.30 - 2026-03-12 = 269 274 - New: Added fallback notice when JavaScript is disabled. -
marquee-addons-for-elementor/trunk/base.php
r3481024 r3482954 8 8 { 9 9 private static $_instance = null; 10 const VERSION = '3.9.3 0';10 const VERSION = '3.9.31'; 11 11 12 12 public function __construct() -
marquee-addons-for-elementor/trunk/includes/widget.php
r3481024 r3482954 11 11 use Deensimcpro_Promo; 12 12 13 const VERSION = '3.9.3 0';13 const VERSION = '3.9.31'; 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/text-marquee/style-text-contents.php
r3447763 r3482954 159 159 'deensimc_icon_vertical_alignment', 160 160 [ 161 'label' => esc_html__(' VerticalAlignment', 'marquee-addons-for-elementor'),161 'label' => esc_html__('Icon Alignment', 'marquee-addons-for-elementor'), 162 162 'type' => Controls_Manager::CHOOSE, 163 163 'options' => [ … … 181 181 '{{WRAPPER}} .deensimc-text-wrapper i' => 'align-self: {{VALUE}}; flex-shrink: 0;', 182 182 ], 183 'condition' => [ 184 'deensimc_marquee_vertical_orientation' => 'yes', 185 ], 186 ] 187 ); 183 ] 184 ); 185 186 $this->add_responsive_control( 187 'deensimc_text_icon_translate_x', 188 [ 189 'label' => esc_html__('Offset X', 'marquee-addons-for-elementor'), 190 'type' => Controls_Manager::SLIDER, 191 'size_units' => ['px'], 192 'range' => [ 193 'px' => [ 194 'min' => -20, 195 'max' => 20, 196 'step' => 1, 197 ], 198 ], 199 'selectors' => [ 200 '{{WRAPPER}} .deensimc-text-wrapper svg' => '--deensimc-icon-translate-x: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 201 '{{WRAPPER}} .deensimc-text-wrapper i' => '--deensimc-icon-translate-x: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 202 ], 203 ] 204 ); 205 206 $this->add_responsive_control( 207 'deensimc_text_icon_translate_y', 208 [ 209 'label' => esc_html__('Offset Y', 'marquee-addons-for-elementor'), 210 'type' => Controls_Manager::SLIDER, 211 'size_units' => ['px'], 212 'range' => [ 213 'px' => [ 214 'min' => -20, 215 'max' => 20, 216 'step' => 1, 217 ], 218 ], 219 'selectors' => [ 220 '{{WRAPPER}} .deensimc-text-wrapper svg' => '--deensimc-icon-translate-y: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 221 '{{WRAPPER}} .deensimc-text-wrapper i' => '--deensimc-icon-translate-y: {{SIZE}}{{UNIT}}; transform: translate(var(--deensimc-icon-translate-x, 0), var(--deensimc-icon-translate-y, 0));', 222 ], 223 ] 224 ); 225 188 226 // animation 189 227 $this->add_control( -
marquee-addons-for-elementor/trunk/marquee-addons-for-elementor.php
r3481024 r3482954 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 07 * Version: 3.9.31 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 0');28 define('DEENSIMC_VERSION', '3.9.31'); 29 29 30 30 function deensimc_load_plugin_data(): void -
marquee-addons-for-elementor/trunk/readme.txt
r3481024 r3482954 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 3.9.3 06 Stable tag: 3.9.31 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 266 266 == Changelog == 267 267 268 = 3.9.31 - 2026-03-15 = 269 - New: Added X and Y offset controls for text marquee icons. 270 - Tweak: Improved icon alignment control naming. 271 - Tweak: Enabled icon alignment control for all marquee orientations. 272 268 273 = 3.9.30 - 2026-03-12 = 269 274 - New: Added fallback notice when JavaScript is disabled.
Note: See TracChangeset
for help on using the changeset viewer.