From f5ff1bf10b141ad67e43ef40c0c5286b5742c06f Mon Sep 17 00:00:00 2001 From: smartfrigde <37928912+smartfrigde@users.noreply.github.com> Date: Fri, 26 Jan 2024 11:41:06 +0100 Subject: [PATCH] remove automatic patches --- src/ipc.ts | 3 --- src/settings/settings.html | 8 -------- src/setup/setup.html | 1 - src/utils.ts | 2 -- 4 files changed, 14 deletions(-) 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;