add ms store manifest

This commit is contained in:
smartfridge 2024-04-05 12:04:00 +02:00
parent b0ab67062b
commit c662b30ddc
2 changed files with 8 additions and 1 deletions

View File

@ -83,6 +83,12 @@
"rpm", "rpm",
"AppImage" "AppImage"
] ]
},
"appx": {
"identityName": "53758smartfrigde.ArmCord",
"publisher": "CN=EAB3A6D3-7145-4623-8176-D579F573F339",
"publisherDisplayName": "smartfrigde",
"applicationId": "smartfrigde.ArmCord"
} }
}, },
"packageManager": "pnpm@8.10.2" "packageManager": "pnpm@8.10.2"

View File

@ -28,7 +28,7 @@ import {createKeybindWindow} from "./keybindMaker/main";
export let iconPath: string; export let iconPath: string;
export let settings: any; export let settings: any;
export let customTitlebar: boolean; export let customTitlebar: boolean;
checkIfConfigIsBroken();
app.on("render-process-gone", (event, webContents, details) => { app.on("render-process-gone", (event, webContents, details) => {
if (details.reason == "crashed") { if (details.reason == "crashed") {
app.relaunch(); app.relaunch();
@ -80,6 +80,7 @@ if (!app.requestSingleInstanceLock() && getConfigSync("multiInstance") == (false
); );
checkForDataFolder(); checkForDataFolder();
checkIfConfigExists(); checkIfConfigExists();
checkIfConfigIsBroken();
injectElectronFlags(); injectElectronFlags();
app.whenReady().then(async () => { app.whenReady().then(async () => {
if ((await getConfig("customIcon")) !== undefined ?? null) { if ((await getConfig("customIcon")) !== undefined ?? null) {