Changeset 997497
- Timestamp:
- 09/27/2014 07:01:52 AM (11 years ago)
- Location:
- fluid-video-embeds/trunk
- Files:
-
- 3 edited
-
fluid-video-embeds.php (modified) (2 diffs)
-
lib/constants.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluid-video-embeds/trunk/fluid-video-embeds.php
r901424 r997497 5 5 Description: Makes your YouTube and Vimeo auto-embeds fluid/full width. 6 6 Author: jamie3d 7 Version: 1.2. 47 Version: 1.2.5 8 8 Author URI: http://jamie3d.com 9 9 */ … … 109 109 add_action( 'init', array( &$this, 'wp_register_styles' ), 1 ); 110 110 111 // Add the default stylesheet to the editor 112 add_action( 'after_setup_theme', array( &$this, 'add_editor_styles' ) ); 113 111 114 // Add the fve shortcode 112 115 add_shortcode( 'fve', array( &$this, 'shortcode' ) ); 116 } 117 118 /** 119 * Adds the default FVE stylesheet to the 120 * WYSIWYG editor so the shortcode executes correctly. 121 */ 122 function add_editor_styles() { 123 add_editor_style( FLUID_VIDEO_EMBEDS_URLPATH . "/stylesheets/main.css" ); 113 124 } 114 125 -
fluid-video-embeds/trunk/lib/constants.php
r901424 r997497 7 7 8 8 // The current version of this plugin 9 if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2. 4' );9 if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2.5' ); 10 10 11 11 // The cache prefix -
fluid-video-embeds/trunk/readme.txt
r901425 r997497 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: 3.96 Tested up to: 4.0 7 7 Stable tag: trunk 8 8 License: GPLv3 … … 63 63 64 64 == Changelog == 65 = 1.2.5 = 66 * Adds an editor stylesheet for TinyMCE 67 65 68 = 1.2.4 = 66 69 * Fixes a few PHP notices due to empty API results. … … 104 107 105 108 == Upgrade Notice == 109 = 1.2.5 = 110 * Adds an editor stylesheet for TinyMCE 111 106 112 = 1.2.4 = 107 113 * Adds a new YouTube option that allows you to force the 16:9 ratio.
Note: See TracChangeset
for help on using the changeset viewer.