Plugin Directory

Changeset 1302548


Ignore:
Timestamp:
12/07/2015 09:33:55 PM (10 years ago)
Author:
trillamar
Message:

Release 3.14

Location:
secure-html5-video-player/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • secure-html5-video-player/trunk/readme.txt

    r1175628 r1302548  
    33Tags: html5, video, player, secure, javascript, m4v, mp4, ogg, ogv, theora, webm, skins, media server, youtube, vimeo, amazon, s3
    44Requires at least: 3.0
    5 Tested up to: 4.1
    6 Stable tag: 3.13
     5Tested up to: 4.3.1
     6Stable tag: 3.14
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    128128== Changelog ==
    129129
     130= 3.14 =
     131* Fixed bad styling inherited from default Wordpress themes for box-sizing.
     132* Fixed use of deprecated PHP parent constructor.
     133
    130134= 3.13 =
    131135* Fixed a bug Youtube embeds failed to render because of failure to load the Youtube API.
     
    236240== Upgrade Notice ==
    237241
     242= 3.14 =
     243Fixed bad styling inherited from default Wordpress themes for box-sizing. Fixed use of deprecated PHP parent constructor.
     244
    238245= 3.13 =
    239246Fixed a bug Youtube embeds failed to render because of failure to load the Youtube API.
  • secure-html5-video-player/trunk/secure-html5-video-player.php

    r1175628 r1302548  
    55Description: Secure HTML5 Video Player allows you to play HTML5 video on modern browsers. Videos can be served privately; pseudo-streamed from a secured directory or via S3.
    66Author: Lucinda Brown, Jinsoo Kang
    7 Version: 3.13
     7Version: 3.14
    88Author URI: http://www.trillamar.com/
    99License: GPLv3
  • secure-html5-video-player/trunk/sh5vp-widgets.php

    r985103 r1302548  
    3232            'width' => 400
    3333        );
    34         $this->WP_Widget(false, __('Secure HTML5 Video Player', 'secure-html5-video-player'), $widget_ops, $control_ops);
     34        parent::__construct(false, __('Secure HTML5 Video Player', 'secure-html5-video-player'), $widget_ops, $control_ops);
    3535    }
    3636
  • secure-html5-video-player/trunk/video-js/video-js.css

    r421358 r1302548  
    88   Will be set to the width of the video element through JS
    99   If you want to add some kind of frame or special positioning, use another containing element, not video-js-box. */
    10 .video-js-box { text-align: left; position: relative; line-height: 0 !important; margin: 0; padding: 0 !important; border: none !important;  }
     10.video-js-box { text-align: left; position: relative; line-height: 0 !important; margin: 0; padding: 0 !important; border: none !important; 
     11box-sizing: content-box !important;
     12}
    1113
    1214/* Video Element */
Note: See TracChangeset for help on using the changeset viewer.