Plugin Directory

Changeset 3392494


Ignore:
Timestamp:
11/09/2025 06:48:36 PM (5 months ago)
Author:
azplugins
Message:

Update to version 2.1.5 from GitHub

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

Legend:

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

    r3365547 r3392494  
    11<?php
    22use VAPFEM\Player_Renderer;
     3use Elementor\Modules\DynamicTags\Module as TagsModule;
    34
    45class VAPFEM_Audio_Player extends Elementor\Widget_Base {
     
    7576                'dynamic' => [
    7677                    'active' => true,
     78                    'categories' => [
     79                        TagsModule::URL_CATEGORY,
     80                    ],
    7781                ],
    7882                'condition' => [
  • az-video-and-audio-player-addon-for-elementor/tags/2.1.5/includes/widgets/video-player.php

    r3365547 r3392494  
    6262                'dynamic' => [
    6363                    'active' => true,
     64                    'categories' => [
     65                        TagsModule::TEXT_CATEGORY,
     66                    ],
    6467                ],
    6568                'condition' => [
     
    8083                'dynamic' => [
    8184                    'active' => true,
     85                    'categories' => [
     86                        TagsModule::TEXT_CATEGORY,
     87                    ],
    8288                ],
    8389                'condition' => [
     
    107113                'default' => [
    108114                    'url' => \Elementor\Utils::get_placeholder_image_src(),
     115                ],
     116                'dynamic' => [
     117                    'active' => true,
     118                    'categories' => [
     119                        TagsModule::MEDIA_CATEGORY,
     120                    ],
    109121                ],
    110122                'condition' => [
     
    158170                    'is_external' => false,
    159171                    'nofollow' => false,
     172                ],
     173                'dynamic' => [
     174                    'active' => true,
     175                    'categories' => [
     176                        TagsModule::URL_CATEGORY,
     177                    ],
    160178                ],
    161179                'condition' => [
  • az-video-and-audio-player-addon-for-elementor/tags/2.1.5/plugin-main.php

    r3381618 r3392494  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 2.1.4
    7 Author: AZ Plugins
     6Version: 2.1.5
     7Author: LeanPlugins
    88Author URI: https://leanplugins.com/
    99License: GPLv2
     
    2020 * Define path
    2121 */
    22 define( 'VAPFEM_VERSION', '2.1.4' );
     22define( 'VAPFEM_VERSION', '2.1.5' );
    2323define( 'VAPFEM_URI', plugins_url('', __FILE__) );
    2424define( 'VAPFEM_DIR', dirname( __FILE__ ) );
  • az-video-and-audio-player-addon-for-elementor/tags/2.1.5/readme.txt

    r3381618 r3392494  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 2.1.4
     7Stable tag: 2.1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76= Version: 2.1.5 =
     77* Added: Dynamic tags support for both audio and video player
     78
    7679= Version: 2.1.4 =
    7780* Fixed: Flush of Unstyled Content (FOUC) issue on admin pages
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/widgets/audio-player.php

    r3365547 r3392494  
    11<?php
    22use VAPFEM\Player_Renderer;
     3use Elementor\Modules\DynamicTags\Module as TagsModule;
    34
    45class VAPFEM_Audio_Player extends Elementor\Widget_Base {
     
    7576                'dynamic' => [
    7677                    'active' => true,
     78                    'categories' => [
     79                        TagsModule::URL_CATEGORY,
     80                    ],
    7781                ],
    7882                'condition' => [
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/widgets/video-player.php

    r3365547 r3392494  
    6262                'dynamic' => [
    6363                    'active' => true,
     64                    'categories' => [
     65                        TagsModule::TEXT_CATEGORY,
     66                    ],
    6467                ],
    6568                'condition' => [
     
    8083                'dynamic' => [
    8184                    'active' => true,
     85                    'categories' => [
     86                        TagsModule::TEXT_CATEGORY,
     87                    ],
    8288                ],
    8389                'condition' => [
     
    107113                'default' => [
    108114                    'url' => \Elementor\Utils::get_placeholder_image_src(),
     115                ],
     116                'dynamic' => [
     117                    'active' => true,
     118                    'categories' => [
     119                        TagsModule::MEDIA_CATEGORY,
     120                    ],
    109121                ],
    110122                'condition' => [
     
    158170                    'is_external' => false,
    159171                    'nofollow' => false,
     172                ],
     173                'dynamic' => [
     174                    'active' => true,
     175                    'categories' => [
     176                        TagsModule::URL_CATEGORY,
     177                    ],
    160178                ],
    161179                'condition' => [
  • az-video-and-audio-player-addon-for-elementor/trunk/plugin-main.php

    r3381618 r3392494  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 2.1.4
    7 Author: AZ Plugins
     6Version: 2.1.5
     7Author: LeanPlugins
    88Author URI: https://leanplugins.com/
    99License: GPLv2
     
    2020 * Define path
    2121 */
    22 define( 'VAPFEM_VERSION', '2.1.4' );
     22define( 'VAPFEM_VERSION', '2.1.5' );
    2323define( 'VAPFEM_URI', plugins_url('', __FILE__) );
    2424define( 'VAPFEM_DIR', dirname( __FILE__ ) );
  • az-video-and-audio-player-addon-for-elementor/trunk/readme.txt

    r3381618 r3392494  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 2.1.4
     7Stable tag: 2.1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76= Version: 2.1.5 =
     77* Added: Dynamic tags support for both audio and video player
     78
    7679= Version: 2.1.4 =
    7780* Fixed: Flush of Unstyled Content (FOUC) issue on admin pages
Note: See TracChangeset for help on using the changeset viewer.