Plugin Directory

Changeset 3460881


Ignore:
Timestamp:
02/13/2026 03:43:05 PM (6 days ago)
Author:
azplugins
Message:

Update to version 3.0.8 from GitHub

Location:
az-video-and-audio-player-addon-for-elementor
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.8/includes/elementor/widgets/audio-player.php

    r3430080 r3460881  
    566566            );
    567567        $this->end_controls_section(); // Style tab setting_icon_section end
     568
     569        $this->start_controls_section(
     570            'styling_download_icon_section',
     571            [
     572                'label'     => esc_html__( 'Download Button', 'vapfem' ),
     573                'tab'       => \Elementor\Controls_Manager::TAB_STYLE,
     574            ]
     575        );
     576
     577            $this->add_control(
     578                'download_icon_bg_color',
     579                [
     580                    'label' => esc_html__( 'BG Color', 'vapfem' ),
     581                    'type' => \Elementor\Controls_Manager::COLOR,
     582                    'selectors' => [
     583                        '{{WRAPPER}} .plyr__control[data-plyr="download"]' => 'background-color:{{VALUE}}',
     584                    ],
     585                ]
     586            );
     587
     588            $this->add_control(
     589                'download_icon_color',
     590                [
     591                    'label' => esc_html__( 'Icon Color', 'vapfem' ),
     592                    'type' => \Elementor\Controls_Manager::COLOR,
     593                    'selectors' => [
     594                        '{{WRAPPER}} .plyr__control[data-plyr="download"] svg' => 'color:{{VALUE}}',
     595                    ],
     596                ]
     597            );
     598
     599            $this->add_control(
     600                'download_icon_hover_bg_color',
     601                [
     602                    'label' => esc_html__( 'Hover BG Color', 'vapfem' ),
     603                    'type' => \Elementor\Controls_Manager::COLOR,
     604                    'selectors' => [
     605                        '{{WRAPPER}} .plyr__control[data-plyr="download"]:hover' => 'background-color:{{VALUE}}',
     606                    ],
     607                ]
     608            );
     609
     610            $this->add_control(
     611                'download_icon_hover_color',
     612                [
     613                    'label' => esc_html__( 'Hover Icon Color', 'vapfem' ),
     614                    'type' => \Elementor\Controls_Manager::COLOR,
     615                    'selectors' => [
     616                        '{{WRAPPER}} .plyr__control[data-plyr="download"]:hover svg' => 'color:{{VALUE}}',
     617                    ],
     618                ]
     619            );
     620
     621            $this->add_group_control(
     622                \Elementor\Group_Control_Border::get_type(),
     623                [
     624                    'name' => 'download_icon_border',
     625                    'label' => esc_html__( 'Border', 'vapfem' ),
     626                    'selector' => '{{WRAPPER}} .plyr__control[data-plyr="download"]'
     627                ]
     628            );
     629        $this->end_controls_section(); // Style tab download_icon_section end
    568630
    569631        $this->start_controls_section(
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.8/plugin-main.php

    r3433502 r3460881  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 3.0.7
     6Version: 3.0.8
    77Author: LeanPlugins
    88Author URI: https://leanplugins.com/
     
    1919// Both version may have this constant, so check first
    2020if (!defined('LEANPL_VERSION')) {
    21     define('LEANPL_VERSION', '3.0.7');
     21    define('LEANPL_VERSION', '3.0.8');
    2222    define('LEANPL_URI', plugins_url('', __FILE__));
    2323    define('LEANPL_DIR', dirname(__FILE__));
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.8/readme.txt

    r3433502 r3460881  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.0.7
     7Stable tag: 3.0.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    100100
    101101== Changelog ==
     102= Version: 3.0.8 =
     103Added: Download button styling option to the audio player elementor widget
     104
    102105= Version: 3.0.7 =
    103106Fixed: Play Large button were not showing for very newly created video player
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/elementor/widgets/audio-player.php

    r3430080 r3460881  
    566566            );
    567567        $this->end_controls_section(); // Style tab setting_icon_section end
     568
     569        $this->start_controls_section(
     570            'styling_download_icon_section',
     571            [
     572                'label'     => esc_html__( 'Download Button', 'vapfem' ),
     573                'tab'       => \Elementor\Controls_Manager::TAB_STYLE,
     574            ]
     575        );
     576
     577            $this->add_control(
     578                'download_icon_bg_color',
     579                [
     580                    'label' => esc_html__( 'BG Color', 'vapfem' ),
     581                    'type' => \Elementor\Controls_Manager::COLOR,
     582                    'selectors' => [
     583                        '{{WRAPPER}} .plyr__control[data-plyr="download"]' => 'background-color:{{VALUE}}',
     584                    ],
     585                ]
     586            );
     587
     588            $this->add_control(
     589                'download_icon_color',
     590                [
     591                    'label' => esc_html__( 'Icon Color', 'vapfem' ),
     592                    'type' => \Elementor\Controls_Manager::COLOR,
     593                    'selectors' => [
     594                        '{{WRAPPER}} .plyr__control[data-plyr="download"] svg' => 'color:{{VALUE}}',
     595                    ],
     596                ]
     597            );
     598
     599            $this->add_control(
     600                'download_icon_hover_bg_color',
     601                [
     602                    'label' => esc_html__( 'Hover BG Color', 'vapfem' ),
     603                    'type' => \Elementor\Controls_Manager::COLOR,
     604                    'selectors' => [
     605                        '{{WRAPPER}} .plyr__control[data-plyr="download"]:hover' => 'background-color:{{VALUE}}',
     606                    ],
     607                ]
     608            );
     609
     610            $this->add_control(
     611                'download_icon_hover_color',
     612                [
     613                    'label' => esc_html__( 'Hover Icon Color', 'vapfem' ),
     614                    'type' => \Elementor\Controls_Manager::COLOR,
     615                    'selectors' => [
     616                        '{{WRAPPER}} .plyr__control[data-plyr="download"]:hover svg' => 'color:{{VALUE}}',
     617                    ],
     618                ]
     619            );
     620
     621            $this->add_group_control(
     622                \Elementor\Group_Control_Border::get_type(),
     623                [
     624                    'name' => 'download_icon_border',
     625                    'label' => esc_html__( 'Border', 'vapfem' ),
     626                    'selector' => '{{WRAPPER}} .plyr__control[data-plyr="download"]'
     627                ]
     628            );
     629        $this->end_controls_section(); // Style tab download_icon_section end
    568630
    569631        $this->start_controls_section(
  • az-video-and-audio-player-addon-for-elementor/trunk/plugin-main.php

    r3433502 r3460881  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 3.0.7
     6Version: 3.0.8
    77Author: LeanPlugins
    88Author URI: https://leanplugins.com/
     
    1919// Both version may have this constant, so check first
    2020if (!defined('LEANPL_VERSION')) {
    21     define('LEANPL_VERSION', '3.0.7');
     21    define('LEANPL_VERSION', '3.0.8');
    2222    define('LEANPL_URI', plugins_url('', __FILE__));
    2323    define('LEANPL_DIR', dirname(__FILE__));
  • az-video-and-audio-player-addon-for-elementor/trunk/readme.txt

    r3433502 r3460881  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.0.7
     7Stable tag: 3.0.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    100100
    101101== Changelog ==
     102= Version: 3.0.8 =
     103Added: Download button styling option to the audio player elementor widget
     104
    102105= Version: 3.0.7 =
    103106Fixed: Play Large button were not showing for very newly created video player
Note: See TracChangeset for help on using the changeset viewer.