From 4aff11421f1cccaf34a7c983fd8dc9a841042947 Mon Sep 17 00:00:00 2001 From: Xinto <48173186+X1nto@users.noreply.github.com> Date: Sun, 19 Mar 2023 13:21:26 +0400 Subject: Replace update notices with notifications (#558) --- src/components/VencordSettings/Updater.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/components/VencordSettings') diff --git a/src/components/VencordSettings/Updater.tsx b/src/components/VencordSettings/Updater.tsx index caed4f7..3c3eb91 100644 --- a/src/components/VencordSettings/Updater.tsx +++ b/src/components/VencordSettings/Updater.tsx @@ -185,7 +185,7 @@ function Newer(props: CommonProps) { } function Updater() { - const settings = useSettings(["notifyAboutUpdates", "autoUpdate"]); + const settings = useSettings(["notifyAboutUpdates", "autoUpdate", "autoUpdateNotification"]); const [repo, err, repoPending] = useAwaiter(getRepo, { fallbackValue: "Loading..." }); @@ -205,7 +205,7 @@ function Updater() { settings.notifyAboutUpdates = v} - note="Shows a toast on startup" + note="Shows a notification on startup" disabled={settings.autoUpdate} > Get notified about new updates @@ -217,6 +217,14 @@ function Updater() { > Automatically update + settings.autoUpdateNotification = v} + note="Shows a notification when Vencord automatically updates" + disabled={!settings.autoUpdate} + > + Get notified when an automatic update completes + Repo -- cgit