Skip to content

Commit

Permalink
chore(package): bump version to 0.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonatangcavalcanti committed Nov 5, 2020
1 parent 2ba8597 commit d69cf96
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 26 deletions.
27 changes: 16 additions & 11 deletions dist/clappr-core.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5093,6 +5093,7 @@ var Container = /*#__PURE__*/function (_UIObject) {
this.listenTo(this.playback, Events.PLAYBACK_DVR, this.playbackDvrStateChanged);
this.listenTo(this.playback, Events.PLAYBACK_MEDIACONTROL_DISABLE, this.disableMediaControl);
this.listenTo(this.playback, Events.PLAYBACK_MEDIACONTROL_ENABLE, this.enableMediaControl);
this.listenTo(this.playback, Events.PLAYBACK_SEEK, this.onSeek);
this.listenTo(this.playback, Events.PLAYBACK_SEEKED, this.onSeeked);
this.listenTo(this.playback, Events.PLAYBACK_ENDED, this.onEnded);
this.listenTo(this.playback, Events.PLAYBACK_PLAY, this.playing);
Expand Down Expand Up @@ -5339,9 +5340,13 @@ var Container = /*#__PURE__*/function (_UIObject) {
}, {
key: "seek",
value: function seek(time) {
this.trigger(Events.CONTAINER_SEEK, time, this.name);
this.playback.seek(time);
}
}, {
key: "onSeek",
value: function onSeek(time) {
this.trigger(Events.CONTAINER_SEEK, time, this.name);
}
}, {
key: "onSeeked",
value: function onSeeked() {
Expand Down Expand Up @@ -6672,7 +6677,7 @@ var Loader = (function () {
plugins: {},
playbacks: []
};
var currentVersion = "0.4.14";
var currentVersion = "0.4.15";
return /*#__PURE__*/function () {
_createClass(Loader, null, [{
key: "checkVersionSupport",
Expand Down Expand Up @@ -7936,7 +7941,7 @@ var HTML5Video = /*#__PURE__*/function (_Playback) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}, {
Expand Down Expand Up @@ -8400,9 +8405,9 @@ var HTML5Video = /*#__PURE__*/function (_Playback) {
}, {
key: "_onSeeking",
value: function _onSeeking() {
this._handleBufferingEvents();
this.trigger(Events.PLAYBACK_SEEK, this.getCurrentTime());

this.trigger(Events.PLAYBACK_SEEK);
this._handleBufferingEvents();
}
}, {
key: "_onSeeked",
Expand Down Expand Up @@ -8741,7 +8746,7 @@ var HTML5Audio = /*#__PURE__*/function (_HTML5Video) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}, {
Expand Down Expand Up @@ -8791,7 +8796,7 @@ var HTMLImg = /*#__PURE__*/function (_Playback) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}, {
Expand Down Expand Up @@ -8874,7 +8879,7 @@ var NoOp = /*#__PURE__*/function (_Playback) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}, {
Expand Down Expand Up @@ -9030,7 +9035,7 @@ var Strings = /*#__PURE__*/function (_CorePlugin) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}]);
Expand Down Expand Up @@ -9178,7 +9183,7 @@ var SourcesPlugin = /*#__PURE__*/function (_CorePlugin) {
key: "supportedVersion",
get: function get() {
return {
min: "0.4.14"
min: "0.4.15"
};
}
}]);
Expand All @@ -9187,7 +9192,7 @@ var SourcesPlugin = /*#__PURE__*/function (_CorePlugin) {
}(CorePlugin);

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

Loader.registerPlugin(Strings);
Loader.registerPlugin(SourcesPlugin);
Expand Down
27 changes: 16 additions & 11 deletions dist/clappr-core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/clappr-core.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr-core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr-core.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clappr/core",
"version": "0.4.14",
"version": "0.4.15",
"description": "Core components of the extensible media player for the web",
"main": "./dist/clappr-core.js",
"module": "./dist/clappr-core.esm.js",
Expand Down

0 comments on commit d69cf96

Please sign in to comment.