diff --git a/dist_ui/main.js b/dist_ui/main.js index b9ac4ac..1d824f6 100644 --- a/dist_ui/main.js +++ b/dist_ui/main.js @@ -53424,7 +53424,7 @@ Suside v${I.i8} @@ -54577,7 +54577,7 @@ label: 'menus.Help.CheckForUpdates', action() { N(() => { - new A.default({ title: 'No updates found' }) + new A.default({ title: 'No updates found. Check back soon!' }) }) }, } diff --git a/src/interface/defaults/menus.ts b/src/interface/defaults/menus.ts index 80a27ff..47f77f5 100644 --- a/src/interface/defaults/menus.ts +++ b/src/interface/defaults/menus.ts @@ -396,7 +396,7 @@ function getHelpMenu(button) { action() { checkForUpdates(() => { new Notification({ - title: 'No updates found', + title: 'No updates found. Check back soon!', }) }) }, diff --git a/src/interface/defaults/settings/pages/about.ts b/src/interface/defaults/settings/pages/about.ts index c11f53b..488c2b4 100644 --- a/src/interface/defaults/settings/pages/about.ts +++ b/src/interface/defaults/settings/pages/about.ts @@ -30,7 +30,7 @@ export default function About() { function checkForAnyUpdates() { checkForUpdates(() => { new Notification({ - title: 'No updates found', + title: 'No updates found. Check back soon!', }) }) }