Skip to content

Commit d69cf96

Browse files
chore(package): bump version to 0.4.15
1 parent 2ba8597 commit d69cf96

6 files changed

+36
-26
lines changed

dist/clappr-core.esm.js

+16-11
Original file line numberDiff line numberDiff line change
@@ -5093,6 +5093,7 @@ var Container = /*#__PURE__*/function (_UIObject) {
50935093
this.listenTo(this.playback, Events.PLAYBACK_DVR, this.playbackDvrStateChanged);
50945094
this.listenTo(this.playback, Events.PLAYBACK_MEDIACONTROL_DISABLE, this.disableMediaControl);
50955095
this.listenTo(this.playback, Events.PLAYBACK_MEDIACONTROL_ENABLE, this.enableMediaControl);
5096+
this.listenTo(this.playback, Events.PLAYBACK_SEEK, this.onSeek);
50965097
this.listenTo(this.playback, Events.PLAYBACK_SEEKED, this.onSeeked);
50975098
this.listenTo(this.playback, Events.PLAYBACK_ENDED, this.onEnded);
50985099
this.listenTo(this.playback, Events.PLAYBACK_PLAY, this.playing);
@@ -5339,9 +5340,13 @@ var Container = /*#__PURE__*/function (_UIObject) {
53395340
}, {
53405341
key: "seek",
53415342
value: function seek(time) {
5342-
this.trigger(Events.CONTAINER_SEEK, time, this.name);
53435343
this.playback.seek(time);
53445344
}
5345+
}, {
5346+
key: "onSeek",
5347+
value: function onSeek(time) {
5348+
this.trigger(Events.CONTAINER_SEEK, time, this.name);
5349+
}
53455350
}, {
53465351
key: "onSeeked",
53475352
value: function onSeeked() {
@@ -6672,7 +6677,7 @@ var Loader = (function () {
66726677
plugins: {},
66736678
playbacks: []
66746679
};
6675-
var currentVersion = "0.4.14";
6680+
var currentVersion = "0.4.15";
66766681
return /*#__PURE__*/function () {
66776682
_createClass(Loader, null, [{
66786683
key: "checkVersionSupport",
@@ -7936,7 +7941,7 @@ var HTML5Video = /*#__PURE__*/function (_Playback) {
79367941
key: "supportedVersion",
79377942
get: function get() {
79387943
return {
7939-
min: "0.4.14"
7944+
min: "0.4.15"
79407945
};
79417946
}
79427947
}, {
@@ -8400,9 +8405,9 @@ var HTML5Video = /*#__PURE__*/function (_Playback) {
84008405
}, {
84018406
key: "_onSeeking",
84028407
value: function _onSeeking() {
8403-
this._handleBufferingEvents();
8408+
this.trigger(Events.PLAYBACK_SEEK, this.getCurrentTime());
84048409

8405-
this.trigger(Events.PLAYBACK_SEEK);
8410+
this._handleBufferingEvents();
84068411
}
84078412
}, {
84088413
key: "_onSeeked",
@@ -8741,7 +8746,7 @@ var HTML5Audio = /*#__PURE__*/function (_HTML5Video) {
87418746
key: "supportedVersion",
87428747
get: function get() {
87438748
return {
8744-
min: "0.4.14"
8749+
min: "0.4.15"
87458750
};
87468751
}
87478752
}, {
@@ -8791,7 +8796,7 @@ var HTMLImg = /*#__PURE__*/function (_Playback) {
87918796
key: "supportedVersion",
87928797
get: function get() {
87938798
return {
8794-
min: "0.4.14"
8799+
min: "0.4.15"
87958800
};
87968801
}
87978802
}, {
@@ -8874,7 +8879,7 @@ var NoOp = /*#__PURE__*/function (_Playback) {
88748879
key: "supportedVersion",
88758880
get: function get() {
88768881
return {
8877-
min: "0.4.14"
8882+
min: "0.4.15"
88788883
};
88798884
}
88808885
}, {
@@ -9030,7 +9035,7 @@ var Strings = /*#__PURE__*/function (_CorePlugin) {
90309035
key: "supportedVersion",
90319036
get: function get() {
90329037
return {
9033-
min: "0.4.14"
9038+
min: "0.4.15"
90349039
};
90359040
}
90369041
}]);
@@ -9178,7 +9183,7 @@ var SourcesPlugin = /*#__PURE__*/function (_CorePlugin) {
91789183
key: "supportedVersion",
91799184
get: function get() {
91809185
return {
9181-
min: "0.4.14"
9186+
min: "0.4.15"
91829187
};
91839188
}
91849189
}]);
@@ -9187,7 +9192,7 @@ var SourcesPlugin = /*#__PURE__*/function (_CorePlugin) {
91879192
}(CorePlugin);
91889193

91899194
// Copyright 2014 Globo.com Player authors. All rights reserved.
9190-
var version = "0.4.14"; // Built-in Plugins/Playbacks
9195+
var version = "0.4.15"; // Built-in Plugins/Playbacks
91919196

91929197
Loader.registerPlugin(Strings);
91939198
Loader.registerPlugin(SourcesPlugin);

dist/clappr-core.js

+16-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clappr-core.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clappr-core.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clappr-core.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clappr/core",
3-
"version": "0.4.14",
3+
"version": "0.4.15",
44
"description": "Core components of the extensible media player for the web",
55
"main": "./dist/clappr-core.js",
66
"module": "./dist/clappr-core.esm.js",

0 commit comments

Comments
 (0)