mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Fix settings injection on canary (#326)
* Fix settings injection on canary * Put sideeffects up again
This commit is contained in:
parent
377f7a4d29
commit
fe78be06d2
2 changed files with 12 additions and 30 deletions
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* text=auto eol=lf
|
|
@ -1,16 +1,20 @@
|
||||||
import {ipcRenderer} from "electron";
|
|
||||||
import "./bridge";
|
import "./bridge";
|
||||||
import "./patch";
|
import "./patch";
|
||||||
|
|
||||||
|
import {ipcRenderer} from "electron";
|
||||||
import * as fs from "fs";
|
import * as fs from "fs";
|
||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
import {fixTitlebar, injectTitlebar} from "./titlebar";
|
import {addScript, addStyle, sleep} from "../utils";
|
||||||
import {sleep, addStyle, addScript} from "../utils";
|
|
||||||
import {injectMobileStuff} from "./mobile";
|
import {injectMobileStuff} from "./mobile";
|
||||||
|
import {fixTitlebar, injectTitlebar} from "./titlebar";
|
||||||
|
|
||||||
window.localStorage.setItem("hideNag", "true");
|
window.localStorage.setItem("hideNag", "true");
|
||||||
|
|
||||||
if (ipcRenderer.sendSync("legacyCapturer")) {
|
if (ipcRenderer.sendSync("legacyCapturer")) {
|
||||||
console.warn("Using legacy capturer module");
|
console.warn("Using legacy capturer module");
|
||||||
import("./capturer");
|
import("./capturer");
|
||||||
}
|
}
|
||||||
|
|
||||||
var version = ipcRenderer.sendSync("displayVersion");
|
var version = ipcRenderer.sendSync("displayVersion");
|
||||||
var channel = ipcRenderer.sendSync("channel");
|
var channel = ipcRenderer.sendSync("channel");
|
||||||
async function updateLang() {
|
async function updateLang() {
|
||||||
|
@ -72,38 +76,15 @@ if (window.location.href.indexOf("splash.html") > -1) {
|
||||||
await updateLang();
|
await updateLang();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2022 GooseNest
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
*/
|
|
||||||
// Settings info version injection
|
// Settings info version injection
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
const host = document.getElementsByClassName("info-3pQQBb")[0];
|
const host = document.querySelector("nav > [class|=side] [class|=info]");
|
||||||
if (!host || document.querySelector("#ac-ver")) return;
|
if (!host || host.querySelector("#ac-ver")) return;
|
||||||
const el = document.createElement("span");
|
const el = host.firstChild!.cloneNode() as HTMLSpanElement;
|
||||||
el.id = "ac-ver";
|
el.id = "ac-ver";
|
||||||
el.classList.add("text-xs-normal-3SiVjE", "line-18uChy");
|
|
||||||
|
|
||||||
el.textContent = `\nArmCord Version: ${version}`;
|
el.textContent = `ArmCord Version: ${version}`;
|
||||||
el.onclick = () => ipcRenderer.send("openSettingsWindow");
|
el.onclick = () => ipcRenderer.send("openSettingsWindow");
|
||||||
host.append(el);
|
host.append(el);
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
|
Loading…
Reference in a new issue