Plugin Directory

Changeset 869386


Ignore:
Timestamp:
03/04/2014 05:51:02 PM (12 years ago)
Author:
sutherlandboswell
Message:

Better Google Drive detection

Location:
video-thumbnails
Files:
2 deleted
3 edited
27 copied

Legend:

Unmodified
Added
Removed
  • video-thumbnails/tags/2.6.3/php/providers/class-googledrive-thumbnails.php

    r849068 r869386  
    4747    // Regex strings
    4848    public $regexes = array(
    49         '#(?:https?:)?//docs\.google\.com/(?:a/[^/]+/)?file/d/([A-Za-z0-9]+)/preview#', // iFrame URL
    50         '#(?:https?:)?//video\.google\.com/get_player\?docid=([A-Za-z0-9]+)#', // Flash URL
    51         '#<param value="(?:[^"]+)?docid=([A-Za-z0-9]+)(?:[^"]+)?" name="flashvars">#', // Flash (YouTube player)
     49        '#(?:https?:)?//docs\.google\.com/(?:a/[^/]+/)?file/d/([A-Za-z0-9\-_]+)/preview#', // iFrame URL
     50        '#(?:https?:)?//video\.google\.com/get_player\?docid=([A-Za-z0-9\-_]+)#', // Flash URL
     51        '#<param value="(?:[^"]+)?docid=([A-Za-z0-9\-_]+)(?:[^"]+)?" name="flashvars">#', // Flash (YouTube player)
    5252    );
    5353
  • video-thumbnails/tags/2.6.3/readme.txt

    r862503 r869386  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 2.6.2
     7Stable tag: 2.6.3
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    118118
    119119== Changelog ==
     120
     121= 2.6.3 =
     122* Better Google Drive detection (added support for underscores or dashes in the ID)
    120123
    121124= 2.6.2 =
  • video-thumbnails/tags/2.6.3/video-thumbnails.php

    r862503 r869386  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.6.2
     8Version: 2.6.3
    99License: GPL2
    1010*/
     
    2929define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3030define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    31 define( 'VIDEO_THUMBNAILS_VERSION', '2.6.2' );
     31define( 'VIDEO_THUMBNAILS_VERSION', '2.6.3' );
    3232
    3333// Providers
  • video-thumbnails/trunk/php/providers/class-googledrive-thumbnails.php

    r849068 r869386  
    4747    // Regex strings
    4848    public $regexes = array(
    49         '#(?:https?:)?//docs\.google\.com/(?:a/[^/]+/)?file/d/([A-Za-z0-9]+)/preview#', // iFrame URL
    50         '#(?:https?:)?//video\.google\.com/get_player\?docid=([A-Za-z0-9]+)#', // Flash URL
    51         '#<param value="(?:[^"]+)?docid=([A-Za-z0-9]+)(?:[^"]+)?" name="flashvars">#', // Flash (YouTube player)
     49        '#(?:https?:)?//docs\.google\.com/(?:a/[^/]+/)?file/d/([A-Za-z0-9\-_]+)/preview#', // iFrame URL
     50        '#(?:https?:)?//video\.google\.com/get_player\?docid=([A-Za-z0-9\-_]+)#', // Flash URL
     51        '#<param value="(?:[^"]+)?docid=([A-Za-z0-9\-_]+)(?:[^"]+)?" name="flashvars">#', // Flash (YouTube player)
    5252    );
    5353
  • video-thumbnails/trunk/readme.txt

    r862503 r869386  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 2.6.2
     7Stable tag: 2.6.3
    88
    99Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template.
     
    118118
    119119== Changelog ==
     120
     121= 2.6.3 =
     122* Better Google Drive detection (added support for underscores or dashes in the ID)
    120123
    121124= 2.6.2 =
  • video-thumbnails/trunk/video-thumbnails.php

    r862503 r869386  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.6.2
     8Version: 2.6.3
    99License: GPL2
    1010*/
     
    2929define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) );
    3030define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' );
    31 define( 'VIDEO_THUMBNAILS_VERSION', '2.6.2' );
     31define( 'VIDEO_THUMBNAILS_VERSION', '2.6.3' );
    3232
    3333// Providers
Note: See TracChangeset for help on using the changeset viewer.