From c3259d19294bab0d218286e3e34d57892411aa07 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 30 Nov 2023 01:41:20 +0200 Subject: [PATCH] Bump package version --- package-lock.json | 4 ++-- package.json | 2 +- public/scripts/extensions.js | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3ca8ea045..459e0da18 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sillytavern", - "version": "1.10.10", + "version": "1.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "sillytavern", - "version": "1.10.10", + "version": "1.11.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 2289b0523..057d1d339 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "type": "git", "url": "https://github.com/SillyTavern/SillyTavern.git" }, - "version": "1.10.10", + "version": "1.11.0", "scripts": { "start": "node server.js", "start-multi": "node server.js --disableCsrf", diff --git a/public/scripts/extensions.js b/public/scripts/extensions.js index 840f53342..2c55db78a 100644 --- a/public/scripts/extensions.js +++ b/public/scripts/extensions.js @@ -852,7 +852,7 @@ async function autoUpdateExtensions() { return; } - toastr.info('Auto-updating extensions. This may take several minutes.', 'Please wait...', { timeOut: 10000, extendedTimeOut: 20000 }); + const banner = toastr.info('Auto-updating extensions. This may take several minutes.', 'Please wait...', { timeOut: 10000, extendedTimeOut: 10000 }); const promises = []; for (const [id, manifest] of Object.entries(manifests)) { if (manifest.auto_update && id.startsWith('third-party')) { @@ -861,6 +861,7 @@ async function autoUpdateExtensions() { } } await Promise.allSettled(promises); + toastr.clear(banner); } /**