Plugin Directory

Changeset 3433502


Ignore:
Timestamp:
01/06/2026 11:22:34 AM (3 months ago)
Author:
azplugins
Message:

Update to version 3.0.7 from GitHub

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

Legend:

Unmodified
Added
Removed
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/admin/class-deactivation-feedback.php

    r3424247 r3433502  
    209209                'custom-reason' => [
    210210                    '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')
    212212                ],
    213213                'missing-features' => [
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/class-assets-manager.php

    r3433169 r3433502  
    150150        wp_localize_script('jquery', 'leanpl_params', [
    151151            'version' => $this->version,
    152             'debugMode' => leanpl_is_debug_mode(),
     152            'debugMode' => leanpl_is_test_mode() || leanpl_is_debug_mode(),
    153153            'ajaxUrl' => admin_url('admin-ajax.php'),
    154154        ]);
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/class-base.php

    r3430080 r3433502  
    211211                'prefix'           => 'leanpl',
    212212                'show_close_icon'  => false,
    213                 'reason_variation' => 'low-friction',
     213                'reason_variation' => 'high-friction',
    214214                'debug_mode'       => false,
    215215                '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  
    8787    'options' => [
    8888        'play-large' => esc_html__('Play Large (Video Only)', 'vapfem'),
     89        'restart' => esc_html__('Restart', 'vapfem'),
     90        'rewind' => esc_html__('Rewind', 'vapfem'),
    8991        'play' => esc_html__('Play', 'vapfem'),
     92        'fast-forward' => esc_html__('Fast Forward', 'vapfem'),
    9093        'progress' => esc_html__('Progress Bar', 'vapfem'),
    9194        'current-time' => esc_html__('Current Time', 'vapfem'),
     95        'duration' => esc_html__('Duration', 'vapfem'),
    9296        'mute' => esc_html__('Mute', 'vapfem'),
    9397        'volume' => esc_html__('Volume', 'vapfem'),
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/includes/player-defaults.php

    r3417290 r3433502  
    6868        // YouTube and Vimeo will ignore/hide options outside 0.5-2 range automatically
    6969
    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        ],
    7289
    7390        // Storage
     
    100117
    101118        // 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)
    106121    ],
    107122
     
    114129        'preload' => 'metadata', // 'auto', 'metadata', 'none'
    115130
    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    ],
    119133];
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/plugin-main.php

    r3433169 r3433502  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 3.0.6
     6Version: 3.0.7
    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.6');
     21    define('LEANPL_VERSION', '3.0.7');
    2222    define('LEANPL_URI', plugins_url('', __FILE__));
    2323    define('LEANPL_DIR', dirname(__FILE__));
  • az-video-and-audio-player-addon-for-elementor/tags/3.0.7/readme.txt

    r3433169 r3433502  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.0.6
     7Stable tag: 3.0.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    100100
    101101== Changelog ==
     102= Version: 3.0.7 =
     103Fixed: Play Large button were not showing for very newly created video player
     104
    102105= Version: 3.0.6 =
    103106Added: Support for AAC(p) audio streaming URLs
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/admin/class-deactivation-feedback.php

    r3424247 r3433502  
    209209                'custom-reason' => [
    210210                    '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')
    212212                ],
    213213                'missing-features' => [
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/class-assets-manager.php

    r3433169 r3433502  
    150150        wp_localize_script('jquery', 'leanpl_params', [
    151151            'version' => $this->version,
    152             'debugMode' => leanpl_is_debug_mode(),
     152            'debugMode' => leanpl_is_test_mode() || leanpl_is_debug_mode(),
    153153            'ajaxUrl' => admin_url('admin-ajax.php'),
    154154        ]);
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/class-base.php

    r3430080 r3433502  
    211211                'prefix'           => 'leanpl',
    212212                'show_close_icon'  => false,
    213                 'reason_variation' => 'low-friction',
     213                'reason_variation' => 'high-friction',
    214214                'debug_mode'       => false,
    215215                '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  
    8787    'options' => [
    8888        'play-large' => esc_html__('Play Large (Video Only)', 'vapfem'),
     89        'restart' => esc_html__('Restart', 'vapfem'),
     90        'rewind' => esc_html__('Rewind', 'vapfem'),
    8991        'play' => esc_html__('Play', 'vapfem'),
     92        'fast-forward' => esc_html__('Fast Forward', 'vapfem'),
    9093        'progress' => esc_html__('Progress Bar', 'vapfem'),
    9194        'current-time' => esc_html__('Current Time', 'vapfem'),
     95        'duration' => esc_html__('Duration', 'vapfem'),
    9296        'mute' => esc_html__('Mute', 'vapfem'),
    9397        'volume' => esc_html__('Volume', 'vapfem'),
  • az-video-and-audio-player-addon-for-elementor/trunk/includes/player-defaults.php

    r3417290 r3433502  
    6868        // YouTube and Vimeo will ignore/hide options outside 0.5-2 range automatically
    6969
    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        ],
    7289
    7390        // Storage
     
    100117
    101118        // 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)
    106121    ],
    107122
     
    114129        'preload' => 'metadata', // 'auto', 'metadata', 'none'
    115130
    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    ],
    119133];
  • az-video-and-audio-player-addon-for-elementor/trunk/plugin-main.php

    r3433169 r3433502  
    44Plugin URI: https://leanplugins.com/
    55Description: Video & Audio player for Elementor, Gutenberg & Classic Editor
    6 Version: 3.0.6
     6Version: 3.0.7
    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.6');
     21    define('LEANPL_VERSION', '3.0.7');
    2222    define('LEANPL_URI', plugins_url('', __FILE__));
    2323    define('LEANPL_DIR', dirname(__FILE__));
  • az-video-and-audio-player-addon-for-elementor/trunk/readme.txt

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