Plugin Directory

Changeset 3098170


Ignore:
Timestamp:
06/05/2024 06:45:48 PM (22 months ago)
Author:
r00tsector
Message:

Update to version 1.0.4 from GitHub

Location:
hls-player
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hls-player/tags/1.0.4/Readme.txt

    r3095518 r3098170  
    44Donate link: https://donate.stripe.com/5kA7w2bRl3KN7qU3cd
    55Requires at least: 6.4
    6 Tested up to: 6.5.3
     6Tested up to: 6.5.4
    77Requires PHP: 8.1
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0
     
    4848`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" class="video-js vjs-fluid vjs-16-9"]`
    4949
    50 * **width**: Defines the width of the video file.
     50* **width**: Defines the width of the video player.
    5151`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" width="480"]`
    5252
    53 * **height**: Defines the height of the video file.
     53* **height**: Defines the height of the video player.
    5454`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" height="264"]`
    5555
     
    6666`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" autoplay="true"]`
    6767
    68 * **loop**: Make the video loop to the beginning when finished and automatically continue playing.
     68* **loop**: Set the video to automatically loop back to the beginning and continue playing after it finishes.
    6969`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" loop="true"]`
    7070
     
    115115
    116116== Changelog ==
     117= 1.0.4=
     118* Added: Wordpress v6.5.4 compatibility.
     119
     120= 1.0.3 =
     121* Improved: Minor changes.
     122
    117123= 1.0.2 =
    118124* Improved: Minor changes.
  • hls-player/tags/1.0.4/hls-player.php

    r3095518 r3098170  
    44 * Plugin URI: https://github.com/root-sector/wordpress-plugin-hls-player-free
    55 * Description: HLS Player is a simple, lightweight HTTP Live Streaming player for WordPress. Leveraging video.js, the leading open-source HTML5 player, it enables effortless embedding of both responsive and fixed-width .m3u8 or .mpd HLS videos into posts and pages.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Requires at least: 6.4
    88 * Requires PHP: 8.1
     
    1717}
    1818
    19 define('HLS_PLAYER_VERSION', '1.0.3');
     19define('HLS_PLAYER_VERSION', '1.0.4');
    2020
    2121class HLSPlayer
  • hls-player/trunk/Readme.txt

    r3095518 r3098170  
    44Donate link: https://donate.stripe.com/5kA7w2bRl3KN7qU3cd
    55Requires at least: 6.4
    6 Tested up to: 6.5.3
     6Tested up to: 6.5.4
    77Requires PHP: 8.1
    8 Stable tag: 1.0.3
     8Stable tag: 1.0.4
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0
     
    4848`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" class="video-js vjs-fluid vjs-16-9"]`
    4949
    50 * **width**: Defines the width of the video file.
     50* **width**: Defines the width of the video player.
    5151`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" width="480"]`
    5252
    53 * **height**: Defines the height of the video file.
     53* **height**: Defines the height of the video player.
    5454`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" height="264"]`
    5555
     
    6666`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" autoplay="true"]`
    6767
    68 * **loop**: Make the video loop to the beginning when finished and automatically continue playing.
     68* **loop**: Set the video to automatically loop back to the beginning and continue playing after it finishes.
    6969`[hls_player url="https://example.com/external/xxxxxxxxx.m3u8" loop="true"]`
    7070
     
    115115
    116116== Changelog ==
     117= 1.0.4=
     118* Added: Wordpress v6.5.4 compatibility.
     119
     120= 1.0.3 =
     121* Improved: Minor changes.
     122
    117123= 1.0.2 =
    118124* Improved: Minor changes.
  • hls-player/trunk/hls-player.php

    r3095518 r3098170  
    44 * Plugin URI: https://github.com/root-sector/wordpress-plugin-hls-player-free
    55 * Description: HLS Player is a simple, lightweight HTTP Live Streaming player for WordPress. Leveraging video.js, the leading open-source HTML5 player, it enables effortless embedding of both responsive and fixed-width .m3u8 or .mpd HLS videos into posts and pages.
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Requires at least: 6.4
    88 * Requires PHP: 8.1
     
    1717}
    1818
    19 define('HLS_PLAYER_VERSION', '1.0.3');
     19define('HLS_PLAYER_VERSION', '1.0.4');
    2020
    2121class HLSPlayer
Note: See TracChangeset for help on using the changeset viewer.