mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Too many bug fixes to list here
This commit is contained in:
parent
a212dba6bb
commit
da7bf3948c
16 changed files with 284 additions and 201 deletions
8
package-lock.json
generated
8
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "armcord",
|
"name": "ArmCord",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "armcord",
|
"name": "ArmCord",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"license": "OSL-3.0",
|
"license": "OSL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"electron-json-storage": "^4.5.0",
|
"electron-json-storage": "^4.5.0",
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
"watch": "tsc -w",
|
"watch": "tsc -w",
|
||||||
"start": "npm run build && electron ./ts-out/main.js",
|
"start": "npm run build && electron ./ts-out/main.js",
|
||||||
"package": "npm run build && electron-builder"
|
"package": "npm run build && electron-builder"
|
||||||
|
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -21,12 +20,12 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/armcord/armcord#readme",
|
"homepage": "https://github.com/armcord/armcord#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"electron": "^16.0.7",
|
|
||||||
"@types/electron-json-storage": "^4.5.0",
|
"@types/electron-json-storage": "^4.5.0",
|
||||||
"@types/node": "^14.18.2",
|
"@types/node": "^14.18.2",
|
||||||
"typescript": "^4.5.4",
|
|
||||||
"copyfiles": "^2.4.1",
|
"copyfiles": "^2.4.1",
|
||||||
"electron-builder": "^22.14.5"
|
"electron": "^16.0.7",
|
||||||
|
"electron-builder": "^22.14.5",
|
||||||
|
"typescript": "^4.5.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"electron-json-storage": "^4.5.0",
|
"electron-json-storage": "^4.5.0",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.info-1VyQPT:last-child:before {
|
.info-1sUqUG:last-child:before {
|
||||||
content: "ArmCord Version: 3.0.0"!important;
|
content: "ArmCord Version: 3.1.0"!important;
|
||||||
height: auto;
|
height: auto;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
1
src/content/settings.html
Normal file
1
src/content/settings.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<h1>settings, really cool</h1>
|
|
@ -42,10 +42,10 @@
|
||||||
} else {
|
} else {
|
||||||
console.log("Starting ArmCord Setup...");
|
console.log("Starting ArmCord Setup...");
|
||||||
document.getElementById("express").addEventListener("click", function () {
|
document.getElementById("express").addEventListener("click", function () {
|
||||||
window.armcord.saveSettings(true, "stable", true, "cumcord");
|
window.armcordinternal.saveSettings(true, "stable", true, "cumcord");
|
||||||
fade(document.getElementById("setup"));
|
fade(document.getElementById("setup"));
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
window.armcord.restart()
|
window.armcordinternal.restart()
|
||||||
}, 5000);
|
}, 5000);
|
||||||
})
|
})
|
||||||
document.getElementById("full").addEventListener("click", function () {
|
document.getElementById("full").addEventListener("click", function () {
|
||||||
|
@ -90,18 +90,18 @@
|
||||||
.getElementById("next")
|
.getElementById("next")
|
||||||
.addEventListener("click", function () {
|
.addEventListener("click", function () {
|
||||||
var mod = document.getElementById("mod").value;
|
var mod = document.getElementById("mod").value;
|
||||||
window.armcord.saveSettings(true, branch, true, mod);
|
window.armcordinternal.saveSettings(true, branch, true, mod);
|
||||||
fade(document.getElementById("setup"));
|
fade(document.getElementById("setup"));
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
window.armcord.restart();
|
window.armcordinternal.restart();
|
||||||
}, 5000);
|
}, 5000);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
//saveSettings(customTitlebarSetting: boolean, channelSetting: string, armcordCSPSetting: boolean, modsSetting: string)
|
//saveSettings(customTitlebarSetting: boolean, channelSetting: string, armcordCSPSetting: boolean, modsSetting: string)
|
||||||
window.armcord.saveSettings(true, branch, true, "none");
|
window.armcordinternal.saveSettings(true, branch, true, "none");
|
||||||
fade(document.getElementById("setup"));
|
fade(document.getElementById("setup"));
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
window.armcord.restart()
|
window.armcordinternal.restart()
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
window.armcord.splashEnd();
|
window.armcordinternal.splashEnd();
|
||||||
switch (window.armcord.channel) {
|
switch (window.armcord.channel) {
|
||||||
case "stable":
|
case "stable":
|
||||||
window.location.replace("https://discord.com/app");
|
window.location.replace("https://discord.com/app");
|
||||||
|
|
70
src/ipc.ts
Normal file
70
src/ipc.ts
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
//ipc stuff
|
||||||
|
import { app, ipcMain, shell, desktopCapturer } from "electron";
|
||||||
|
import { mainWindow } from "./window";
|
||||||
|
import { saveSettings, getVersion } from "./utils";
|
||||||
|
import { settings, customTitlebar } from "./main";
|
||||||
|
import { createSettingsWindow } from "./settings/main";
|
||||||
|
export function registerIpc() {
|
||||||
|
ipcMain.on("get-app-path", (event, arg) => {
|
||||||
|
event.reply("app-path", app.getAppPath());
|
||||||
|
});
|
||||||
|
ipcMain.on("open-external-link", (event, href: string) => {
|
||||||
|
shell.openExternal(href);
|
||||||
|
});
|
||||||
|
ipcMain.on("win-maximize", (event, arg) => {
|
||||||
|
mainWindow.maximize();
|
||||||
|
});
|
||||||
|
ipcMain.on("win-isMaximized", (event, arg) => {
|
||||||
|
event.returnValue = mainWindow.isMaximized();
|
||||||
|
});
|
||||||
|
ipcMain.on("win-minimize", (event, arg) => {
|
||||||
|
mainWindow.minimize();
|
||||||
|
});
|
||||||
|
ipcMain.on("win-unmaximize", (event, arg) => {
|
||||||
|
mainWindow.unmaximize();
|
||||||
|
});
|
||||||
|
ipcMain.on("win-show", (event, arg) => {
|
||||||
|
mainWindow.show();
|
||||||
|
});
|
||||||
|
ipcMain.on("win-hide", (event, arg) => {
|
||||||
|
mainWindow.hide();
|
||||||
|
});
|
||||||
|
ipcMain.on("get-app-version", (event) => {
|
||||||
|
event.returnValue = getVersion();
|
||||||
|
});
|
||||||
|
ipcMain.on("splashEnd", (event, arg) => {
|
||||||
|
mainWindow.setSize(800, 600);
|
||||||
|
});
|
||||||
|
ipcMain.on("restart", (event, arg) => {
|
||||||
|
app.relaunch();
|
||||||
|
app.exit();
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.on("saveSettings", (event, ...args) => {
|
||||||
|
//@ts-ignore
|
||||||
|
saveSettings(...args);
|
||||||
|
});
|
||||||
|
ipcMain.on("channel", (event) => {
|
||||||
|
event.returnValue = settings.channel;
|
||||||
|
});
|
||||||
|
ipcMain.on("clientmod", (event, arg) => {
|
||||||
|
event.returnValue = settings.mods;
|
||||||
|
});
|
||||||
|
ipcMain.on("titlebar", (event, arg) => {
|
||||||
|
event.returnValue = customTitlebar;
|
||||||
|
});
|
||||||
|
ipcMain.on("openSettingsWindow", (event, arg) => {
|
||||||
|
createSettingsWindow();
|
||||||
|
});
|
||||||
|
ipcMain.on("setting-armcordCSP", (event) => {
|
||||||
|
if (settings.armcordCSP) {
|
||||||
|
event.returnValue = true;
|
||||||
|
} else {
|
||||||
|
event.returnValue = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
ipcMain.handle("DESKTOP_CAPTURER_GET_SOURCES", (event, opts) =>
|
||||||
|
desktopCapturer.getSources(opts)
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
161
src/main.ts
161
src/main.ts
|
@ -2,24 +2,21 @@
|
||||||
import {
|
import {
|
||||||
app,
|
app,
|
||||||
BrowserWindow,
|
BrowserWindow,
|
||||||
ipcMain,
|
|
||||||
shell,
|
|
||||||
desktopCapturer,
|
|
||||||
session,
|
session,
|
||||||
} from "electron";
|
} from "electron";
|
||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
import "v8-compile-cache";
|
import "v8-compile-cache";
|
||||||
import * as storage from "electron-json-storage";
|
import * as storage from "electron-json-storage";
|
||||||
import { saveSettings, getVersion, setup, getConfigUnsafe } from "./utils";
|
import { getConfigUnsafe, setup } from "./utils";
|
||||||
import "./extensions/mods";
|
import "./extensions/mods";
|
||||||
import "./extensions/plugin";
|
import "./extensions/plugin";
|
||||||
import "./tray";
|
import "./tray";
|
||||||
|
import { mainWindow, createCustomWindow, createNativeWindow } from "./window";
|
||||||
import "./shortcuts";
|
import "./shortcuts";
|
||||||
var contentPath: string;
|
export var contentPath: string;
|
||||||
var channel: string;
|
var channel: string;
|
||||||
export var mainWindow: BrowserWindow;
|
export var settings: any;
|
||||||
var settings: any;
|
export var customTitlebar: boolean;
|
||||||
|
|
||||||
storage.has("settings", function (error, hasKey) {
|
storage.has("settings", function (error, hasKey) {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
|
|
||||||
|
@ -27,119 +24,41 @@ storage.has("settings", function (error, hasKey) {
|
||||||
console.log("First run of the ArmCord. Starting setup.");
|
console.log("First run of the ArmCord. Starting setup.");
|
||||||
setup();
|
setup();
|
||||||
contentPath = path.join(__dirname, "/content/setup.html");
|
contentPath = path.join(__dirname, "/content/setup.html");
|
||||||
if(!contentPath.includes("ts-out")) {
|
if (!contentPath.includes("ts-out")) {
|
||||||
contentPath = path.join(__dirname,"/ts-out/content/setup.html");
|
contentPath = path.join(__dirname, "/ts-out/content/setup.html");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log("ArmCord has been run before. Skipping setup.");
|
console.log("ArmCord has been run before. Skipping setup.");
|
||||||
contentPath = path.join(__dirname,"/content/splash.html");
|
contentPath = path.join(__dirname, "/content/splash.html");
|
||||||
if(!contentPath.includes("ts-out")) {
|
if (!contentPath.includes("ts-out")) {
|
||||||
contentPath = path.join(__dirname,"/ts-out/content/splash.html");
|
contentPath = path.join(__dirname, "/ts-out/content/splash.html");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}});
|
});
|
||||||
storage.get("settings", function (error, data: any) {
|
storage.get("settings", function (error, data: any) {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
console.log(data);
|
console.log(data);
|
||||||
channel = data.channel;
|
channel = data.channel;
|
||||||
settings = data;
|
settings = data;
|
||||||
|
|
||||||
});
|
});
|
||||||
var titlebar:any = getConfigUnsafe("customTitlebar")
|
app.whenReady().then(async () => {
|
||||||
console.log(!titlebar)
|
if (await getConfigUnsafe("customTitlebar") == true) {
|
||||||
function createWindow() {
|
console.log("Creating custom titlebar window.");
|
||||||
mainWindow = new BrowserWindow({
|
customTitlebar = true;
|
||||||
width: 300,
|
createCustomWindow();
|
||||||
height: 350,
|
} else if (await getConfigUnsafe("customTitlebar") == "setup") {
|
||||||
title: "ArmCord",
|
//rare case of setup window
|
||||||
darkTheme: true,
|
console.log("Creating setup window.");
|
||||||
icon: path.join(__dirname, "/assets/icon_transparent.png"),
|
customTitlebar = true;
|
||||||
frame: !titlebar,
|
createCustomWindow();
|
||||||
autoHideMenuBar: true,
|
} else {
|
||||||
webPreferences: {
|
console.log("Creating native titlebar window.");
|
||||||
preload: path.join(__dirname, "preload/preload.js"),
|
customTitlebar = false;
|
||||||
},
|
createNativeWindow();
|
||||||
});
|
|
||||||
ipcMain.on("get-app-path", (event, arg) => {
|
|
||||||
event.reply("app-path", app.getAppPath());
|
|
||||||
});
|
|
||||||
ipcMain.on("open-external-link", (event, href: string) => {
|
|
||||||
shell.openExternal(href);
|
|
||||||
});
|
|
||||||
ipcMain.on("win-maximize", (event, arg) => {
|
|
||||||
mainWindow.maximize();
|
|
||||||
});
|
|
||||||
ipcMain.on("win-isMaximized", (event, arg) => {
|
|
||||||
event.returnValue = mainWindow.isMaximized();
|
|
||||||
});
|
|
||||||
ipcMain.on("win-minimize", (event, arg) => {
|
|
||||||
mainWindow.minimize();
|
|
||||||
});
|
|
||||||
ipcMain.on("win-unmaximize", (event, arg) => {
|
|
||||||
mainWindow.unmaximize();
|
|
||||||
});
|
|
||||||
ipcMain.on("win-show", (event, arg) => {
|
|
||||||
mainWindow.show();
|
|
||||||
});
|
|
||||||
ipcMain.on("win-hide", (event, arg) => {
|
|
||||||
mainWindow.hide();
|
|
||||||
});
|
|
||||||
ipcMain.on("get-app-version", (event) => {
|
|
||||||
event.returnValue = getVersion();
|
|
||||||
});
|
|
||||||
ipcMain.on("splashEnd", (event, arg) => {
|
|
||||||
mainWindow.setSize(800, 600);
|
|
||||||
});
|
|
||||||
ipcMain.on("restart", (event, arg) => {
|
|
||||||
app.relaunch();
|
|
||||||
app.exit();
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on("saveSettings", (event, ...args) => {
|
|
||||||
//@ts-ignore
|
|
||||||
saveSettings(...args);
|
|
||||||
});
|
|
||||||
ipcMain.on("channel", (event) => {
|
|
||||||
event.returnValue = channel;
|
|
||||||
});
|
|
||||||
ipcMain.on("clientmod", (event, arg) => {
|
|
||||||
event.returnValue = settings.mods;
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on("setting-armcordCSP", (event) => {
|
|
||||||
storage.get("settings", function (error, data: any) {
|
|
||||||
if (error) throw error;
|
|
||||||
if (data.armcordCSP) {
|
|
||||||
event.returnValue = true;
|
|
||||||
} else {
|
|
||||||
event.returnValue = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
ipcMain.handle("DESKTOP_CAPTURER_GET_SOURCES", (event, opts) =>
|
|
||||||
desktopCapturer.getSources(opts)
|
|
||||||
);
|
|
||||||
mainWindow.webContents.userAgent =
|
|
||||||
"Mozilla/5.0 (X11; Linux x86) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"; //fake useragent for screenshare to work
|
|
||||||
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
|
|
||||||
shell.openExternal(url);
|
|
||||||
return { action: "deny" };
|
|
||||||
});
|
|
||||||
console.log(contentPath)
|
|
||||||
try {
|
|
||||||
mainWindow.loadFile(contentPath);
|
|
||||||
} catch(e) {
|
|
||||||
console.log("Major error detected while starting up. User is most likely on Windows platform. Fallback to alternative startup.")
|
|
||||||
mainWindow.loadURL(`file://${__dirname}/ts-out/content/splash.html`);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
app.whenReady().then(() => {
|
|
||||||
createWindow();
|
|
||||||
session
|
session
|
||||||
.fromPartition("some-partition")
|
.fromPartition("some-partition")
|
||||||
.setPermissionRequestHandler((webContents, permission, callback) => {
|
.setPermissionRequestHandler((webContents, permission, callback) => {
|
||||||
const url = webContents.getURL(); //unused?
|
|
||||||
|
|
||||||
if (permission === "notifications") {
|
if (permission === "notifications") {
|
||||||
// Approves the permissions request
|
// Approves the permissions request
|
||||||
callback(true);
|
callback(true);
|
||||||
|
@ -148,21 +67,21 @@ app.whenReady().then(() => {
|
||||||
// Approves the permissions request
|
// Approves the permissions request
|
||||||
callback(true);
|
callback(true);
|
||||||
}
|
}
|
||||||
if (url.startsWith("discord://")) {
|
|
||||||
// Denies the permissions request
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
if (url.startsWith("discord.com/science")) {
|
|
||||||
// Denies the permissions request
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
if (url.startsWith("discord.com/tracing")) {
|
|
||||||
// Denies the permissions request
|
|
||||||
return callback(false);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
mainWindow.webContents.session.webRequest.onBeforeRequest(
|
||||||
|
(details, callback) => {
|
||||||
|
if (/api\/v\d\/science$/g.test(details.url))
|
||||||
|
return callback({ cancel: true });
|
||||||
|
return callback({});
|
||||||
|
}
|
||||||
|
);
|
||||||
app.on("activate", function () {
|
app.on("activate", function () {
|
||||||
if (BrowserWindow.getAllWindows().length === 0) createWindow();
|
if (BrowserWindow.getAllWindows().length === 0)
|
||||||
|
if (!settings.customTitlebar) {
|
||||||
|
createNativeWindow();
|
||||||
|
} else {
|
||||||
|
createCustomWindow();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -11,24 +11,22 @@ contextBridge.exposeInMainWorld("armcord", {
|
||||||
},
|
},
|
||||||
titlebar: {
|
titlebar: {
|
||||||
injectTitlebar: () => injectTitlebar(),
|
injectTitlebar: () => injectTitlebar(),
|
||||||
|
isTitlebar: ipcRenderer.sendSync("titlebar"),
|
||||||
},
|
},
|
||||||
electron: process.versions.electron,
|
electron: process.versions.electron,
|
||||||
channel: ipcRenderer.sendSync("channel"),
|
channel: ipcRenderer.sendSync("channel"),
|
||||||
version: ipcRenderer.sendSync("get-app-version", "app-version"),
|
version: ipcRenderer.sendSync("get-app-version", "app-version"),
|
||||||
getDisplayMediaSelector: getDisplayMediaSelector,
|
getDisplayMediaSelector: getDisplayMediaSelector,
|
||||||
restart: () => ipcRenderer.send("restart"),
|
openSettingsWindow: () => ipcRenderer.send("openSettingsWindow"),
|
||||||
saveSettings: (...args: any) => ipcRenderer.send("saveSettings", ...args),
|
|
||||||
splashEnd: () => ipcRenderer.send("splashEnd"),
|
|
||||||
});
|
});
|
||||||
contextBridge.exposeInMainWorld("electron", {
|
//to be only used inside armcord internal setup/splash etc
|
||||||
//deprecated, used for legacy purposes, will be removed in future versions
|
if (
|
||||||
window: {
|
window.location.href.indexOf("splash.html") > -1 ||
|
||||||
show: () => ipcRenderer.send("win-show"),
|
window.location.href.indexOf("setup.html") > -1
|
||||||
hide: () => ipcRenderer.send("win-hide"),
|
) {
|
||||||
minimize: () => ipcRenderer.send("win-minimize"),
|
contextBridge.exposeInMainWorld("armcordinternal", {
|
||||||
maximize: () => ipcRenderer.send("win-maximize"),
|
restart: () => ipcRenderer.send("restart"),
|
||||||
},
|
saveSettings: (...args: any) => ipcRenderer.send("saveSettings", ...args),
|
||||||
electron: process.versions.electron,
|
splashEnd: () => ipcRenderer.send("splashEnd"),
|
||||||
warning: 'This is a deprecated API and will be removed in future versions (3.0.0 --> 3.1.0).',
|
});
|
||||||
version: ipcRenderer.sendSync("get-app-version", "app-version"),
|
}
|
||||||
});
|
|
|
@ -6,6 +6,11 @@ import { injectTitlebar } from "./titlebar";
|
||||||
import { sleep, addStyle } from "../utils";
|
import { sleep, addStyle } from "../utils";
|
||||||
import { ipcRenderer } from "electron";
|
import { ipcRenderer } from "electron";
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
armcord: any;
|
||||||
|
}
|
||||||
|
}
|
||||||
const clientMods = {
|
const clientMods = {
|
||||||
goosemod: "https://api.goosemod.com/inject.js",
|
goosemod: "https://api.goosemod.com/inject.js",
|
||||||
cumcord:
|
cumcord:
|
||||||
|
@ -26,7 +31,9 @@ console.log("ArmCord");
|
||||||
if (window.location.href.indexOf("splash.html") > -1) {
|
if (window.location.href.indexOf("splash.html") > -1) {
|
||||||
console.log("Skipping titlebar injection and client mod injection.");
|
console.log("Skipping titlebar injection and client mod injection.");
|
||||||
} else {
|
} else {
|
||||||
injectTitlebar();
|
if (ipcRenderer.sendSync("titlebar")) {
|
||||||
|
injectTitlebar();
|
||||||
|
}
|
||||||
sleep(5000).then(() => {
|
sleep(5000).then(() => {
|
||||||
const cssPath = path.join(__dirname, "../", "/content/css/discord.css");
|
const cssPath = path.join(__dirname, "../", "/content/css/discord.css");
|
||||||
addStyle(fs.readFileSync(cssPath, "utf8"));
|
addStyle(fs.readFileSync(cssPath, "utf8"));
|
||||||
|
|
25
src/settings/main.ts
Normal file
25
src/settings/main.ts
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import { BrowserWindow, shell } from "electron";
|
||||||
|
import path from "path";
|
||||||
|
|
||||||
|
var settingsWindow;
|
||||||
|
export function createSettingsWindow() {
|
||||||
|
settingsWindow = new BrowserWindow({
|
||||||
|
width: 500,
|
||||||
|
height: 600,
|
||||||
|
title: "ArmCord Settings",
|
||||||
|
darkTheme: true,
|
||||||
|
icon: path.join(__dirname, "/assets/icon_transparent.png"),
|
||||||
|
frame: false,
|
||||||
|
autoHideMenuBar: true,
|
||||||
|
webPreferences: {
|
||||||
|
preload: path.join(__dirname, "preload/preload.js"),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
settingsWindow.webContents.setWindowOpenHandler(({ url }) => {
|
||||||
|
shell.openExternal(url);
|
||||||
|
return { action: "deny" };
|
||||||
|
});
|
||||||
|
|
||||||
|
settingsWindow.loadFile("settings.html");
|
||||||
|
}
|
1
src/settings/preload.ts
Normal file
1
src/settings/preload.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
console.log("test")
|
|
@ -1,35 +1,18 @@
|
||||||
|
import { app } from "electron";
|
||||||
import { Menu, MenuItem } from "electron";
|
import {mainWindow} from './window';
|
||||||
import { mainWindow } from "./main";
|
//https://github.com/electron/electron/issues/1334#issuecomment-716080005
|
||||||
const menu = new Menu();
|
// TO-DO add more
|
||||||
menu.append(
|
app.on("web-contents-created", (webContentsCreatedEvent, webContents) => {
|
||||||
new MenuItem({
|
webContents.on("before-input-event", (beforeInputEvent, input) => {
|
||||||
label: "ArmCord" + process.env.npm_package_version,
|
// console.log('Main console::', input)
|
||||||
submenu: [
|
const { code, alt, control, shift, meta } = input;
|
||||||
{
|
// Shortcut: toggle devTools
|
||||||
role: "toggleDevTools",
|
if (shift && control && !alt && !meta && code === "KeyI") {
|
||||||
accelerator:
|
mainWindow.webContents.toggleDevTools();
|
||||||
process.platform === "darwin" ? "Ctrl+Cmd+I" : "Ctrl+Shift+I",
|
}
|
||||||
click: () => {
|
// Shortcut: window reload
|
||||||
mainWindow.webContents.toggleDevTools();
|
if (shift && control && !alt && !meta && code === "KeyR") {
|
||||||
},
|
mainWindow.reload();
|
||||||
},
|
}
|
||||||
{
|
});
|
||||||
role: "toggleDevTools",
|
});
|
||||||
accelerator: "F12",
|
|
||||||
click: () => {
|
|
||||||
mainWindow.webContents.toggleDevTools();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
role: "reload",
|
|
||||||
accelerator:
|
|
||||||
"Ctrl+F5",
|
|
||||||
click: () => {
|
|
||||||
mainWindow.webContents.reload();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
})
|
|
||||||
);
|
|
||||||
Menu.setApplicationMenu(menu);
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { app, Menu, Tray } from 'electron';
|
import { app, Menu, Tray } from 'electron';
|
||||||
import {mainWindow} from './main';
|
import {mainWindow} from './window';
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
let tray = null
|
let tray = null
|
||||||
app.whenReady().then(() => {
|
app.whenReady().then(() => {
|
||||||
|
|
29
src/utils.ts
29
src/utils.ts
|
@ -1,6 +1,8 @@
|
||||||
import * as storage from "electron-json-storage";
|
import * as storage from "electron-json-storage";
|
||||||
import * as fs from "fs";
|
import * as fs from "fs";
|
||||||
import { app } from "electron";
|
import { app } from "electron";
|
||||||
|
import path from "path";
|
||||||
|
export var firstRun: boolean;
|
||||||
|
|
||||||
//utillity functions that are used all over the codebase or just too obscure to be put in the file used in
|
//utillity functions that are used all over the codebase or just too obscure to be put in the file used in
|
||||||
export function addStyle(styleString: string) {
|
export function addStyle(styleString: string) {
|
||||||
|
@ -21,9 +23,9 @@ export function setup() {
|
||||||
{
|
{
|
||||||
customTitlebar: true,
|
customTitlebar: true,
|
||||||
channel: "stable",
|
channel: "stable",
|
||||||
firstRun: "done",
|
doneSetup: true,
|
||||||
armcordCSP: true,
|
armcordCSP: true,
|
||||||
mods: "cumcord"
|
mods: "cumcord",
|
||||||
},
|
},
|
||||||
function (error) {
|
function (error) {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
|
@ -45,7 +47,7 @@ export function saveSettings(
|
||||||
{
|
{
|
||||||
customTitlebar: customTitlebarSetting,
|
customTitlebar: customTitlebarSetting,
|
||||||
channel: channelSetting,
|
channel: channelSetting,
|
||||||
firstRun: "done",
|
doneSetup: true,
|
||||||
armcordCSP: armcordCSPSetting,
|
armcordCSP: armcordCSPSetting,
|
||||||
mods: modsSetting,
|
mods: modsSetting,
|
||||||
},
|
},
|
||||||
|
@ -55,15 +57,20 @@ export function saveSettings(
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
export async function getConfigUnsafe(object: string) {
|
export async function getConfigUnsafe(object: string) {
|
||||||
const userDataPath = app.getPath("userData");
|
try {
|
||||||
const storagePath = userDataPath + "/storage/";
|
const userDataPath = app.getPath("userData");
|
||||||
let rawdata = fs.readFileSync(storagePath + "settings.json", "utf-8");
|
const storagePath = path.join(userDataPath, "/storage/");
|
||||||
let returndata = JSON.parse(rawdata);
|
let rawdata = fs.readFileSync(storagePath + "settings.json", "utf-8");
|
||||||
console.log(returndata[object]);
|
let returndata = JSON.parse(rawdata);
|
||||||
return returndata[object]
|
console.log(returndata[object]);
|
||||||
|
return returndata[object];
|
||||||
|
} catch (e) {
|
||||||
|
console.log("Config probably doesn't exist yet. Returning setup value.");
|
||||||
|
firstRun = true;
|
||||||
|
return "setup";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
export function getVersion() {
|
export function getVersion() {
|
||||||
//to-do better way of doing this
|
//to-do better way of doing this
|
||||||
return '3.0.1';
|
return "3.1.0";
|
||||||
}
|
}
|
||||||
|
|
73
src/window.ts
Normal file
73
src/window.ts
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
// To allow seamless switching between custom titlebar and native os titlebar,
|
||||||
|
// I had to add most of the window creation code here to split both into seperete functions
|
||||||
|
// WHY? Because I can't use the same code for both due to annoying bug with value `frame` not responding to variables
|
||||||
|
// I'm sorry for this mess but I'm not sure how to fix it.
|
||||||
|
import { BrowserWindow, shell } from "electron";
|
||||||
|
import path from "path";
|
||||||
|
import { contentPath } from "./main";
|
||||||
|
import { firstRun } from "./utils";
|
||||||
|
import { registerIpc } from "./ipc";
|
||||||
|
export let mainWindow: BrowserWindow;
|
||||||
|
|
||||||
|
function doAfterDefiningTheWindow() {
|
||||||
|
registerIpc();
|
||||||
|
mainWindow.webContents.userAgent =
|
||||||
|
"Mozilla/5.0 (X11; Linux x86) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"; //fake useragent for screenshare to work
|
||||||
|
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
|
||||||
|
shell.openExternal(url);
|
||||||
|
return { action: "deny" };
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(contentPath);
|
||||||
|
try {
|
||||||
|
mainWindow.loadFile(contentPath);
|
||||||
|
} catch (e) {
|
||||||
|
console.log(
|
||||||
|
"Major error detected while starting up. User is most likely on Windows platform. Fallback to alternative startup."
|
||||||
|
);
|
||||||
|
console.log(process.platform);
|
||||||
|
if (process.platform === "win32") {
|
||||||
|
if (firstRun) {
|
||||||
|
mainWindow.loadURL(`file://${__dirname}/content/setup.html`);
|
||||||
|
} else {
|
||||||
|
mainWindow.loadURL(`file://${__dirname}/content/splash.html`);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (firstRun) {
|
||||||
|
mainWindow.loadURL(`file://${__dirname}/ts-out/content/setup.html`);
|
||||||
|
} else {
|
||||||
|
mainWindow.loadURL(`file://${__dirname}/ts-out/content/splash.html`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
export function createCustomWindow() {
|
||||||
|
mainWindow = new BrowserWindow({
|
||||||
|
width: 300,
|
||||||
|
height: 350,
|
||||||
|
title: "ArmCord",
|
||||||
|
darkTheme: true,
|
||||||
|
icon: path.join(__dirname, "/assets/icon_transparent.png"),
|
||||||
|
frame: false,
|
||||||
|
autoHideMenuBar: true,
|
||||||
|
webPreferences: {
|
||||||
|
preload: path.join(__dirname, "preload/preload.js"),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
doAfterDefiningTheWindow();
|
||||||
|
}
|
||||||
|
export function createNativeWindow() {
|
||||||
|
mainWindow = new BrowserWindow({
|
||||||
|
width: 300,
|
||||||
|
height: 350,
|
||||||
|
title: "ArmCord",
|
||||||
|
darkTheme: true,
|
||||||
|
icon: path.join(__dirname, "/assets/icon_transparent.png"),
|
||||||
|
frame: true,
|
||||||
|
autoHideMenuBar: true,
|
||||||
|
webPreferences: {
|
||||||
|
preload: path.join(__dirname, "preload/preload.js"),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
doAfterDefiningTheWindow();
|
||||||
|
}
|
Loading…
Reference in a new issue