Changeset 3392494
- Timestamp:
- 11/09/2025 06:48:36 PM (5 months ago)
- Location:
- az-video-and-audio-player-addon-for-elementor
- Files:
-
- 8 edited
- 1 copied
-
tags/2.1.5 (copied) (copied from az-video-and-audio-player-addon-for-elementor/trunk)
-
tags/2.1.5/includes/widgets/audio-player.php (modified) (2 diffs)
-
tags/2.1.5/includes/widgets/video-player.php (modified) (4 diffs)
-
tags/2.1.5/plugin-main.php (modified) (2 diffs)
-
tags/2.1.5/readme.txt (modified) (2 diffs)
-
trunk/includes/widgets/audio-player.php (modified) (2 diffs)
-
trunk/includes/widgets/video-player.php (modified) (4 diffs)
-
trunk/plugin-main.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
az-video-and-audio-player-addon-for-elementor/tags/2.1.5/includes/widgets/audio-player.php
r3365547 r3392494 1 1 <?php 2 2 use VAPFEM\Player_Renderer; 3 use Elementor\Modules\DynamicTags\Module as TagsModule; 3 4 4 5 class VAPFEM_Audio_Player extends Elementor\Widget_Base { … … 75 76 'dynamic' => [ 76 77 'active' => true, 78 'categories' => [ 79 TagsModule::URL_CATEGORY, 80 ], 77 81 ], 78 82 'condition' => [ -
az-video-and-audio-player-addon-for-elementor/tags/2.1.5/includes/widgets/video-player.php
r3365547 r3392494 62 62 'dynamic' => [ 63 63 'active' => true, 64 'categories' => [ 65 TagsModule::TEXT_CATEGORY, 66 ], 64 67 ], 65 68 'condition' => [ … … 80 83 'dynamic' => [ 81 84 'active' => true, 85 'categories' => [ 86 TagsModule::TEXT_CATEGORY, 87 ], 82 88 ], 83 89 'condition' => [ … … 107 113 'default' => [ 108 114 'url' => \Elementor\Utils::get_placeholder_image_src(), 115 ], 116 'dynamic' => [ 117 'active' => true, 118 'categories' => [ 119 TagsModule::MEDIA_CATEGORY, 120 ], 109 121 ], 110 122 'condition' => [ … … 158 170 'is_external' => false, 159 171 'nofollow' => false, 172 ], 173 'dynamic' => [ 174 'active' => true, 175 'categories' => [ 176 TagsModule::URL_CATEGORY, 177 ], 160 178 ], 161 179 'condition' => [ -
az-video-and-audio-player-addon-for-elementor/tags/2.1.5/plugin-main.php
r3381618 r3392494 4 4 Plugin URI: https://leanplugins.com/ 5 5 Description: Video & Audio player for Elementor, Gutenberg & Classic Editor 6 Version: 2.1. 47 Author: AZPlugins6 Version: 2.1.5 7 Author: LeanPlugins 8 8 Author URI: https://leanplugins.com/ 9 9 License: GPLv2 … … 20 20 * Define path 21 21 */ 22 define( 'VAPFEM_VERSION', '2.1. 4' );22 define( 'VAPFEM_VERSION', '2.1.5' ); 23 23 define( 'VAPFEM_URI', plugins_url('', __FILE__) ); 24 24 define( 'VAPFEM_DIR', dirname( __FILE__ ) ); -
az-video-and-audio-player-addon-for-elementor/tags/2.1.5/readme.txt
r3381618 r3392494 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.1. 47 Stable tag: 2.1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 = Version: 2.1.5 = 77 * Added: Dynamic tags support for both audio and video player 78 76 79 = Version: 2.1.4 = 77 80 * 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 1 1 <?php 2 2 use VAPFEM\Player_Renderer; 3 use Elementor\Modules\DynamicTags\Module as TagsModule; 3 4 4 5 class VAPFEM_Audio_Player extends Elementor\Widget_Base { … … 75 76 'dynamic' => [ 76 77 'active' => true, 78 'categories' => [ 79 TagsModule::URL_CATEGORY, 80 ], 77 81 ], 78 82 'condition' => [ -
az-video-and-audio-player-addon-for-elementor/trunk/includes/widgets/video-player.php
r3365547 r3392494 62 62 'dynamic' => [ 63 63 'active' => true, 64 'categories' => [ 65 TagsModule::TEXT_CATEGORY, 66 ], 64 67 ], 65 68 'condition' => [ … … 80 83 'dynamic' => [ 81 84 'active' => true, 85 'categories' => [ 86 TagsModule::TEXT_CATEGORY, 87 ], 82 88 ], 83 89 'condition' => [ … … 107 113 'default' => [ 108 114 'url' => \Elementor\Utils::get_placeholder_image_src(), 115 ], 116 'dynamic' => [ 117 'active' => true, 118 'categories' => [ 119 TagsModule::MEDIA_CATEGORY, 120 ], 109 121 ], 110 122 'condition' => [ … … 158 170 'is_external' => false, 159 171 'nofollow' => false, 172 ], 173 'dynamic' => [ 174 'active' => true, 175 'categories' => [ 176 TagsModule::URL_CATEGORY, 177 ], 160 178 ], 161 179 'condition' => [ -
az-video-and-audio-player-addon-for-elementor/trunk/plugin-main.php
r3381618 r3392494 4 4 Plugin URI: https://leanplugins.com/ 5 5 Description: Video & Audio player for Elementor, Gutenberg & Classic Editor 6 Version: 2.1. 47 Author: AZPlugins6 Version: 2.1.5 7 Author: LeanPlugins 8 8 Author URI: https://leanplugins.com/ 9 9 License: GPLv2 … … 20 20 * Define path 21 21 */ 22 define( 'VAPFEM_VERSION', '2.1. 4' );22 define( 'VAPFEM_VERSION', '2.1.5' ); 23 23 define( 'VAPFEM_URI', plugins_url('', __FILE__) ); 24 24 define( 'VAPFEM_DIR', dirname( __FILE__ ) ); -
az-video-and-audio-player-addon-for-elementor/trunk/readme.txt
r3381618 r3392494 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 2.1. 47 Stable tag: 2.1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 = Version: 2.1.5 = 77 * Added: Dynamic tags support for both audio and video player 78 76 79 = Version: 2.1.4 = 77 80 * Fixed: Flush of Unstyled Content (FOUC) issue on admin pages
Note: See TracChangeset
for help on using the changeset viewer.