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) => {
|
ipcMain.on("mobileMode", async (event) => {
|
||||||
event.returnValue = await getConfig("mobileMode");
|
event.returnValue = await getConfig("mobileMode");
|
||||||
});
|
});
|
||||||
ipcMain.on("shouldPatch", async (event) => {
|
|
||||||
event.returnValue = await getConfig("automaticPatches");
|
|
||||||
});
|
|
||||||
ipcMain.on("openSettingsWindow", () => {
|
ipcMain.on("openSettingsWindow", () => {
|
||||||
createSettingsWindow();
|
createSettingsWindow();
|
||||||
});
|
});
|
||||||
|
|
|
@ -72,14 +72,6 @@
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<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">
|
<div class="switch acMultiInstance">
|
||||||
<label class="header" data-string="settings-MultiInstance"></label>
|
<label class="header" data-string="settings-MultiInstance"></label>
|
||||||
<input id="mInstance" class="tgl tgl-light left" data-setting="multiInstance" type="checkbox" />
|
<input id="mInstance" class="tgl tgl-light left" data-setting="multiInstance" type="checkbox" />
|
||||||
|
|
|
@ -133,7 +133,6 @@
|
||||||
channel: options.channel,
|
channel: options.channel,
|
||||||
armcordCSP: true,
|
armcordCSP: true,
|
||||||
minimizeToTray: true,
|
minimizeToTray: true,
|
||||||
automaticPatches: false,
|
|
||||||
mobileMode: false,
|
mobileMode: false,
|
||||||
spellcheck: true,
|
spellcheck: true,
|
||||||
skipSplash: false,
|
skipSplash: false,
|
||||||
|
|
|
@ -48,7 +48,6 @@ export function setup(): void {
|
||||||
channel: "stable",
|
channel: "stable",
|
||||||
armcordCSP: true,
|
armcordCSP: true,
|
||||||
minimizeToTray: true,
|
minimizeToTray: true,
|
||||||
automaticPatches: false,
|
|
||||||
keybinds: [],
|
keybinds: [],
|
||||||
alternativePaste: false,
|
alternativePaste: false,
|
||||||
multiInstance: false,
|
multiInstance: false,
|
||||||
|
@ -257,7 +256,6 @@ export interface Settings {
|
||||||
channel: string;
|
channel: string;
|
||||||
armcordCSP: boolean;
|
armcordCSP: boolean;
|
||||||
minimizeToTray: boolean;
|
minimizeToTray: boolean;
|
||||||
automaticPatches: boolean;
|
|
||||||
alternativePaste: boolean;
|
alternativePaste: boolean;
|
||||||
multiInstance: boolean;
|
multiInstance: boolean;
|
||||||
spellcheck: boolean;
|
spellcheck: boolean;
|
||||||
|
|
Loading…
Reference in a new issue