Changeset 1099422
- Timestamp:
- 02/25/2015 05:46:43 PM (11 years ago)
- Location:
- responsive-video-light
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.2 (copied) (copied from responsive-video-light/trunk)
-
tags/1.3.2/readme.txt (modified) (3 diffs)
-
tags/1.3.2/responsive-video-light.php (modified) (3 diffs)
-
tags/1.3.2/templates/rvl_plugin_options.html (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/responsive-video-light.php (modified) (3 diffs)
-
trunk/templates/rvl_plugin_options.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
responsive-video-light/tags/1.3.2/readme.txt
r1085786 r1099422 4 4 Requires at least: 3.0 5 5 Tested up to: 4.1 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 * Fully responsive so the video's viewport will fill the width of the containing area and scale depending on screen size. No need to set a width and height, just set the width of the div your content sits in. 18 18 * YouTube videos have a shortcode attribute that lets you turn "related videos" on or off. "Related Videos" are the links that tile across the viewport when a video has completed playing. 19 * YouTube videos also support light and dark themes, autoplaying, and modest branding which removes most YouTube imagery.19 * YouTube videos also support light and dark themes, autoplaying, showinfo, and modest branding (which removes most YouTube brand imagery). 20 20 * Vimeo videos can have the video portrait, title, and byline shut off. 21 21 * A comprehensive settings screen which explains all the options and shows you the syntax of the shortcodes. … … 84 84 == Changelog == 85 85 86 = 1.3.2 = 87 * Add showinfo parameter support 88 86 89 = 1.3.1 = 87 90 * Added missing admin screen CSS. D'oh! -
responsive-video-light/tags/1.3.2/responsive-video-light.php
r1083436 r1099422 4 4 * Plugin URI: http://bitpusher.tk/responsive-video-light 5 5 * Description: A plugin to add responsive videos to pages and posts 6 * Version: 1.3. 16 * Version: 1.3.2 7 7 * Author: Bill Knechtel 8 8 * Author URI: http://bitpusher.tk … … 153 153 $query_string['rel'] = '0'; 154 154 break; 155 case 'disable_youtube_showinfo': 156 $query_string['showinfo'] = '0'; 157 break; 155 158 case 'enable_youtube_autoplay': 156 159 $query_string['autoplay'] = '1'; … … 190 193 case 'norel': 191 194 $query_string['rel'] = '0'; 195 break; 196 case 'showinfo': 197 $query_string['showinfo'] = '1'; 198 break; 199 case 'noshowinfo': 200 $query_string['showinfo'] = '0'; 192 201 break; 193 202 case 'wmode_opaque': -
responsive-video-light/tags/1.3.2/templates/rvl_plugin_options.html
r1083436 r1099422 41 41 Automatically begin playback of a video as soon as 42 42 the page it's on is loaded. 43 </td> 44 </tr> 45 <tr> 46 <td>Disable Show Info</td> 47 <td> 48 <input name="rvl_options_field[disable_youtube_showinfo]" 49 id="rvl-youtube-showinfo" 50 type="checkbox" value="1" 51 {% if disable_youtube_showinfo %}checked="checked"{% endif %} /> 52 </td> 53 <td><label for="rvl-youtube-showinfo"> 54 Disable title and extra info before playback</label></td> 55 <td><code>showinfo</code>, <code>noshowinfo</code></td> 56 <td> 57 Whether or not to allow the player to display information 58 like the video title and uploader before the video starts playing. 59 By default, the info is displayed. <strong>NOTE</strong>: This option 60 is slightly at odds with <code>modestbranding</code>. If you disable 61 showinfo, YouTube branding will be shown regardless of the 62 modestbranding setting. 43 63 </td> 44 64 </tr> -
responsive-video-light/trunk/readme.txt
r1085786 r1099422 4 4 Requires at least: 3.0 5 5 Tested up to: 4.1 6 Stable tag: 1.3. 16 Stable tag: 1.3.2 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 * Fully responsive so the video's viewport will fill the width of the containing area and scale depending on screen size. No need to set a width and height, just set the width of the div your content sits in. 18 18 * YouTube videos have a shortcode attribute that lets you turn "related videos" on or off. "Related Videos" are the links that tile across the viewport when a video has completed playing. 19 * YouTube videos also support light and dark themes, autoplaying, and modest branding which removes most YouTube imagery.19 * YouTube videos also support light and dark themes, autoplaying, showinfo, and modest branding (which removes most YouTube brand imagery). 20 20 * Vimeo videos can have the video portrait, title, and byline shut off. 21 21 * A comprehensive settings screen which explains all the options and shows you the syntax of the shortcodes. … … 84 84 == Changelog == 85 85 86 = 1.3.2 = 87 * Add showinfo parameter support 88 86 89 = 1.3.1 = 87 90 * Added missing admin screen CSS. D'oh! -
responsive-video-light/trunk/responsive-video-light.php
r1083436 r1099422 4 4 * Plugin URI: http://bitpusher.tk/responsive-video-light 5 5 * Description: A plugin to add responsive videos to pages and posts 6 * Version: 1.3. 16 * Version: 1.3.2 7 7 * Author: Bill Knechtel 8 8 * Author URI: http://bitpusher.tk … … 153 153 $query_string['rel'] = '0'; 154 154 break; 155 case 'disable_youtube_showinfo': 156 $query_string['showinfo'] = '0'; 157 break; 155 158 case 'enable_youtube_autoplay': 156 159 $query_string['autoplay'] = '1'; … … 190 193 case 'norel': 191 194 $query_string['rel'] = '0'; 195 break; 196 case 'showinfo': 197 $query_string['showinfo'] = '1'; 198 break; 199 case 'noshowinfo': 200 $query_string['showinfo'] = '0'; 192 201 break; 193 202 case 'wmode_opaque': -
responsive-video-light/trunk/templates/rvl_plugin_options.html
r1083436 r1099422 41 41 Automatically begin playback of a video as soon as 42 42 the page it's on is loaded. 43 </td> 44 </tr> 45 <tr> 46 <td>Disable Show Info</td> 47 <td> 48 <input name="rvl_options_field[disable_youtube_showinfo]" 49 id="rvl-youtube-showinfo" 50 type="checkbox" value="1" 51 {% if disable_youtube_showinfo %}checked="checked"{% endif %} /> 52 </td> 53 <td><label for="rvl-youtube-showinfo"> 54 Disable title and extra info before playback</label></td> 55 <td><code>showinfo</code>, <code>noshowinfo</code></td> 56 <td> 57 Whether or not to allow the player to display information 58 like the video title and uploader before the video starts playing. 59 By default, the info is displayed. <strong>NOTE</strong>: This option 60 is slightly at odds with <code>modestbranding</code>. If you disable 61 showinfo, YouTube branding will be shown regardless of the 62 modestbranding setting. 43 63 </td> 44 64 </tr>
Note: See TracChangeset
for help on using the changeset viewer.