Changeset 888537
- Timestamp:
- 04/07/2014 04:07:42 AM (12 years ago)
- Location:
- video-thumbnails
- Files:
-
- 6 edited
- 4 copied
-
tags/2.7.2 (copied) (copied from video-thumbnails/trunk)
-
tags/2.7.2/languages (copied) (copied from video-thumbnails/trunk/languages)
-
tags/2.7.2/php/providers/class-vimeo-thumbnails.php (modified) (1 diff)
-
tags/2.7.2/php/providers/class-youku-thumbnails.php (modified) (2 diffs)
-
tags/2.7.2/readme.txt (copied) (copied from video-thumbnails/trunk/readme.txt) (2 diffs)
-
tags/2.7.2/video-thumbnails.php (copied) (copied from video-thumbnails/trunk/video-thumbnails.php) (2 diffs)
-
trunk/php/providers/class-vimeo-thumbnails.php (modified) (1 diff)
-
trunk/php/providers/class-youku-thumbnails.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/video-thumbnails.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
video-thumbnails/tags/2.7.2/php/providers/class-vimeo-thumbnails.php
r870830 r888537 118 118 array( 119 119 'markup' => 'https://vimeo.com/channels/soundworkscollection/44520894', 120 'expected' => 'http:// b.vimeocdn.com/ts/313/130/313130530_640.jpg',121 'expected_hash' => ' e9fd72872a39272f6c540ee66b1ecf28',120 'expected' => 'http://i.vimeocdn.com/video/313130530_1280.jpg', 121 'expected_hash' => '32f742bbe980e5d98d8aa0256026b459', 122 122 'name' => __( 'Channel URL', 'video-thumbnails' ) 123 123 ), -
video-thumbnails/tags/2.7.2/php/providers/class-youku-thumbnails.php
r870830 r888537 36 36 // Regex strings 37 37 public $regexes = array( 38 '#http://player\.youku\.com/embed/([A-Za-z0-9]+)#', // iFrame 38 39 '#http://player\.youku\.com/player\.php/sid/([A-Za-z0-9]+)/v\.swf#', // Flash 39 40 '#http://v\.youku\.com/v_show/id_([A-Za-z0-9]+)\.html#' // Link … … 57 58 return array( 58 59 array( 60 'markup' => '<iframe height=498 width=510 src="http://player.youku.com/embed/XMzQyMzk5MzQ4" frameborder=0 allowfullscreen></iframe>', 61 'expected' => 'http://g1.ykimg.com/1100641F464F0FB57407E2053DFCBC802FBBC4-E4C5-7A58-0394-26C366F10493', 62 'expected_hash' => 'deac7bb89058a8c46ae2350da9d33ba8', 63 'name' => __( 'iFrame Embed', 'video-thumbnails' ) 64 ), 65 array( 59 66 'markup' => '<embed src="http://player.youku.com/player.php/sid/XMzQyMzk5MzQ4/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" allowFullscreen="true" type="application/x-shockwave-flash"></embed>', 60 67 'expected' => 'http://g1.ykimg.com/1100641F464F0FB57407E2053DFCBC802FBBC4-E4C5-7A58-0394-26C366F10493', -
video-thumbnails/tags/2.7.2/readme.txt
r877306 r888537 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 2.7. 17 Stable tag: 2.7.2 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 118 118 119 119 == Changelog == 120 121 = 2.7.2 = 122 * Added support for Youku iFrame embed code 123 * Fixed Vimeo channel URL test 120 124 121 125 = 2.7.1 = -
video-thumbnails/tags/2.7.2/video-thumbnails.php
r877306 r888537 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7. 18 Version: 2.7.2 9 9 License: GPL2 10 10 Text Domain: video-thumbnails … … 31 31 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 32 32 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7. 1' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.2' ); 34 34 35 35 // Providers -
video-thumbnails/trunk/php/providers/class-vimeo-thumbnails.php
r870830 r888537 118 118 array( 119 119 'markup' => 'https://vimeo.com/channels/soundworkscollection/44520894', 120 'expected' => 'http:// b.vimeocdn.com/ts/313/130/313130530_640.jpg',121 'expected_hash' => ' e9fd72872a39272f6c540ee66b1ecf28',120 'expected' => 'http://i.vimeocdn.com/video/313130530_1280.jpg', 121 'expected_hash' => '32f742bbe980e5d98d8aa0256026b459', 122 122 'name' => __( 'Channel URL', 'video-thumbnails' ) 123 123 ), -
video-thumbnails/trunk/php/providers/class-youku-thumbnails.php
r870830 r888537 36 36 // Regex strings 37 37 public $regexes = array( 38 '#http://player\.youku\.com/embed/([A-Za-z0-9]+)#', // iFrame 38 39 '#http://player\.youku\.com/player\.php/sid/([A-Za-z0-9]+)/v\.swf#', // Flash 39 40 '#http://v\.youku\.com/v_show/id_([A-Za-z0-9]+)\.html#' // Link … … 57 58 return array( 58 59 array( 60 'markup' => '<iframe height=498 width=510 src="http://player.youku.com/embed/XMzQyMzk5MzQ4" frameborder=0 allowfullscreen></iframe>', 61 'expected' => 'http://g1.ykimg.com/1100641F464F0FB57407E2053DFCBC802FBBC4-E4C5-7A58-0394-26C366F10493', 62 'expected_hash' => 'deac7bb89058a8c46ae2350da9d33ba8', 63 'name' => __( 'iFrame Embed', 'video-thumbnails' ) 64 ), 65 array( 59 66 'markup' => '<embed src="http://player.youku.com/player.php/sid/XMzQyMzk5MzQ4/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" allowFullscreen="true" type="application/x-shockwave-flash"></embed>', 60 67 'expected' => 'http://g1.ykimg.com/1100641F464F0FB57407E2053DFCBC802FBBC4-E4C5-7A58-0394-26C366F10493', -
video-thumbnails/trunk/readme.txt
r877306 r888537 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 2.7. 17 Stable tag: 2.7.2 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 118 118 119 119 == Changelog == 120 121 = 2.7.2 = 122 * Added support for Youku iFrame embed code 123 * Fixed Vimeo channel URL test 120 124 121 125 = 2.7.1 = -
video-thumbnails/trunk/video-thumbnails.php
r877306 r888537 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7. 18 Version: 2.7.2 9 9 License: GPL2 10 10 Text Domain: video-thumbnails … … 31 31 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 32 32 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7. 1' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.2' ); 34 34 35 35 // Providers
Note: See TracChangeset
for help on using the changeset viewer.