mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
fixes
This commit is contained in:
parent
cda69b54e7
commit
6ffad523f0
4 changed files with 27 additions and 26 deletions
|
@ -36,7 +36,7 @@
|
||||||
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
||||||
"@typescript-eslint/parser": "^5.59.2",
|
"@typescript-eslint/parser": "^5.59.2",
|
||||||
"copyfiles": "^2.4.1",
|
"copyfiles": "^2.4.1",
|
||||||
"electron": "26.0.0",
|
"electron": "26.1.0",
|
||||||
"electron-builder": "^24.6.3",
|
"electron-builder": "^24.6.3",
|
||||||
"eslint": "^8.40.0",
|
"eslint": "^8.40.0",
|
||||||
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
|
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
|
||||||
|
|
|
@ -41,8 +41,8 @@ devDependencies:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.4.1
|
||||||
version: 2.4.1
|
version: 2.4.1
|
||||||
electron:
|
electron:
|
||||||
specifier: 26.0.0
|
specifier: 26.1.0
|
||||||
version: 26.0.0
|
version: 26.1.0
|
||||||
electron-builder:
|
electron-builder:
|
||||||
specifier: ^24.6.3
|
specifier: ^24.6.3
|
||||||
version: 24.6.3
|
version: 24.6.3
|
||||||
|
@ -1027,8 +1027,8 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/electron@26.0.0:
|
/electron@26.1.0:
|
||||||
resolution: {integrity: sha512-x57bdCaDvgnlc41VOm/UWihJCCiI3OxJKiBgB/e5F7Zd6avo+61mO6IzQS7Bu/k/a1KPjou25EUORR6UPKznBQ==}
|
resolution: {integrity: sha512-qEh19H09Pysn3ibms5nZ0haIh5pFoOd7/5Ww7gzmAwDQOulRi8Sa2naeueOyIb1GKpf+6L4ix3iceYRAuA5r5Q==}
|
||||||
engines: {node: '>= 12.20.55'}
|
engines: {node: '>= 12.20.55'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
|
|
|
@ -61,10 +61,7 @@ export async function setMenu(): Promise<void> {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Fullscreen",
|
label: "Fullscreen",
|
||||||
accelerator: "F11",
|
role: "togglefullscreen"
|
||||||
click() {
|
|
||||||
mainWindow.fullScreen = !mainWindow.fullScreen;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Reload",
|
label: "Reload",
|
||||||
|
|
38
src/utils.ts
38
src/utils.ts
|
@ -343,23 +343,27 @@ async function updateModBundle(): Promise<void> {
|
||||||
//waiting
|
//waiting
|
||||||
}
|
}
|
||||||
let name: string = await getConfig("mods");
|
let name: string = await getConfig("mods");
|
||||||
const clientMods = {
|
if (name == "custom") {
|
||||||
vencord: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.js",
|
// aspy fix
|
||||||
cordwood: "https://raw.githubusercontent.com/Cordwood/builds/master/index.js",
|
let bundle: string = await (await fetch(await getConfig("customJsBundle"))).text();
|
||||||
shelter: "https://raw.githubusercontent.com/uwu/shelter-builds/main/shelter.js",
|
fs.writeFileSync(`${distFolder}bundle.js`, bundle, "utf-8");
|
||||||
custom: await getConfig("customJsBundle")
|
let css: string = await (await fetch(await getConfig("customCssBundle"))).text();
|
||||||
};
|
fs.writeFileSync(`${distFolder}bundle.css`, css, "utf-8");
|
||||||
const clientModsCss = {
|
} else {
|
||||||
vencord: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css",
|
const clientMods = {
|
||||||
cordwood: "https://armcord.app/placeholder.css",
|
vencord: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.js",
|
||||||
shelter: "https://armcord.app/placeholder.css",
|
shelter: "https://raw.githubusercontent.com/uwu/shelter-builds/main/shelter.js"
|
||||||
custom: await getConfig("customCssBundle")
|
};
|
||||||
};
|
const clientModsCss = {
|
||||||
console.log(clientMods[name as keyof typeof clientMods]);
|
vencord: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css",
|
||||||
let bundle: string = await (await fetch(clientMods[name as keyof typeof clientMods])).text();
|
shelter: "https://armcord.app/placeholder.css"
|
||||||
fs.writeFileSync(`${distFolder}bundle.js`, bundle, "utf-8");
|
};
|
||||||
let css: string = await (await fetch(clientModsCss[name as keyof typeof clientModsCss])).text();
|
console.log(clientMods[name as keyof typeof clientMods]);
|
||||||
fs.writeFileSync(`${distFolder}bundle.css`, css, "utf-8");
|
let bundle: string = await (await fetch(clientMods[name as keyof typeof clientMods])).text();
|
||||||
|
fs.writeFileSync(`${distFolder}bundle.js`, bundle, "utf-8");
|
||||||
|
let css: string = await (await fetch(clientModsCss[name as keyof typeof clientModsCss])).text();
|
||||||
|
fs.writeFileSync(`${distFolder}bundle.css`, css, "utf-8");
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log("[Mod loader] Failed to install mods");
|
console.log("[Mod loader] Failed to install mods");
|
||||||
console.error(e);
|
console.error(e);
|
||||||
|
|
Loading…
Reference in a new issue