mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
remove automatic patches
This commit is contained in:
parent
8a0585d181
commit
f5ff1bf10b
4 changed files with 0 additions and 14 deletions
|
@ -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();
|
||||
});
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -133,7 +133,6 @@
|
|||
channel: options.channel,
|
||||
armcordCSP: true,
|
||||
minimizeToTray: true,
|
||||
automaticPatches: false,
|
||||
mobileMode: false,
|
||||
spellcheck: true,
|
||||
skipSplash: false,
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue