Changeset 1077206
- Timestamp:
- 01/28/2015 05:43:10 AM (11 years ago)
- Location:
- fluid-video-embeds/trunk
- Files:
-
- 3 edited
-
fluid-video-embeds.php (modified) (3 diffs)
-
lib/constants.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluid-video-embeds/trunk/fluid-video-embeds.php
r997499 r1077206 5 5 Description: Makes your YouTube and Vimeo auto-embeds fluid/full width. 6 6 Author: jamie3d 7 Version: 1.2. 57 Version: 1.2.6 8 8 Author URI: http://jamie3d.com 9 9 */ … … 392 392 } 393 393 394 $iframe_url = ' http://www.youtube.com/embed/' . $this->meta['id'] . '?wmode=transparent&modestbranding=1&autohide=1&showinfo=0&rel=0';395 $permalink = ' http://www.youtube.com/watch?v=' . $this->meta['id'];394 $iframe_url = '//www.youtube.com/embed/' . $this->meta['id'] . '?wmode=transparent&modestbranding=1&autohide=1&showinfo=0&rel=0'; 395 $permalink = '//www.youtube.com/watch?v=' . $this->meta['id']; 396 396 $thumbnail = isset( $this->meta['full_image'] ) ? $this->meta['full_image'] : ''; 397 397 break; … … 399 399 $wrapper_padding = ( $this->meta['aspect'] * 100 ) . '%'; 400 400 401 $iframe_url = ' http://player.vimeo.com/video/' . $this->meta['id'] . '?portrait=0&byline=0&title=0';402 $permalink = ' http://vimeo.com/' . $this->meta['id'];401 $iframe_url = '//player.vimeo.com/video/' . $this->meta['id'] . '?portrait=0&byline=0&title=0'; 402 $permalink = '//vimeo.com/' . $this->meta['id']; 403 403 $thumbnail = isset( $this->meta['full_image'] ) ? $this->meta['full_image'] : ''; 404 404 break; -
fluid-video-embeds/trunk/lib/constants.php
r997497 r1077206 7 7 8 8 // The current version of this plugin 9 if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2. 5' );9 if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2.6' ); 10 10 11 11 // The cache prefix -
fluid-video-embeds/trunk/readme.txt
r997497 r1077206 4 4 Tags: video, youtube, vimeo, fluid, flexible, elastic, responsive, 100%, full width, embed, oEmbed 5 5 Requires at least: 3.3 6 Tested up to: 4. 06 Tested up to: 4.1 7 7 Stable tag: trunk 8 8 License: GPLv3 … … 63 63 64 64 == Changelog == 65 = 1.2.6 = 66 * Removes the scheme (`http://`) from the iframe URLs for better `https://` support. Thanks to NicholasCook for the fix. 67 65 68 = 1.2.5 = 66 69 * Adds an editor stylesheet for TinyMCE … … 107 110 108 111 == Upgrade Notice == 112 = 1.2.6 = 113 * Fixes https issue 114 109 115 = 1.2.5 = 110 116 * Adds an editor stylesheet for TinyMCE
Note: See TracChangeset
for help on using the changeset viewer.