Skip to content

Commit

Permalink
V1.2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews54757 committed Dec 21, 2023
1 parent 09b2a82 commit 8eb1f25
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.2.14",
"version": "1.2.15",
"author": "Andrew S",
"options_ui": {
"page": "player/options/index.html",
Expand Down
4 changes: 4 additions & 0 deletions chrome/player/FastStreamClient.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ export class FastStreamClient extends EventEmitter {
this.downloadManager.destroy();
this.videoAnalyzer.destroy();
this.interfaceController.destroy();
if (this.progressMemory) {
this.progressMemory.destroy();
this.progressMemory = null;
}
}

setOptions(options) {
Expand Down
5 changes: 5 additions & 0 deletions chrome/player/modules/SecureMemory.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,9 @@ export class SecureMemory {
};
});
}

destroy() {
this.indexedDbManager.close();
this.indexedDbManager = null;
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faststream",
"version": "1.2.14",
"version": "1.2.15",
"description": "Stream without buffering",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down

0 comments on commit 8eb1f25

Please sign in to comment.