Changeset 2400839
- Timestamp:
- 10/16/2020 11:11:13 AM (5 years ago)
- Location:
- switch-video-quality
- Files:
-
- 2 edited
- 9 copied
-
tags/1.5.6 (copied) (copied from switch-video-quality/trunk)
-
tags/1.5.6/css/svq-mejs-v4.css (copied) (copied from switch-video-quality/trunk/css/svq-mejs-v4.css)
-
tags/1.5.6/js/mep-feature-sourcechooser-mejs-v4.js (copied) (copied from switch-video-quality/trunk/js/mep-feature-sourcechooser-mejs-v4.js)
-
tags/1.5.6/js/mep-feature-svq_embed.js (copied) (copied from switch-video-quality/trunk/js/mep-feature-svq_embed.js)
-
tags/1.5.6/js/mep-feature-svq_infooverlay.js (copied) (copied from switch-video-quality/trunk/js/mep-feature-svq_infooverlay.js)
-
tags/1.5.6/js/mep-feature-svq_playlist.js (copied) (copied from switch-video-quality/trunk/js/mep-feature-svq_playlist.js)
-
tags/1.5.6/js/svq_admin.js (copied) (copied from switch-video-quality/trunk/js/svq_admin.js)
-
tags/1.5.6/readme.txt (copied) (copied from switch-video-quality/trunk/readme.txt) (2 diffs)
-
tags/1.5.6/switch_video_quality.php (copied) (copied from switch-video-quality/trunk/switch_video_quality.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/switch_video_quality.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
switch-video-quality/tags/1.5.6/readme.txt
r2371264 r2400839 4 4 Tags: change, choose, select, quality, resolution, self-hosted, video, stream, player, wordpress, media, library, playlist, responsive, embed, iframe, bitrate, HD, 4K, html5, mediaelement, mejs, svq 5 5 Requires at least: 3.6 6 Tested up to: 5.5 7 Stable tag: 1.5. 56 Tested up to: 5.5.1 7 Stable tag: 1.5.6 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 195 195 = 1.5.5 = 196 196 * Fixed a bug that stopped hd and 4k labels from showing up. 197 = 1.5.6 = 198 * 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. -
switch-video-quality/tags/1.5.6/switch_video_quality.php
r2304452 r2400839 3 3 Plugin Name: Switch Video Quality 4 4 Description: 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. 55 Version: 1.5.6 6 6 Author: Timo Klemm (team-ok) 7 7 Text Domain: switch-video-quality … … 426 426 'height' => '', 427 427 'class' => '', 428 'muted' => '', 428 429 ); 429 430 $atts = shortcode_atts( $defaults_atts, $attr, 'video' ); … … 487 488 'loop' => wp_validate_boolean( $atts['loop'] ), 488 489 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 489 'preload' => $atts['preload'] 490 'preload' => $atts['preload'], 491 'muted' => wp_validate_boolean( $atts['muted'] ) 490 492 ); 491 493 492 494 // These ones should just be omitted altogether if they are blank 493 foreach ( array( 'poster', 'loop', 'autoplay' ) as $a ) {495 foreach ( array( 'poster', 'loop', 'autoplay', 'muted' ) as $a ) { 494 496 if ( empty( $html_atts[$a] ) ) { 495 497 unset( $html_atts[$a] ); -
switch-video-quality/trunk/readme.txt
r2371264 r2400839 4 4 Tags: change, choose, select, quality, resolution, self-hosted, video, stream, player, wordpress, media, library, playlist, responsive, embed, iframe, bitrate, HD, 4K, html5, mediaelement, mejs, svq 5 5 Requires at least: 3.6 6 Tested up to: 5.5 7 Stable tag: 1.5. 56 Tested up to: 5.5.1 7 Stable tag: 1.5.6 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 195 195 = 1.5.5 = 196 196 * Fixed a bug that stopped hd and 4k labels from showing up. 197 = 1.5.6 = 198 * 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. -
switch-video-quality/trunk/switch_video_quality.php
r2304452 r2400839 3 3 Plugin Name: Switch Video Quality 4 4 Description: 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. 55 Version: 1.5.6 6 6 Author: Timo Klemm (team-ok) 7 7 Text Domain: switch-video-quality … … 426 426 'height' => '', 427 427 'class' => '', 428 'muted' => '', 428 429 ); 429 430 $atts = shortcode_atts( $defaults_atts, $attr, 'video' ); … … 487 488 'loop' => wp_validate_boolean( $atts['loop'] ), 488 489 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 489 'preload' => $atts['preload'] 490 'preload' => $atts['preload'], 491 'muted' => wp_validate_boolean( $atts['muted'] ) 490 492 ); 491 493 492 494 // These ones should just be omitted altogether if they are blank 493 foreach ( array( 'poster', 'loop', 'autoplay' ) as $a ) {495 foreach ( array( 'poster', 'loop', 'autoplay', 'muted' ) as $a ) { 494 496 if ( empty( $html_atts[$a] ) ) { 495 497 unset( $html_atts[$a] );
Note: See TracChangeset
for help on using the changeset viewer.