diff --git a/src/ipc.ts b/src/ipc.ts index 18f7dca..17b5f11 100644 --- a/src/ipc.ts +++ b/src/ipc.ts @@ -131,9 +131,6 @@ export function registerIpc(): void { ipcMain.on("mobileMode", async (event) => { event.returnValue = await getConfig("mobileMode"); }); - ipcMain.on("shouldPatch", async (event) => { - event.returnValue = await getConfig("automaticPatches"); - }); ipcMain.on("openSettingsWindow", () => { createSettingsWindow(); }); diff --git a/src/settings/settings.html b/src/settings/settings.html index 1c7aa0f..aba3816 100644 --- a/src/settings/settings.html +++ b/src/settings/settings.html @@ -72,14 +72,6 @@
-
- - - -

-
-
-
diff --git a/src/setup/setup.html b/src/setup/setup.html index 9b0892e..5578f1c 100644 --- a/src/setup/setup.html +++ b/src/setup/setup.html @@ -133,7 +133,6 @@ channel: options.channel, armcordCSP: true, minimizeToTray: true, - automaticPatches: false, mobileMode: false, spellcheck: true, skipSplash: false, diff --git a/src/utils.ts b/src/utils.ts index 0cc191d..466f70b 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -48,7 +48,6 @@ export function setup(): void { channel: "stable", armcordCSP: true, minimizeToTray: true, - automaticPatches: false, keybinds: [], alternativePaste: false, multiInstance: false, @@ -257,7 +256,6 @@ export interface Settings { channel: string; armcordCSP: boolean; minimizeToTray: boolean; - automaticPatches: boolean; alternativePaste: boolean; multiInstance: boolean; spellcheck: boolean;