Plugin Directory

Changeset 1072062


Ignore:
Timestamp:
01/20/2015 11:53:05 PM (11 years ago)
Author:
sutherlandboswell
Message:

Livestream support. TED fix.

Location:
video-thumbnails
Files:
2 added
7 deleted
4 edited
35 copied

Legend:

Unmodified
Added
Removed
  • video-thumbnails/tags/2.11/php/providers/class-ted-thumbnails.php

    r1070207 r1072062  
    3636    // Regex strings
    3737    public $regexes = array(
    38         '#//embed\.ted\.com/talks/([A-Za-z0-9_-]+)\.html#', // iFrame SRC
     38        '#//embed(?:\-ssl)?\.ted\.com/talks/([A-Za-z0-9_-]+)\.html#', // iFrame SRC
    3939    );
    4040
  • video-thumbnails/tags/2.11/php/providers/providers.php

    r966981 r1072062  
    3737require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-twitch-thumbnails.php' );
    3838require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-googledrive-thumbnails.php' );
     39require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-livestream-thumbnails.php' );
    3940// require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-kaltura-thumbnails.php' );
    4041
     
    5960add_filter( 'video_thumbnail_providers', array( 'Twitch_Thumbnails', 'register_provider' ) );
    6061add_filter( 'video_thumbnail_providers', array( 'Googledrive_Thumbnails', 'register_provider' ) );
     62add_filter( 'video_thumbnail_providers', array( 'Livestream_Thumbnails', 'register_provider' ) );
    6163// add_filter( 'video_thumbnail_providers', array( 'Kaltura_Thumbnails', 'register_provider' ) );
    6264
  • video-thumbnails/tags/2.11/readme.txt

    r1070207 r1072062  
    55Requires at least: 3.2
    66Tested up to: 4.1
    7 Stable tag: 2.10.3
     7Stable tag: 2.11
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    3333* CollegeHumor
    3434* MPORA
     35* Livestream
    3536* Wistia
    3637* Youku
     
    131132
    132133== Changelog ==
     134
     135= 2.11 =
     136* Added support for Livestream
     137* Support for latest TED embed code
    133138
    134139= 2.10.3 =
  • video-thumbnails/tags/2.11/video-thumbnails.php

    r1070207 r1072062  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.10.3
     8Version: 2.11
    99License: GPL2
    1010Text Domain: video-thumbnails
     
    3131define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3232define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    33 define( 'VIDEO_THUMBNAILS_VERSION', '2.10.3' );
     33define( 'VIDEO_THUMBNAILS_VERSION', '2.11' );
    3434
    3535// Providers
  • video-thumbnails/trunk/php/providers/class-ted-thumbnails.php

    r1070207 r1072062  
    3636    // Regex strings
    3737    public $regexes = array(
    38         '#//embed\.ted\.com/talks/([A-Za-z0-9_-]+)\.html#', // iFrame SRC
     38        '#//embed(?:\-ssl)?\.ted\.com/talks/([A-Za-z0-9_-]+)\.html#', // iFrame SRC
    3939    );
    4040
  • video-thumbnails/trunk/php/providers/providers.php

    r966981 r1072062  
    3737require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-twitch-thumbnails.php' );
    3838require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-googledrive-thumbnails.php' );
     39require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-livestream-thumbnails.php' );
    3940// require_once( VIDEO_THUMBNAILS_PATH . '/php/providers/class-kaltura-thumbnails.php' );
    4041
     
    5960add_filter( 'video_thumbnail_providers', array( 'Twitch_Thumbnails', 'register_provider' ) );
    6061add_filter( 'video_thumbnail_providers', array( 'Googledrive_Thumbnails', 'register_provider' ) );
     62add_filter( 'video_thumbnail_providers', array( 'Livestream_Thumbnails', 'register_provider' ) );
    6163// add_filter( 'video_thumbnail_providers', array( 'Kaltura_Thumbnails', 'register_provider' ) );
    6264
  • video-thumbnails/trunk/readme.txt

    r1070207 r1072062  
    55Requires at least: 3.2
    66Tested up to: 4.1
    7 Stable tag: 2.10.3
     7Stable tag: 2.11
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    3333* CollegeHumor
    3434* MPORA
     35* Livestream
    3536* Wistia
    3637* Youku
     
    131132
    132133== Changelog ==
     134
     135= 2.11 =
     136* Added support for Livestream
     137* Support for latest TED embed code
    133138
    134139= 2.10.3 =
  • video-thumbnails/trunk/video-thumbnails.php

    r1070207 r1072062  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.10.3
     8Version: 2.11
    99License: GPL2
    1010Text Domain: video-thumbnails
     
    3131define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3232define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    33 define( 'VIDEO_THUMBNAILS_VERSION', '2.10.3' );
     33define( 'VIDEO_THUMBNAILS_VERSION', '2.11' );
    3434
    3535// Providers
Note: See TracChangeset for help on using the changeset viewer.