Fix
This commit is contained in:
parent
2cffc9c0f9
commit
35dbeb9e25
2 changed files with 5 additions and 9 deletions
|
@ -17,9 +17,10 @@ import { autoStart } from "./autoStart";
|
||||||
import { VENCORD_FILES_DIR, VENCORD_QUICKCSS_FILE, VENCORD_THEMES_DIR } from "./constants";
|
import { VENCORD_FILES_DIR, VENCORD_QUICKCSS_FILE, VENCORD_THEMES_DIR } from "./constants";
|
||||||
import { mainWin } from "./mainWindow";
|
import { mainWin } from "./mainWindow";
|
||||||
import { Settings } from "./settings";
|
import { Settings } from "./settings";
|
||||||
|
import { FILES_TO_DOWNLOAD } from "./utils/vencordLoader";
|
||||||
|
|
||||||
ipcMain.on(IpcEvents.GET_VENCORD_PRELOAD_FILE, e => {
|
ipcMain.on(IpcEvents.GET_VENCORD_PRELOAD_FILE, e => {
|
||||||
e.returnValue = join(VENCORD_FILES_DIR, "preload.js");
|
e.returnValue = join(VENCORD_FILES_DIR, "vencordDesktopPreload.js");
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.on(IpcEvents.GET_VENCORD_RENDERER_SCRIPT, e => {
|
ipcMain.on(IpcEvents.GET_VENCORD_RENDERER_SCRIPT, e => {
|
||||||
|
@ -111,12 +112,7 @@ ipcMain.handle(IpcEvents.SELECT_VENCORD_DIR, async () => {
|
||||||
if (!res.filePaths.length) return "cancelled";
|
if (!res.filePaths.length) return "cancelled";
|
||||||
|
|
||||||
const dir = res.filePaths[0];
|
const dir = res.filePaths[0];
|
||||||
for (const file of [
|
for (const file of FILES_TO_DOWNLOAD) {
|
||||||
"vencordDesktopMain.js",
|
|
||||||
"preload.js",
|
|
||||||
"vencordDesktopRenderer.js",
|
|
||||||
"vencordDesktopRenderer.css"
|
|
||||||
]) {
|
|
||||||
if (!existsSync(join(dir, file))) return "invalid";
|
if (!existsSync(join(dir, file))) return "invalid";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,9 @@ import { downloadFile, simpleGet } from "./http";
|
||||||
|
|
||||||
const API_BASE = "https://api.github.com";
|
const API_BASE = "https://api.github.com";
|
||||||
|
|
||||||
const FILES_TO_DOWNLOAD = [
|
export const FILES_TO_DOWNLOAD = [
|
||||||
"vencordDesktopMain.js",
|
"vencordDesktopMain.js",
|
||||||
"preload.js",
|
"vencordDesktopPreload.js",
|
||||||
"vencordDesktopRenderer.js",
|
"vencordDesktopRenderer.js",
|
||||||
"vencordDesktopRenderer.css"
|
"vencordDesktopRenderer.css"
|
||||||
];
|
];
|
||||||
|
|
Reference in a new issue