Fix: Update external links for website and wiki in IPC handlers

This commit is contained in:
MasterAcnolo
2026-04-13 19:13:00 +02:00
parent 61040769ee
commit a581c9309d

View File

@@ -73,10 +73,10 @@ function registerIpcHandlers(getMainWindow) {
); );
ipcMain.on("open-logs", () => logDir && shell.openPath(logDir)); ipcMain.on("open-logs", () => logDir && shell.openPath(logDir));
ipcMain.on("open-website", () => ipcMain.on("open-website", () =>
shell.openExternal("https://masteracnolo.github.io/FreedomLoader/index.html") shell.openExternal("https://masteracnolo.github.io/FreedomLoader/")
); );
ipcMain.on("open-wiki", () => ipcMain.on("open-wiki", () =>
shell.openExternal("https://masteracnolo.github.io/FreedomLoader/pages/wiki.html") shell.openExternal("https://masteracnolo.github.io/FreedomLoader/wiki")
); );
ipcMain.on("open-workshop", () => ipcMain.on("open-workshop", () =>
shell.openExternal("https://masteracnolo.github.io/Freedom-Loader-Workshop") shell.openExternal("https://masteracnolo.github.io/Freedom-Loader-Workshop")