FV Flowplayer Video Player - Version 7.2.7.727

Version Description

  • 2018/10/18 =

  • Urgent bugfix due to a playlist malfunction caused by the Redirect feature change in previous release

Download this release

Release Info

Developer FolioVision
Plugin Icon 128x128 FV Flowplayer Video Player
Version 7.2.7.727
Comparing to
See all releases

Code changes from version 7.2.5.727 to 7.2.7.727

css/flowplayer.css CHANGED
@@ -128,11 +128,9 @@
128
  .flowplayer.is-flash-disabled .fp-engine {
129
  top: 0; }
130
 
131
- .flowplayer.is-tiny {
132
- font-size: .7em; }
133
 
134
- .flowplayer.is-small {
135
- font-size: .8em; }
136
 
137
  .flowplayer.no-buffer .fp-ui .fp-controls .fp-timeline .fp-buffer {
138
  display: none; }
128
  .flowplayer.is-flash-disabled .fp-engine {
129
  top: 0; }
130
 
131
+ .flowplayer.is-tiny:not(.is-fullscreen) { font-size: .7em; }
 
132
 
133
+ .flowplayer.is-small:not(.is-fullscreen) { font-size: .8em; }
 
134
 
135
  .flowplayer.no-buffer .fp-ui .fp-controls .fp-timeline .fp-buffer {
136
  display: none; }
flowplayer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: FV Player
4
  Plugin URI: http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer
5
  Description: Formerly FV WordPress Flowplayer. Supports MP4, HLS, MPEG-DASH, WebM and OGV. Advanced features such as overlay ads or popups. Uses Flowplayer 7.2.7.
6
- Version: 7.2.5.727
7
  Author URI: http://foliovision.com/
8
  License: GPL-3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
@@ -26,7 +26,7 @@ License URI: http://www.gnu.org/licenses/gpl-3.0.txt
26
  along with this program. If not, see <http://www.gnu.org/licenses/>.
27
  */
28
 
29
- $fv_wp_flowplayer_ver = '7.2.5.727';
30
  $fv_wp_flowplayer_core_ver = '7.2.7.1';
31
 
32
  include_once( dirname( __FILE__ ) . '/includes/extra-functions.php' );
3
  Plugin Name: FV Player
4
  Plugin URI: http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer
5
  Description: Formerly FV WordPress Flowplayer. Supports MP4, HLS, MPEG-DASH, WebM and OGV. Advanced features such as overlay ads or popups. Uses Flowplayer 7.2.7.
6
+ Version: 7.2.7.727
7
  Author URI: http://foliovision.com/
8
  License: GPL-3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
26
  along with this program. If not, see <http://www.gnu.org/licenses/>.
27
  */
28
 
29
+ $fv_wp_flowplayer_ver = '7.2.7.727';
30
  $fv_wp_flowplayer_core_ver = '7.2.7.1';
31
 
32
  include_once( dirname( __FILE__ ) . '/includes/extra-functions.php' );
flowplayer/fv-flowplayer.min.js CHANGED
@@ -825,15 +825,11 @@ flowplayer( function(api,root) {
825
  }, 100 );
826
  });
827
 
828
- api.bind('finish', function() {
829
- if( root.data('fv_redirect') ) {
830
- var url = root.data('fv_redirect');
831
- var windowFVFlowplayerRedirect = window.open(url, '_blank');
832
- if( ( typeof(windowFVFlowplayerRedirect) == "undefined" || windowFVFlowplayerRedirect == null ) && ( typeof(api.video.is_last) == "undefined" || api.video.is_last ) ) {
833
- location.href = url;
834
- }
835
  }
836
-
837
  });
838
 
839
  if( flowplayer.support.iOS && flowplayer.support.iOS.version == 11 ) {
@@ -846,12 +842,9 @@ flowplayer( function(api,root) {
846
  e.preventDefault();
847
  });
848
 
849
- api.bind("ready fullscreen fullscreen-exit", function (e, api, video) {
850
- jQuery('.fp-chromecast').insertAfter('.fp-fullscreen');
851
- setTimeout( function() {
852
- jQuery('.fp-chromecast').insertAfter('.fp-fullscreen');
853
- },0);
854
- });
855
 
856
  });
857
 
825
  }, 100 );
826
  });
827
 
828
+ api.bind('finish', function() {
829
+ var url = root.data('fv_redirect');
830
+ if( url && ( typeof(api.video.is_last) == "undefined" || api.video.is_last ) ) {
831
+ location.href = url;
 
 
 
832
  }
 
833
  });
834
 
835
  if( flowplayer.support.iOS && flowplayer.support.iOS.version == 11 ) {
842
  e.preventDefault();
843
  });
844
 
845
+ api.one("ready", function (e, api, video) {
846
+ root.find('.fp-chromecast').insertAfter( root.find('.fp-header .fp-fullscreen') );
847
+ });
 
 
 
848
 
849
  });
850
 
readme.txt CHANGED
@@ -357,6 +357,16 @@ Thank you for being part of the HMTL 5 mobile video revolution!
357
 
358
  == Changelog ==
359
 
 
 
 
 
 
 
 
 
 
 
360
  = 7.2.5.727 - 2018/10/16 =
361
 
362
  * HLS - player size now limits the ABR
357
 
358
  == Changelog ==
359
 
360
+ = 7.2.7.727 - 2018/10/18 =
361
+
362
+ * Urgent bugfix due to a playlist malfunction caused by the Redirect feature change in previous release
363
+
364
+ = 7.2.6.727 - 2018/10/18 =
365
+
366
+ * Chromecast - fixing multiple Chromecast buttons appearing
367
+ * Redirection - not creating the popup window anymore as in 99% of cases it's blocked
368
+ * Styling - fixing problem with small buttons in fullscreen
369
+
370
  = 7.2.5.727 - 2018/10/16 =
371
 
372
  * HLS - player size now limits the ABR