Skip to content

Commit 7b91dbb

Browse files
committed
Add build files for version 5.0.3
1 parent 2a26591 commit 7b91dbb

19 files changed

Lines changed: 1473 additions & 2291 deletions

dist/legacy/umd/dash.all.debug.js

Lines changed: 353 additions & 604 deletions
Large diffs are not rendered by default.

dist/legacy/umd/dash.all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/umd/dash.mediaplayer.debug.js

Lines changed: 353 additions & 625 deletions
Large diffs are not rendered by default.

dist/legacy/umd/dash.mediaplayer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/umd/dash.offline.debug.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ var TOKENS = /\$(RepresentationID|Number|SubNumber|Bandwidth|Time)?(?:%0([0-9]+)
967967
* @param number - Number.
968968
* @param subNumber - Sub-number.
969969
* @param bandwidth - Bandwidth.
970-
* @param time - Time.
970+
* @param time - Time. Should be passed as a number unless the value is larger than `MAX_SAFE_INTEGER`, then it should be provided as a string. If the value is a string all format tags will be ignored.
971971
*
972972
* @returns Processed URI template.
973973
*
@@ -997,6 +997,9 @@ function processUriTemplate(uriTemplate, representationId, number, subNumber, ba
997997
value = bandwidth;
998998
break;
999999
case 'Time':
1000+
if (typeof time === 'string') {
1001+
return time;
1002+
}
10001003
value = time ? Math.round(time) : time;
10011004
break;
10021005
default:
@@ -51088,7 +51091,7 @@ var DescriptorType = /*#__PURE__*/function () {
5108851091
value: function init(data) {
5108951092
if (data) {
5109051093
this.schemeIdUri = data.schemeIdUri ? data.schemeIdUri : null;
51091-
this.value = data.value ? data.value.toString() : null;
51094+
this.value = data.value !== null && data.value !== undefined ? data.value.toString() : null;
5109251095
this.id = data.id ? data.id : null;
5109351096
// Only add the DVB extensions if they exist
5109451097
if (data[_constants_DashConstants_js__WEBPACK_IMPORTED_MODULE_6__["default"].DVB_URL]) {
@@ -51110,7 +51113,7 @@ var DescriptorType = /*#__PURE__*/function () {
5111051113
return arr.some(function (entry) {
5111151114
return _this.schemeIdUri === entry.schemeIdUri && (_this.value ? _this.value.toString().match(entry.value) :
5111251115
// check if provided value matches RegExp
51113-
''.match(entry.value) // check if RegExp allows absent value
51116+
''.match(entry.value) // check if RegExp allows absent value
5111451117
);
5111551118
});
5111651119
}

dist/legacy/umd/dash.offline.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/esm/dash.all.debug.js

Lines changed: 184 additions & 258 deletions
Large diffs are not rendered by default.

dist/modern/esm/dash.all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/esm/dash.mediaplayer.debug.js

Lines changed: 184 additions & 258 deletions
Large diffs are not rendered by default.

dist/modern/esm/dash.mediaplayer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)