Skip to content

Commit

Permalink
chore(package): bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonatangcavalcanti committed Nov 5, 2020
1 parent bcf3267 commit 51fb1db
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 20 deletions.
12 changes: 7 additions & 5 deletions dist/hlsjs-playback.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -21364,6 +21364,11 @@ var HlsjsPlayback = /*#__PURE__*/function (_HTML5Video) {
if (this._segmentTargetDuration === null) return 0;
return this._extrapolatedWindowNumSegments * this._segmentTargetDuration;
}
}, {
key: "bandwidthEstimate",
get: function get() {
return this._hls && this._hls.bandwidthEstimate;
}
}], [{
key: "HLSJS",
get: function get() {
Expand Down Expand Up @@ -21578,8 +21583,7 @@ var HlsjsPlayback = /*#__PURE__*/function (_HTML5Video) {

this.dvrEnabled && this._updateDvr(time < this.getDuration() - 3);
time += this._startTime;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "seek", this).call(this, time);
this.el.currentTime = time;
}
}, {
key: "seekToLivePoint",
Expand Down Expand Up @@ -21767,9 +21771,7 @@ var HlsjsPlayback = /*#__PURE__*/function (_HTML5Video) {
key: "pause",
value: function pause() {
if (!this._hls) return;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "pause", this).call(this);

this.el.pause();
if (this.dvrEnabled) this._updateDvr(true);
}
}, {
Expand Down
12 changes: 7 additions & 5 deletions dist/hlsjs-playback.external.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,11 @@
if (this._segmentTargetDuration === null) return 0;
return this._extrapolatedWindowNumSegments * this._segmentTargetDuration;
}
}, {
key: "bandwidthEstimate",
get: function get() {
return this._hls && this._hls.bandwidthEstimate;
}
}], [{
key: "HLSJS",
get: function get() {
Expand Down Expand Up @@ -538,8 +543,7 @@

this.dvrEnabled && this._updateDvr(time < this.getDuration() - 3);
time += this._startTime;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "seek", this).call(this, time);
this.el.currentTime = time;
}
}, {
key: "seekToLivePoint",
Expand Down Expand Up @@ -727,9 +731,7 @@
key: "pause",
value: function pause() {
if (!this._hls) return;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "pause", this).call(this);

this.el.pause();
if (this.dvrEnabled) this._updateDvr(true);
}
}, {
Expand Down
2 changes: 1 addition & 1 deletion dist/hlsjs-playback.external.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hlsjs-playback.external.min.js.map

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions dist/hlsjs-playback.js
Original file line number Diff line number Diff line change
Expand Up @@ -21368,6 +21368,11 @@
if (this._segmentTargetDuration === null) return 0;
return this._extrapolatedWindowNumSegments * this._segmentTargetDuration;
}
}, {
key: "bandwidthEstimate",
get: function get() {
return this._hls && this._hls.bandwidthEstimate;
}
}], [{
key: "HLSJS",
get: function get() {
Expand Down Expand Up @@ -21582,8 +21587,7 @@

this.dvrEnabled && this._updateDvr(time < this.getDuration() - 3);
time += this._startTime;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "seek", this).call(this, time);
this.el.currentTime = time;
}
}, {
key: "seekToLivePoint",
Expand Down Expand Up @@ -21771,9 +21775,7 @@
key: "pause",
value: function pause() {
if (!this._hls) return;

_get(_getPrototypeOf(HlsjsPlayback.prototype), "pause", this).call(this);

this.el.pause();
if (this.dvrEnabled) this._updateDvr(true);
}
}, {
Expand Down
2 changes: 1 addition & 1 deletion dist/hlsjs-playback.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hlsjs-playback.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/hlsjs-playback",
"version": "0.4.1",
"version": "0.5.0",
"description": "HLS Playback based on hls.js",
"main": "./dist/hlsjs-playback.js",
"module": "./dist/hlsjs-playback.esm.js",
Expand Down

0 comments on commit 51fb1db

Please sign in to comment.