aboutsummaryrefslogtreecommitdiff
path: root/src/ipcMain/constants.ts
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-10-22 06:31:47 +0200
committerVendicated <vendicated@riseup.net>2022-10-22 06:31:47 +0200
commitc116d00d037b9831b2d5cac4df15c10b0c6c4085 (patch)
tree26cd8c7c3c5feed0a3daddef69a28fc3a83f747d /src/ipcMain/constants.ts
parent44f6f71c3efd2e4e0f9dbd97ab4680ec76536052 (diff)
downloadVencord-c116d00d037b9831b2d5cac4df15c10b0c6c4085.tar.gz
Vencord-c116d00d037b9831b2d5cac4df15c10b0c6c4085.tar.bz2
Vencord-c116d00d037b9831b2d5cac4df15c10b0c6c4085.zip
Implement Chrome extension loading myself because electron-devtools-installer is ultra bloated
Diffstat (limited to 'src/ipcMain/constants.ts')
-rw-r--r--src/ipcMain/constants.ts35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/ipcMain/constants.ts b/src/ipcMain/constants.ts
new file mode 100644
index 0000000..18726fc
--- /dev/null
+++ b/src/ipcMain/constants.ts
@@ -0,0 +1,35 @@
+/*
+ * Vencord, a modification for Discord's desktop app
+ * Copyright (c) 2022 Vendicated and contributors
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+import { join } from "path";
+import { app } from "electron";
+
+export const DATA_DIR = process.env.VENCORD_USER_DATA_DIR ?? (
+ process.env.DISCORD_USER_DATA_DIR
+ ? join(process.env.DISCORD_USER_DATA_DIR, "..", "VencordData")
+ : join(app.getPath("userData"), "..", "Vencord")
+);
+export const SETTINGS_DIR = join(DATA_DIR, "settings");
+export const QUICKCSS_PATH = join(SETTINGS_DIR, "quickCss.css");
+export const SETTINGS_FILE = join(SETTINGS_DIR, "settings.json");
+export const ALLOWED_PROTOCOLS = [
+ "https:",
+ "http:",
+ "steam:",
+ "spotify:"
+];