aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorXinto <48173186+X1nto@users.noreply.github.com>2023-03-19 13:21:26 +0400
committerGitHub <noreply@github.com>2023-03-19 09:21:26 +0000
commit4aff11421f1cccaf34a7c983fd8dc9a841042947 (patch)
treee7313c34ddf2312493a86afd6f7309a3c81f7e63 /src/components
parentea642d9e901d42f0f5f73ba1f9cfeb3d1e595332 (diff)
downloadVencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.tar.gz
Vencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.tar.bz2
Vencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.zip
Replace update notices with notifications (#558)
Diffstat (limited to 'src/components')
-rw-r--r--src/components/VencordSettings/Updater.tsx12
1 files changed, 10 insertions, 2 deletions
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() {
<Switch
value={settings.notifyAboutUpdates}
onChange={(v: boolean) => 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
</Switch>
+ <Switch
+ value={settings.autoUpdateNotification}
+ onChange={(v: boolean) => settings.autoUpdateNotification = v}
+ note="Shows a notification when Vencord automatically updates"
+ disabled={!settings.autoUpdate}
+ >
+ Get notified when an automatic update completes
+ </Switch>
<Forms.FormTitle tag="h5">Repo</Forms.FormTitle>