Plugin Directory

Changeset 1099422


Ignore:
Timestamp:
02/25/2015 05:46:43 PM (11 years ago)
Author:
billknechtel
Message:

Add showinfo support, tag 1.3.2

Location:
responsive-video-light
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • responsive-video-light/tags/1.3.2/readme.txt

    r1085786 r1099422  
    44Requires at least: 3.0
    55Tested up to: 4.1
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717*    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.
    1818*    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).
    2020*    Vimeo videos can have the video portrait, title, and byline shut off.
    2121*    A comprehensive settings screen which explains all the options and shows you the syntax of the shortcodes.
     
    8484== Changelog ==
    8585
     86= 1.3.2 =
     87* Add showinfo parameter support
     88
    8689= 1.3.1 =
    8790* Added missing admin screen CSS.  D'oh!
  • responsive-video-light/tags/1.3.2/responsive-video-light.php

    r1083436 r1099422  
    44 * Plugin URI: http://bitpusher.tk/responsive-video-light
    55 * Description: A plugin to add responsive videos to pages and posts
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: Bill Knechtel
    88 * Author URI: http://bitpusher.tk
     
    153153                $query_string['rel'] = '0';
    154154                break;
     155            case 'disable_youtube_showinfo':
     156                $query_string['showinfo'] = '0';
     157                break;
    155158            case 'enable_youtube_autoplay':
    156159                $query_string['autoplay'] = '1';
     
    190193            case 'norel':
    191194                $query_string['rel'] = '0';
     195                break;
     196            case 'showinfo':
     197                $query_string['showinfo'] = '1';
     198                break;
     199            case 'noshowinfo':
     200                $query_string['showinfo'] = '0';
    192201                break;
    193202            case 'wmode_opaque':
  • responsive-video-light/tags/1.3.2/templates/rvl_plugin_options.html

    r1083436 r1099422  
    4141                                    Automatically begin playback of a video as soon as
    4242                                    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&nbsp;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&nbsp;setting.
    4363                                </td>
    4464                            </tr>
  • responsive-video-light/trunk/readme.txt

    r1085786 r1099422  
    44Requires at least: 3.0
    55Tested up to: 4.1
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717*    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.
    1818*    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).
    2020*    Vimeo videos can have the video portrait, title, and byline shut off.
    2121*    A comprehensive settings screen which explains all the options and shows you the syntax of the shortcodes.
     
    8484== Changelog ==
    8585
     86= 1.3.2 =
     87* Add showinfo parameter support
     88
    8689= 1.3.1 =
    8790* Added missing admin screen CSS.  D'oh!
  • responsive-video-light/trunk/responsive-video-light.php

    r1083436 r1099422  
    44 * Plugin URI: http://bitpusher.tk/responsive-video-light
    55 * Description: A plugin to add responsive videos to pages and posts
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: Bill Knechtel
    88 * Author URI: http://bitpusher.tk
     
    153153                $query_string['rel'] = '0';
    154154                break;
     155            case 'disable_youtube_showinfo':
     156                $query_string['showinfo'] = '0';
     157                break;
    155158            case 'enable_youtube_autoplay':
    156159                $query_string['autoplay'] = '1';
     
    190193            case 'norel':
    191194                $query_string['rel'] = '0';
     195                break;
     196            case 'showinfo':
     197                $query_string['showinfo'] = '1';
     198                break;
     199            case 'noshowinfo':
     200                $query_string['showinfo'] = '0';
    192201                break;
    193202            case 'wmode_opaque':
  • responsive-video-light/trunk/templates/rvl_plugin_options.html

    r1083436 r1099422  
    4141                                    Automatically begin playback of a video as soon as
    4242                                    the page it's on is&nbsp;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&nbsp;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&nbsp;setting.
    4363                                </td>
    4464                            </tr>
Note: See TracChangeset for help on using the changeset viewer.