Changeset 3433502
- Timestamp:
- 01/06/2026 11:22:34 AM (3 months ago)
- Location:
- az-video-and-audio-player-addon-for-elementor
- Files:
-
- 14 edited
- 1 copied
-
tags/3.0.7 (copied) (copied from az-video-and-audio-player-addon-for-elementor/trunk)
-
tags/3.0.7/includes/admin/class-deactivation-feedback.php (modified) (1 diff)
-
tags/3.0.7/includes/class-assets-manager.php (modified) (1 diff)
-
tags/3.0.7/includes/class-base.php (modified) (1 diff)
-
tags/3.0.7/includes/libs/lex-settings-new/config/tabs/settings.php (modified) (1 diff)
-
tags/3.0.7/includes/player-defaults.php (modified) (3 diffs)
-
tags/3.0.7/plugin-main.php (modified) (2 diffs)
-
tags/3.0.7/readme.txt (modified) (2 diffs)
-
trunk/includes/admin/class-deactivation-feedback.php (modified) (1 diff)
-
trunk/includes/class-assets-manager.php (modified) (1 diff)
-
trunk/includes/class-base.php (modified) (1 diff)
-
trunk/includes/libs/lex-settings-new/config/tabs/settings.php (modified) (1 diff)
-
trunk/includes/player-defaults.php (modified) (3 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/3.0.7/includes/admin/class-deactivation-feedback.php
r3424247 r3433502 209 209 'custom-reason' => [ 210 210 'text' => __("I'm deactivating because", 'vapfem'), 211 'input_placeholder' => __(' Please share your reason(optional)', 'vapfem')211 'input_placeholder' => __('Help us to improve with a quick feedback (optional)', 'vapfem') 212 212 ], 213 213 'missing-features' => [ -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/class-assets-manager.php
r3433169 r3433502 150 150 wp_localize_script('jquery', 'leanpl_params', [ 151 151 'version' => $this->version, 152 'debugMode' => leanpl_is_ debug_mode(),152 'debugMode' => leanpl_is_test_mode() || leanpl_is_debug_mode(), 153 153 'ajaxUrl' => admin_url('admin-ajax.php'), 154 154 ]); -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/class-base.php
r3430080 r3433502 211 211 'prefix' => 'leanpl', 212 212 'show_close_icon' => false, 213 'reason_variation' => ' low-friction',213 'reason_variation' => 'high-friction', 214 214 'debug_mode' => false, 215 215 'installed_time_iso' => $installed_time_iso, -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/libs/lex-settings-new/config/tabs/settings.php
r3417290 r3433502 87 87 'options' => [ 88 88 'play-large' => esc_html__('Play Large (Video Only)', 'vapfem'), 89 'restart' => esc_html__('Restart', 'vapfem'), 90 'rewind' => esc_html__('Rewind', 'vapfem'), 89 91 'play' => esc_html__('Play', 'vapfem'), 92 'fast-forward' => esc_html__('Fast Forward', 'vapfem'), 90 93 'progress' => esc_html__('Progress Bar', 'vapfem'), 91 94 'current-time' => esc_html__('Current Time', 'vapfem'), 95 'duration' => esc_html__('Duration', 'vapfem'), 92 96 'mute' => esc_html__('Mute', 'vapfem'), 93 97 'volume' => esc_html__('Volume', 'vapfem'), -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/player-defaults.php
r3417290 r3433502 68 68 // YouTube and Vimeo will ignore/hide options outside 0.5-2 range automatically 69 69 70 // Basic controls (common to both) 71 'controls' => ['play', 'progress', 'mute', 'volume', 'settings'], 70 // Default controls 71 'controls' => [ 72 'play-large', 73 // 'restart', 74 // 'rewind', 75 'play', 76 // 'fast-forward', 77 'progress', 78 'current-time', 79 // 'duration', 80 'mute', 81 'volume', 82 'captions', 83 'settings', 84 'pip', 85 'airplay', 86 // 'download', 87 'fullscreen', 88 ], 72 89 73 90 // Storage … … 100 117 101 118 // Aspect ratio 102 'ratio' => '', 103 104 // Video-specific controls 105 'controls' => ['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen'], 119 'ratio' => '' 120 // Video specific controls (intentionally not using) 106 121 ], 107 122 … … 114 129 'preload' => 'metadata', // 'auto', 'metadata', 'none' 115 130 116 // Audio-specific controls (no video controls like fullscreen, pip, etc.) 117 'controls' => ['play', 'progress', 'mute', 'volume', 'settings', 'airplay', 'download'], 118 ] 131 // Audio-specific controls (intentionally not using) 132 ], 119 133 ]; -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/plugin-main.php
r3433169 r3433502 4 4 Plugin URI: https://leanplugins.com/ 5 5 Description: Video & Audio player for Elementor, Gutenberg & Classic Editor 6 Version: 3.0. 66 Version: 3.0.7 7 7 Author: LeanPlugins 8 8 Author URI: https://leanplugins.com/ … … 19 19 // Both version may have this constant, so check first 20 20 if (!defined('LEANPL_VERSION')) { 21 define('LEANPL_VERSION', '3.0. 6');21 define('LEANPL_VERSION', '3.0.7'); 22 22 define('LEANPL_URI', plugins_url('', __FILE__)); 23 23 define('LEANPL_DIR', dirname(__FILE__)); -
az-video-and-audio-player-addon-for-elementor/tags/3.0.7/readme.txt
r3433169 r3433502 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.0. 67 Stable tag: 3.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 100 100 101 101 == Changelog == 102 = Version: 3.0.7 = 103 Fixed: Play Large button were not showing for very newly created video player 104 102 105 = Version: 3.0.6 = 103 106 Added: Support for AAC(p) audio streaming URLs -
az-video-and-audio-player-addon-for-elementor/trunk/includes/admin/class-deactivation-feedback.php
r3424247 r3433502 209 209 'custom-reason' => [ 210 210 'text' => __("I'm deactivating because", 'vapfem'), 211 'input_placeholder' => __(' Please share your reason(optional)', 'vapfem')211 'input_placeholder' => __('Help us to improve with a quick feedback (optional)', 'vapfem') 212 212 ], 213 213 'missing-features' => [ -
az-video-and-audio-player-addon-for-elementor/trunk/includes/class-assets-manager.php
r3433169 r3433502 150 150 wp_localize_script('jquery', 'leanpl_params', [ 151 151 'version' => $this->version, 152 'debugMode' => leanpl_is_ debug_mode(),152 'debugMode' => leanpl_is_test_mode() || leanpl_is_debug_mode(), 153 153 'ajaxUrl' => admin_url('admin-ajax.php'), 154 154 ]); -
az-video-and-audio-player-addon-for-elementor/trunk/includes/class-base.php
r3430080 r3433502 211 211 'prefix' => 'leanpl', 212 212 'show_close_icon' => false, 213 'reason_variation' => ' low-friction',213 'reason_variation' => 'high-friction', 214 214 'debug_mode' => false, 215 215 'installed_time_iso' => $installed_time_iso, -
az-video-and-audio-player-addon-for-elementor/trunk/includes/libs/lex-settings-new/config/tabs/settings.php
r3417290 r3433502 87 87 'options' => [ 88 88 'play-large' => esc_html__('Play Large (Video Only)', 'vapfem'), 89 'restart' => esc_html__('Restart', 'vapfem'), 90 'rewind' => esc_html__('Rewind', 'vapfem'), 89 91 'play' => esc_html__('Play', 'vapfem'), 92 'fast-forward' => esc_html__('Fast Forward', 'vapfem'), 90 93 'progress' => esc_html__('Progress Bar', 'vapfem'), 91 94 'current-time' => esc_html__('Current Time', 'vapfem'), 95 'duration' => esc_html__('Duration', 'vapfem'), 92 96 'mute' => esc_html__('Mute', 'vapfem'), 93 97 'volume' => esc_html__('Volume', 'vapfem'), -
az-video-and-audio-player-addon-for-elementor/trunk/includes/player-defaults.php
r3417290 r3433502 68 68 // YouTube and Vimeo will ignore/hide options outside 0.5-2 range automatically 69 69 70 // Basic controls (common to both) 71 'controls' => ['play', 'progress', 'mute', 'volume', 'settings'], 70 // Default controls 71 'controls' => [ 72 'play-large', 73 // 'restart', 74 // 'rewind', 75 'play', 76 // 'fast-forward', 77 'progress', 78 'current-time', 79 // 'duration', 80 'mute', 81 'volume', 82 'captions', 83 'settings', 84 'pip', 85 'airplay', 86 // 'download', 87 'fullscreen', 88 ], 72 89 73 90 // Storage … … 100 117 101 118 // Aspect ratio 102 'ratio' => '', 103 104 // Video-specific controls 105 'controls' => ['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen'], 119 'ratio' => '' 120 // Video specific controls (intentionally not using) 106 121 ], 107 122 … … 114 129 'preload' => 'metadata', // 'auto', 'metadata', 'none' 115 130 116 // Audio-specific controls (no video controls like fullscreen, pip, etc.) 117 'controls' => ['play', 'progress', 'mute', 'volume', 'settings', 'airplay', 'download'], 118 ] 131 // Audio-specific controls (intentionally not using) 132 ], 119 133 ]; -
az-video-and-audio-player-addon-for-elementor/trunk/plugin-main.php
r3433169 r3433502 4 4 Plugin URI: https://leanplugins.com/ 5 5 Description: Video & Audio player for Elementor, Gutenberg & Classic Editor 6 Version: 3.0. 66 Version: 3.0.7 7 7 Author: LeanPlugins 8 8 Author URI: https://leanplugins.com/ … … 19 19 // Both version may have this constant, so check first 20 20 if (!defined('LEANPL_VERSION')) { 21 define('LEANPL_VERSION', '3.0. 6');21 define('LEANPL_VERSION', '3.0.7'); 22 22 define('LEANPL_URI', plugins_url('', __FILE__)); 23 23 define('LEANPL_DIR', dirname(__FILE__)); -
az-video-and-audio-player-addon-for-elementor/trunk/readme.txt
r3433169 r3433502 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.0. 67 Stable tag: 3.0.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 100 100 101 101 == Changelog == 102 = Version: 3.0.7 = 103 Fixed: Play Large button were not showing for very newly created video player 104 102 105 = Version: 3.0.6 = 103 106 Added: Support for AAC(p) audio streaming URLs
Note: See TracChangeset
for help on using the changeset viewer.