mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
add ms store manifest
This commit is contained in:
parent
b0ab67062b
commit
c662b30ddc
2 changed files with 8 additions and 1 deletions
|
@ -83,6 +83,12 @@
|
|||
"rpm",
|
||||
"AppImage"
|
||||
]
|
||||
},
|
||||
"appx": {
|
||||
"identityName": "53758smartfrigde.ArmCord",
|
||||
"publisher": "CN=EAB3A6D3-7145-4623-8176-D579F573F339",
|
||||
"publisherDisplayName": "smartfrigde",
|
||||
"applicationId": "smartfrigde.ArmCord"
|
||||
}
|
||||
},
|
||||
"packageManager": "pnpm@8.10.2"
|
||||
|
|
|
@ -28,7 +28,7 @@ import {createKeybindWindow} from "./keybindMaker/main";
|
|||
export let iconPath: string;
|
||||
export let settings: any;
|
||||
export let customTitlebar: boolean;
|
||||
checkIfConfigIsBroken();
|
||||
|
||||
app.on("render-process-gone", (event, webContents, details) => {
|
||||
if (details.reason == "crashed") {
|
||||
app.relaunch();
|
||||
|
@ -80,6 +80,7 @@ if (!app.requestSingleInstanceLock() && getConfigSync("multiInstance") == (false
|
|||
);
|
||||
checkForDataFolder();
|
||||
checkIfConfigExists();
|
||||
checkIfConfigIsBroken();
|
||||
injectElectronFlags();
|
||||
app.whenReady().then(async () => {
|
||||
if ((await getConfig("customIcon")) !== undefined ?? null) {
|
||||
|
|
Loading…
Reference in a new issue