Changeset 841939
- Timestamp:
- 01/20/2014 06:21:57 PM (12 years ago)
- Location:
- video-thumbnails
- Files:
-
- 2 edited
- 24 copied
-
tags/2.4.2 (copied) (copied from video-thumbnails/trunk)
-
tags/2.4.2/css (copied) (copied from video-thumbnails/trunk/css)
-
tags/2.4.2/js/bulk.js (copied) (copied from video-thumbnails/trunk/js/bulk.js)
-
tags/2.4.2/php/class-video-thumbnails-settings.php (copied) (copied from video-thumbnails/trunk/php/class-video-thumbnails-settings.php)
-
tags/2.4.2/php/providers/class-blip-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-blip-thumbnails.php)
-
tags/2.4.2/php/providers/class-collegehumor-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-collegehumor-thumbnails.php)
-
tags/2.4.2/php/providers/class-dailymotion-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-dailymotion-thumbnails.php)
-
tags/2.4.2/php/providers/class-facebook-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-facebook-thumbnails.php)
-
tags/2.4.2/php/providers/class-funnyordie-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-funnyordie-thumbnails.php)
-
tags/2.4.2/php/providers/class-googledrive-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-googledrive-thumbnails.php)
-
tags/2.4.2/php/providers/class-justintv-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-justintv-thumbnails.php)
-
tags/2.4.2/php/providers/class-kaltura-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-kaltura-thumbnails.php)
-
tags/2.4.2/php/providers/class-metacafe-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-metacafe-thumbnails.php)
-
tags/2.4.2/php/providers/class-mpora-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-mpora-thumbnails.php)
-
tags/2.4.2/php/providers/class-rutube-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-rutube-thumbnails.php)
-
tags/2.4.2/php/providers/class-twitch-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-twitch-thumbnails.php)
-
tags/2.4.2/php/providers/class-video-thumbnails-providers.php (copied) (copied from video-thumbnails/trunk/php/providers/class-video-thumbnails-providers.php)
-
tags/2.4.2/php/providers/class-vimeo-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-vimeo-thumbnails.php)
-
tags/2.4.2/php/providers/class-vine-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-vine-thumbnails.php)
-
tags/2.4.2/php/providers/class-wistia-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-wistia-thumbnails.php)
-
tags/2.4.2/php/providers/class-youku-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-youku-thumbnails.php)
-
tags/2.4.2/php/providers/class-youtube-thumbnails.php (copied) (copied from video-thumbnails/trunk/php/providers/class-youtube-thumbnails.php)
-
tags/2.4.2/readme.txt (copied) (copied from video-thumbnails/trunk/readme.txt) (2 diffs)
-
tags/2.4.2/video-thumbnails.php (copied) (copied from video-thumbnails/trunk/video-thumbnails.php) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/video-thumbnails.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
video-thumbnails/tags/2.4.2/readme.txt
r840515 r841939 5 5 Requires at least: 3.1 6 6 Tested up to: 3.8 7 Stable tag: 2.4. 17 Stable tag: 2.4.2 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 111 111 112 112 == Changelog == 113 114 = 2.4.2 = 115 * Fixed bug with image download test 113 116 114 117 = 2.4.1 = -
video-thumbnails/tags/2.4.2/video-thumbnails.php
r840515 r841939 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.4. 18 Version: 2.4.2 9 9 License: GPL2 10 10 */ … … 29 29 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 30 30 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 31 define( 'VIDEO_THUMBNAILS_VERSION', '2.4. 1' );31 define( 'VIDEO_THUMBNAILS_VERSION', '2.4.2' ); 32 32 33 33 // Providers … … 289 289 * @return string A filename (without the extension) 290 290 */ 291 function construct_filename( $post_id ) {291 static function construct_filename( $post_id ) { 292 292 $filename = get_the_title( $post_id ); 293 293 $filename = sanitize_title( $filename, $post_id ); … … 321 321 322 322 // Construct a file name with extension 323 $new_filename = $this->construct_filename( $post_id ) . $image_extension;323 $new_filename = self::construct_filename( $post_id ) . $image_extension; 324 324 325 325 // Save the image bits using the new filename -
video-thumbnails/trunk/readme.txt
r840515 r841939 5 5 Requires at least: 3.1 6 6 Tested up to: 3.8 7 Stable tag: 2.4. 17 Stable tag: 2.4.2 8 8 9 9 Video Thumbnails simplifies the process of automatically displaying video thumbnails in your WordPress template. … … 111 111 112 112 == Changelog == 113 114 = 2.4.2 = 115 * Fixed bug with image download test 113 116 114 117 = 2.4.1 = -
video-thumbnails/trunk/video-thumbnails.php
r840515 r841939 6 6 Author: Sutherland Boswell 7 7 Author URI: http://sutherlandboswell.com 8 Version: 2.4. 18 Version: 2.4.2 9 9 License: GPL2 10 10 */ … … 29 29 define( 'VIDEO_THUMBNAILS_PATH', dirname(__FILE__) ); 30 30 define( 'VIDEO_THUMBNAILS_FIELD', '_video_thumbnail' ); 31 define( 'VIDEO_THUMBNAILS_VERSION', '2.4. 1' );31 define( 'VIDEO_THUMBNAILS_VERSION', '2.4.2' ); 32 32 33 33 // Providers … … 289 289 * @return string A filename (without the extension) 290 290 */ 291 function construct_filename( $post_id ) {291 static function construct_filename( $post_id ) { 292 292 $filename = get_the_title( $post_id ); 293 293 $filename = sanitize_title( $filename, $post_id ); … … 321 321 322 322 // Construct a file name with extension 323 $new_filename = $this->construct_filename( $post_id ) . $image_extension;323 $new_filename = self::construct_filename( $post_id ) . $image_extension; 324 324 325 325 // Save the image bits using the new filename
Note: See TracChangeset
for help on using the changeset viewer.