Skip to content

Commit

Permalink
update package.
Browse files Browse the repository at this point in the history
  • Loading branch information
ying_123 committed Jun 8, 2023
1 parent 10ef2ac commit 555894b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/hls2mp4.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7745,7 +7745,7 @@ var Hls2Mp4 = /** @class */ (function () {
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '2.0';
Hls2Mp4.version = '2.0.2';
Hls2Mp4.TaskType = TaskType;
return Hls2Mp4;
}());
Expand Down
2 changes: 1 addition & 1 deletion dist/hls2mp4.js
Original file line number Diff line number Diff line change
Expand Up @@ -7746,7 +7746,7 @@ var Hls2Mp4 = (function () {
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '2.0';
Hls2Mp4.version = '2.0.2';
Hls2Mp4.TaskType = TaskType;
return Hls2Mp4;
}());
Expand Down
2 changes: 1 addition & 1 deletion dist/hls2mp4.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -7749,7 +7749,7 @@
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '2.0';
Hls2Mp4.version = '2.0.2';
Hls2Mp4.TaskType = TaskType;
return Hls2Mp4;
}());
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7743,7 +7743,7 @@ var Hls2Mp4 = /** @class */ (function () {
anchor.click();
setTimeout(function () { return URL.revokeObjectURL(objectUrl); }, 100);
};
Hls2Mp4.version = '2.0';
Hls2Mp4.version = '2.0.2';
Hls2Mp4.TaskType = TaskType;
return Hls2Mp4;
}());
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hls2mp4",
"version": "2.0.0",
"version": "2.0.2",
"description": "a tool for download hls/m3u8 to mp4",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Hls2Mp4 {
private totalSegments = 0;
private duration = 0;
private savedSegments = new Map<number, Uint8Array>()
public static version = '2.0';
public static version = '2.0.2';
public static TaskType = TaskType;

constructor({ maxRetry = 3, tsDownloadConcurrency = 10 }: Hls2Mp4Options, onProgress?: ProgressCallback) {
Expand Down

0 comments on commit 555894b

Please sign in to comment.