Plugin Directory

Changeset 3419730


Ignore:
Timestamp:
12/15/2025 06:05:13 AM (3 months ago)
Author:
aryans
Message:
  • Improved IOS compatibility
Location:
media-stream
Files:
21 added
4 edited

Legend:

Unmodified
Added
Removed
  • media-stream/trunk/assets/js/public-script.js

    r3391139 r3419730  
    99            if (video_can_play) {
    1010                video.src = src;
     11                video.setAttribute('poster', (video.src).replace('playlist.m3u8', 'thumbnail.jpg'));
    1112            } else if (typeof Hls != 'undefined' && Hls.isSupported()) {
    1213                let hls = new Hls({
  • media-stream/trunk/assets/js/script.js

    r3418901 r3419730  
    5252                if (video_can_play) {
    5353                    video.src = src;
     54                    video.setAttribute('poster', (video.src).replace('playlist.m3u8', 'thumbnail.jpg'));
    5455                } else if (typeof Hls != 'undefined' && Hls.isSupported()) {
    5556                    let hls = new Hls({
  • media-stream/trunk/media-stream.php

    r3418901 r3419730  
    66 * Author: Blurr Studio
    77 * Author URI: https://blurr.it/
    8  * Version: 1.1.2
     8 * Version: 1.1.3
    99 * License: GPL v2 or later
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • media-stream/trunk/readme.txt

    r3418901 r3419730  
    44Tested up to:      6.9
    55Requires PHP:      7.2
    6 Stable tag:        1.1.2
     6Stable tag:        1.1.3
    77License:           GPLv2 or later
    88Contributors:      aryans
     
    7979== Changelog ==
    8080
     81= 1.1.3 =
     82* Improved IOS compatibility
     83
    8184= 1.1.2 =
    8285* Improved Gutenberg Video Loader
Note: See TracChangeset for help on using the changeset viewer.