Plugin Directory

Changeset 2417917


Ignore:
Timestamp:
11/13/2020 12:44:21 PM (5 years ago)
Author:
team-ok
Message:

Restored time indicators (current time and duration)

Location:
switch-video-quality
Files:
2 edited
9 copied

Legend:

Unmodified
Added
Removed
  • switch-video-quality/tags/1.5.7/readme.txt

    r2400839 r2417917  
    44Tags: change, choose, select, quality, resolution, self-hosted, video, stream, player, wordpress, media, library, playlist, responsive, embed, iframe, bitrate, HD, 4K, html5, mediaelement, mejs, svq
    55Requires at least: 3.6
    6 Tested up to: 5.5.1
    7 Stable tag: 1.5.6
     6Tested up to: 5.5.3
     7Stable tag: 1.5.7
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    197197= 1.5.6 =
    198198* Added the "muted" shortcode attribute. May be set to "true" or "yes" or anything truthy (not an empty string) to load the player initially muted.
     199= 1.5.7 =
     200* Restored time indicators (current time and duration)
  • switch-video-quality/tags/1.5.7/switch_video_quality.php

    r2400839 r2417917  
    33Plugin Name: Switch Video Quality
    44Description: Switch Video Quality adds quality switch functionality to the wordpress video player to let you choose between different resolutions of a (self-hosted) html5-compatible video.
    5 Version: 1.5.6
     5Version: 1.5.7
    66Author: Timo Klemm (team-ok)
    77Text Domain: switch-video-quality
     
    2626}
    2727//Switch Video Quality Version Number
    28 define( 'SVQ_VERSION', '1.5.5' );
     28define( 'SVQ_VERSION', '1.5.7' );
    2929
    3030add_action( 'load-post.php', 'switch_video_quality_settings' );
     
    589589                    'classPrefix' => 'mejs-',
    590590                    'stretching' => 'responsive',
    591                     'features' => array('playpause','progress','volume', 'fullscreen', 'sourcechooser', 'svqinfooverlay', 'svqplaylist', 'svqembed', 'tracks')
     591                    'features' => array('playpause', 'current', 'progress', 'duration', 'volume', 'fullscreen', 'sourcechooser', 'svqinfooverlay', 'svqplaylist', 'svqembed', 'tracks')
    592592                )
    593593            );
  • switch-video-quality/trunk/readme.txt

    r2400839 r2417917  
    44Tags: change, choose, select, quality, resolution, self-hosted, video, stream, player, wordpress, media, library, playlist, responsive, embed, iframe, bitrate, HD, 4K, html5, mediaelement, mejs, svq
    55Requires at least: 3.6
    6 Tested up to: 5.5.1
    7 Stable tag: 1.5.6
     6Tested up to: 5.5.3
     7Stable tag: 1.5.7
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    197197= 1.5.6 =
    198198* Added the "muted" shortcode attribute. May be set to "true" or "yes" or anything truthy (not an empty string) to load the player initially muted.
     199= 1.5.7 =
     200* Restored time indicators (current time and duration)
  • switch-video-quality/trunk/switch_video_quality.php

    r2400839 r2417917  
    33Plugin Name: Switch Video Quality
    44Description: Switch Video Quality adds quality switch functionality to the wordpress video player to let you choose between different resolutions of a (self-hosted) html5-compatible video.
    5 Version: 1.5.6
     5Version: 1.5.7
    66Author: Timo Klemm (team-ok)
    77Text Domain: switch-video-quality
     
    2626}
    2727//Switch Video Quality Version Number
    28 define( 'SVQ_VERSION', '1.5.5' );
     28define( 'SVQ_VERSION', '1.5.7' );
    2929
    3030add_action( 'load-post.php', 'switch_video_quality_settings' );
     
    589589                    'classPrefix' => 'mejs-',
    590590                    'stretching' => 'responsive',
    591                     'features' => array('playpause','progress','volume', 'fullscreen', 'sourcechooser', 'svqinfooverlay', 'svqplaylist', 'svqembed', 'tracks')
     591                    'features' => array('playpause', 'current', 'progress', 'duration', 'volume', 'fullscreen', 'sourcechooser', 'svqinfooverlay', 'svqplaylist', 'svqembed', 'tracks')
    592592                )
    593593            );
Note: See TracChangeset for help on using the changeset viewer.