mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 05:25:08 +02:00
Merge branch 'w13_MDL-38673_m25_flowplayer' of git://github.com/skodak/moodle
This commit is contained in:
commit
0231f91d86
@ -1,8 +1,34 @@
|
||||
Version history:
|
||||
|
||||
3.2.16
|
||||
------
|
||||
- #15 fixes for #627, handle the display init on startup.
|
||||
- #615 dispatch begin if in paused mode too early.
|
||||
- #629 if start has been dispatched already prevent dispatching many begin events.
|
||||
- #20 for the free player swap the logo with the stage video mask to display underneath not on top.
|
||||
- #42 pass in stream clips through and close the stream before returning to the parent clip.
|
||||
- #52 when replaying flag start has dispatched on the current clip.
|
||||
- #44 fixes for #627 check if the stagevideo dimensions and positioning has changed to update the stage video mask with.
|
||||
- unbinding and binding stage video events caused issues with instream playlists therefore has to be kept binded.
|
||||
unbinded stage video events during seeking to prevent the mask repositioning.
|
||||
- #53 update url filter to accomodate for pretty urls with semi colons.
|
||||
- #50 if we have metadata already set it is being updated during seeks and switching, dispatch metadata change events instead.
|
||||
|
||||
3.2.15
|
||||
------
|
||||
- #614 when the clip ends if the next clip in the provider has a different provider close the provider stream.
|
||||
- #627 only detach / attach the display on start events which causes issues in buffering events after a seek in stagevideo.
|
||||
- #627 re-enable stagevideo state change listeners if stagevideo is available or detach the fullscreen events on first call.
|
||||
- #9 when replaying from stopping, connection does not receive callbacks anymore.
|
||||
|
||||
|
||||
|
||||
|
||||
3.2.13
|
||||
------
|
||||
- Updated to automatically load the latest controls and audio plugins
|
||||
- #612 add some logging for the stagevideo render state to determine what mode the hardware acceleration is in for various systems.
|
||||
- #628 opera browsers do not return filesize correctly for latest flash players so require to use load completion instead which may help with gzipped files also.
|
||||
|
||||
3.2.12
|
||||
------
|
||||
|
File diff suppressed because it is too large
Load Diff
24
lib/flowplayer/flowplayer-3.2.11.min.js
vendored
24
lib/flowplayer/flowplayer-3.2.11.min.js
vendored
File diff suppressed because one or more lines are too long
1014
lib/flowplayer/flowplayer-3.2.12.js
Normal file
1014
lib/flowplayer/flowplayer-3.2.12.js
Normal file
File diff suppressed because it is too large
Load Diff
24
lib/flowplayer/flowplayer-3.2.12.min.js
vendored
Normal file
24
lib/flowplayer/flowplayer-3.2.12.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
lib/flowplayer/flowplayer-3.2.16.swf
Normal file
BIN
lib/flowplayer/flowplayer-3.2.16.swf
Normal file
Binary file not shown.
Binary file not shown.
BIN
lib/flowplayer/flowplayer.controls-3.2.15.swf
Normal file
BIN
lib/flowplayer/flowplayer.controls-3.2.15.swf
Normal file
Binary file not shown.
@ -1839,9 +1839,9 @@ M.util.load_flowplayer = function() {
|
||||
for(var i=0; i<M.util.video_players.length; i++) {
|
||||
var video = M.util.video_players[i];
|
||||
if (video.width > 0 && video.height > 0) {
|
||||
var src = {src: M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.14.swf', width: video.width, height: video.height};
|
||||
var src = {src: M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.16.swf', width: video.width, height: video.height};
|
||||
} else {
|
||||
var src = M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.14.swf';
|
||||
var src = M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.16.swf';
|
||||
}
|
||||
flowplayer(video.id, src, {
|
||||
plugins: {controls: controls},
|
||||
@ -1941,7 +1941,7 @@ M.util.load_flowplayer = function() {
|
||||
controls.height = 25;
|
||||
controls.time = true;
|
||||
}
|
||||
flowplayer(audio.id, M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.14.swf', {
|
||||
flowplayer(audio.id, M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.16.swf', {
|
||||
plugins: {controls: controls, audio: {url: M.cfg.wwwroot + '/lib/flowplayer/flowplayer.audio-3.2.10.swf'}},
|
||||
clip: {url: audio.fileurl, provider: "audio", autoPlay: false}
|
||||
});
|
||||
@ -1949,9 +1949,9 @@ M.util.load_flowplayer = function() {
|
||||
}
|
||||
|
||||
if (M.cfg.jsrev == -1) {
|
||||
var jsurl = M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.11.js';
|
||||
var jsurl = M.cfg.wwwroot + '/lib/flowplayer/flowplayer-3.2.12.js';
|
||||
} else {
|
||||
var jsurl = M.cfg.wwwroot + '/lib/javascript.php?jsfile=/lib/flowplayer/flowplayer-3.2.11.min.js&rev=' + M.cfg.jsrev;
|
||||
var jsurl = M.cfg.wwwroot + '/lib/javascript.php?jsfile=/lib/flowplayer/flowplayer-3.2.12.min.js&rev=' + M.cfg.jsrev;
|
||||
}
|
||||
var fileref = document.createElement('script');
|
||||
fileref.setAttribute('type','text/javascript');
|
||||
|
@ -95,7 +95,7 @@
|
||||
<location>flowplayer</location>
|
||||
<name>Flowplayer</name>
|
||||
<license>GPL</license>
|
||||
<version>3.2.14</version>
|
||||
<version>3.2.16</version>
|
||||
<licenseversion>3</licenseversion>
|
||||
</library>
|
||||
<library>
|
||||
|
Loading…
x
Reference in New Issue
Block a user