Plugin Directory

Changeset 2959725


Ignore:
Timestamp:
08/29/2023 08:06:01 AM (3 years ago)
Author:
deambulando
Message:

Tag version 2.0.4

Location:
better-video-playlist
Files:
4 added
3 edited
4 copied

Legend:

Unmodified
Added
Removed
  • better-video-playlist/tags/2.0.4/README.TXT

    r2954576 r2959725  
    33Donate link: https://paypal.me/chema/10EUR
    44Tags: video, playlist, video playlist, html5 video, start video, resume video, progress
    5 Requires at least: 5.0
     5Requires at least: 6.0
    66Tested up to: 6.3
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    1515== Description ==
    1616
    17 Super fast player and playlist player using native HTML5 video player and jQuery. This will work also in WordPress. Uses browser local storage for most features.
     17Super fast video player and playlist player using native HTML5 video player and jQuery. Uses browser local storage for most features.
    1818
    1919If user is logged in we store video position in the database. So even if changes browser will save the progress.
     
    3333- Mark video as played
    3434- Start playing from video via url parameter using ?start_video=ID_VIDEO
    35 - Stored in user browser storage, not in DB
     35- Stored in user browser storage and at WordPress Database
    3636
    3737
     
    106106    </script>
    107107
    108 To add the JS to your post/page you can use a plugin like https://es.wordpress.org/plugins/header-and-footer-scripts/
     108To add the JS to your post/page you can use a plugin like [this one](https://wordpress.org/plugins/header-and-footer-scripts/).
    109109
    110110
     
    118118== Changelog ==
    119119
     120
     121= 2.0.4 =
     122* Improved description and FAQ's
     123
     124= 2.0.3 =
     125* WP 6.3 tested
     126
    120127= 2.0.2 =
    121128* smooth scroll to video
  • better-video-playlist/tags/2.0.4/better-video.php

    r2954576 r2959725  
    22/**
    33    * Plugin Name: Better Video & Playlist
    4     * Plugin URI: https://garridodiaz.com/html5-playlist-video-player/
     4    * Plugin URI: https://garridodiaz.com/better-video-plugin-for-wordpress/
    55    * Description: Improves video capabilities for wordpress and adds video playlist features.
    6     * Version: 2.0.3
    7     * Author: Chema Garrido
     6    * Version: 2.0.4
     7    * Author: Chema
    88    * Author URI: https://garridodiaz.com
    99    * License: GPL2
     
    1616/* enqueue scripts and style from parent theme */       
    1717function bbpl_assets() {
    18     wp_enqueue_script( 'better-video', plugin_dir_url( __FILE__ ) . 'js/better-video.js', array('jquery'), '2.0.3', true );
     18    wp_enqueue_script( 'better-video', plugin_dir_url( __FILE__ ) . 'js/better-video.js', array('jquery'), '2.0.4', true );
    1919
    2020    wp_localize_script(
  • better-video-playlist/tags/2.0.4/js/better-video.js

    r2954576 r2959725  
    11/**
    22 * Better Video and playlist jQuery plugin
    3  * Version: 2.0.3
     3 * Version: 2.0.4
    44 */
    55jQuery(document).ready(function( $ ) {
  • better-video-playlist/trunk/README.TXT

    r2954576 r2959725  
    33Donate link: https://paypal.me/chema/10EUR
    44Tags: video, playlist, video playlist, html5 video, start video, resume video, progress
    5 Requires at least: 5.0
     5Requires at least: 6.0
    66Tested up to: 6.3
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    1515== Description ==
    1616
    17 Super fast player and playlist player using native HTML5 video player and jQuery. This will work also in WordPress. Uses browser local storage for most features.
     17Super fast video player and playlist player using native HTML5 video player and jQuery. Uses browser local storage for most features.
    1818
    1919If user is logged in we store video position in the database. So even if changes browser will save the progress.
     
    3333- Mark video as played
    3434- Start playing from video via url parameter using ?start_video=ID_VIDEO
    35 - Stored in user browser storage, not in DB
     35- Stored in user browser storage and at WordPress Database
    3636
    3737
     
    106106    </script>
    107107
    108 To add the JS to your post/page you can use a plugin like https://es.wordpress.org/plugins/header-and-footer-scripts/
     108To add the JS to your post/page you can use a plugin like [this one](https://wordpress.org/plugins/header-and-footer-scripts/).
    109109
    110110
     
    118118== Changelog ==
    119119
     120
     121= 2.0.4 =
     122* Improved description and FAQ's
     123
     124= 2.0.3 =
     125* WP 6.3 tested
     126
    120127= 2.0.2 =
    121128* smooth scroll to video
  • better-video-playlist/trunk/better-video.php

    r2954576 r2959725  
    22/**
    33    * Plugin Name: Better Video & Playlist
    4     * Plugin URI: https://garridodiaz.com/html5-playlist-video-player/
     4    * Plugin URI: https://garridodiaz.com/better-video-plugin-for-wordpress/
    55    * Description: Improves video capabilities for wordpress and adds video playlist features.
    6     * Version: 2.0.3
    7     * Author: Chema Garrido
     6    * Version: 2.0.4
     7    * Author: Chema
    88    * Author URI: https://garridodiaz.com
    99    * License: GPL2
     
    1616/* enqueue scripts and style from parent theme */       
    1717function bbpl_assets() {
    18     wp_enqueue_script( 'better-video', plugin_dir_url( __FILE__ ) . 'js/better-video.js', array('jquery'), '2.0.3', true );
     18    wp_enqueue_script( 'better-video', plugin_dir_url( __FILE__ ) . 'js/better-video.js', array('jquery'), '2.0.4', true );
    1919
    2020    wp_localize_script(
  • better-video-playlist/trunk/js/better-video.js

    r2954576 r2959725  
    11/**
    22 * Better Video and playlist jQuery plugin
    3  * Version: 2.0.3
     3 * Version: 2.0.4
    44 */
    55jQuery(document).ready(function( $ ) {
Note: See TracChangeset for help on using the changeset viewer.