remove automatic patches

This commit is contained in:
smartfrigde 2024-01-26 11:41:06 +01:00
parent 8a0585d181
commit f5ff1bf10b
4 changed files with 0 additions and 14 deletions

View file

@ -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();
});

View file

@ -72,14 +72,6 @@
</div>
<br />
<div class="switch acPatches">
<label class="header" data-string="settings-patches"></label>
<input id="patches" class="tgl tgl-light left" data-setting="automaticPatches" type="checkbox" />
<label class="tgl-btn left" for="patches"></label>
<p class="description" data-string="settings-patches-desk"></p>
</div>
<br />
<div class="switch acMultiInstance">
<label class="header" data-string="settings-MultiInstance"></label>
<input id="mInstance" class="tgl tgl-light left" data-setting="multiInstance" type="checkbox" />

View file

@ -133,7 +133,6 @@
channel: options.channel,
armcordCSP: true,
minimizeToTray: true,
automaticPatches: false,
mobileMode: false,
spellcheck: true,
skipSplash: false,

View file

@ -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;