Changeset 900464
- Timestamp:
- 04/22/2014 08:47:16 PM (12 years ago)
- Location:
- video-thumbnails
- Files:
-
- 3 deleted
- 4 edited
- 15 copied
-
tags/2.7.6 (copied) (copied from video-thumbnails/trunk)
-
tags/2.7.6/js/settings.js (copied) (copied from video-thumbnails/trunk/js/settings.js)
-
tags/2.7.6/languages (copied) (copied from video-thumbnails/trunk/languages)
-
tags/2.7.6/languages/video-thumbnails-de_DE.mo (copied) (copied from video-thumbnails/trunk/languages/video-thumbnails-de_DE.mo)
-
tags/2.7.6/languages/video-thumbnails-de_DE.po (copied) (copied from video-thumbnails/trunk/languages/video-thumbnails-de_DE.po)
-
tags/2.7.6/php/class-video-thumbnails-settings.php (copied) (copied from video-thumbnails/trunk/php/class-video-thumbnails-settings.php)
-
tags/2.7.6/php/extensions/automatic-youtube-video-posts.php (copied) (copied from video-thumbnails/trunk/php/extensions/automatic-youtube-video-posts.php)
-
tags/2.7.6/php/extensions/class-ayvp-thumbnails.php (deleted)
-
tags/2.7.6/php/extensions/class-simple-video-embedder-thumbnails.php (deleted)
-
tags/2.7.6/php/extensions/class-video-thumbnails-extension.php (deleted)
-
tags/2.7.6/php/extensions/extensions.php (copied) (copied from video-thumbnails/trunk/php/extensions/extensions.php)
-
tags/2.7.6/php/extensions/simple-video-embedder.php (copied) (copied from video-thumbnails/trunk/php/extensions/simple-video-embedder.php)
-
tags/2.7.6/php/extensions/wp-robot.php (copied) (copied from video-thumbnails/trunk/php/extensions/wp-robot.php)
-
tags/2.7.6/php/providers/class-dailymotion-thumbnails.php (modified) (1 diff)
-
tags/2.7.6/php/providers/class-vimeo-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-vimeo-thumbnails.php)
-
tags/2.7.6/php/providers/class-vk-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-vk-thumbnails.php)
-
tags/2.7.6/php/providers/class-youku-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-youku-thumbnails.php)
-
tags/2.7.6/readme.txt (copied) (copied from video-thumbnails/trunk/readme.txt) (2 diffs)
-
tags/2.7.6/video-thumbnails.php (copied) (copied from video-thumbnails/trunk/video-thumbnails.php) (2 diffs)
-
trunk/php/providers/class-dailymotion-thumbnails.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/video-thumbnails.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
video-thumbnails/tags/2.7.6/php/providers/class-dailymotion-thumbnails.php
r870830 r900464 37 37 public $regexes = array( 38 38 '#<object[^>]+>.+?http://www\.dailymotion\.com/swf/video/([A-Za-z0-9]+).+?</object>#s', // Dailymotion flash 39 '# https?://www\.dailymotion\.com/embed/video/([A-Za-z0-9]+)#', // Dailymotion iframe39 '#//www\.dailymotion\.com/embed/video/([A-Za-z0-9]+)#', // Dailymotion iframe 40 40 '#(?:https?://)?(?:www\.)?dailymotion\.com/video/([A-Za-z0-9]+)#' // Dailymotion URL 41 41 ); -
video-thumbnails/tags/2.7.6/readme.txt
r895399 r900464 5 5 Requires at least: 3.2 6 6 Tested up to: 3.9 7 Stable tag: 2.7. 57 Stable tag: 2.7.6 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 130 130 131 131 == Changelog == 132 133 = 2.7.6 = 134 * Added Dailymotion support for protocol-relative embeds 132 135 133 136 = 2.7.5 = -
video-thumbnails/tags/2.7.6/video-thumbnails.php
r895399 r900464 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7. 58 Version: 2.7.6 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. 5' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.6' ); 34 34 35 35 // Providers -
video-thumbnails/trunk/php/providers/class-dailymotion-thumbnails.php
r870830 r900464 37 37 public $regexes = array( 38 38 '#<object[^>]+>.+?http://www\.dailymotion\.com/swf/video/([A-Za-z0-9]+).+?</object>#s', // Dailymotion flash 39 '# https?://www\.dailymotion\.com/embed/video/([A-Za-z0-9]+)#', // Dailymotion iframe39 '#//www\.dailymotion\.com/embed/video/([A-Za-z0-9]+)#', // Dailymotion iframe 40 40 '#(?:https?://)?(?:www\.)?dailymotion\.com/video/([A-Za-z0-9]+)#' // Dailymotion URL 41 41 ); -
video-thumbnails/trunk/readme.txt
r895399 r900464 5 5 Requires at least: 3.2 6 6 Tested up to: 3.9 7 Stable tag: 2.7. 57 Stable tag: 2.7.6 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 130 130 131 131 == Changelog == 132 133 = 2.7.6 = 134 * Added Dailymotion support for protocol-relative embeds 132 135 133 136 = 2.7.5 = -
video-thumbnails/trunk/video-thumbnails.php
r895399 r900464 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.7. 58 Version: 2.7.6 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. 5' );33 define( 'VIDEO_THUMBNAILS_VERSION', '2.7.6' ); 34 34 35 35 // Providers
Note: See TracChangeset
for help on using the changeset viewer.