From 25fcc528eaf154bef3aa6eff3bb842f17fe28163 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 5 Oct 2022 17:09:37 +0200 Subject: Updater: Inform about more recent commits --- src/utils/updater.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/utils') diff --git a/src/utils/updater.ts b/src/utils/updater.ts index 3b1cfa7..f02af3a 100644 --- a/src/utils/updater.ts +++ b/src/utils/updater.ts @@ -5,6 +5,7 @@ import gitHash from 'git-hash'; export const UpdateLogger = new Logger("Updater", "white"); export let isOutdated = false; +export let isNewer = false; export let updateError: any; export let changes: Record<"hash" | "author" | "message", string>[]; @@ -20,8 +21,8 @@ async function Unwrap(p: Promise>) { export async function checkForUpdates() { changes = await Unwrap(VencordNative.ipc.invoke>(IpcEvents.GET_UPDATES)); if (changes.some(c => c.hash === gitHash)) { - // git log NEWER...OLDER works as well. This means it will return the more recent local commits if the - changes = []; + isNewer = true; + return (isOutdated = false); } return (isOutdated = changes.length > 0); } -- cgit