Add Notification badge

This commit is contained in:
V
2023-06-23 17:20:54 +02:00
parent dde696627e
commit 31799ccfb0
28 changed files with 125 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ import { githubGet, ReleaseData } from "main/utils/vencordLoader";
import { join } from "path";
import { SplashProps } from "shared/browserWinProperties";
import { IpcEvents } from "shared/IpcEvents";
import { STATIC_DIR } from "shared/paths";
import { VIEW_DIR } from "shared/paths";
export interface UpdateData {
currentVersion: string;
@@ -101,5 +101,5 @@ function openNewUpdateWindow() {
}
});
win.loadFile(join(STATIC_DIR, "updater.html"));
win.loadFile(join(VIEW_DIR, "updater.html"));
}