mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Preparation for rewrite
This commit is contained in:
parent
de720ec9cf
commit
e65aa214af
6 changed files with 0 additions and 5638 deletions
19
index.html
19
index.html
|
@ -1,19 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
||||||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
||||||
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
||||||
<title>ArmCord</title>
|
|
||||||
<meta http-equiv="refresh" content="0; url=http://discord.com/app" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Hello World!</h1>
|
|
||||||
<h1>Redirecting you to Discord...</h1>
|
|
||||||
<h1>If you are stuck on this page check your internet connection!</h1>
|
|
||||||
|
|
||||||
<!-- You can also require other files to run in this process -->
|
|
||||||
<script src="./renderer.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
47
main.js
47
main.js
|
@ -1,47 +0,0 @@
|
||||||
// Modules to control application life and create native browser window
|
|
||||||
const {app, BrowserWindow, session} = require('electron')
|
|
||||||
const path = require('path')
|
|
||||||
require('v8-compile-cache');
|
|
||||||
|
|
||||||
|
|
||||||
function createWindow () {
|
|
||||||
// Create the browser window.
|
|
||||||
const mainWindow = new BrowserWindow({
|
|
||||||
width: 800,
|
|
||||||
height: 600,
|
|
||||||
webPreferences: {
|
|
||||||
preload: path.join(__dirname, 'preload.js')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// and load the index.html of the app.
|
|
||||||
mainWindow.loadFile('index.html')
|
|
||||||
|
|
||||||
// Open the DevTools.
|
|
||||||
// mainWindow.webContents.openDevTools()
|
|
||||||
}
|
|
||||||
|
|
||||||
// This method will be called when Electron has finished
|
|
||||||
// initialization and is ready to create browser windows.
|
|
||||||
// Some APIs can only be used after this event occurs.
|
|
||||||
app.whenReady().then(() => {
|
|
||||||
createWindow()
|
|
||||||
session.defaultSession.loadExtension(`${require('electron').app.getAppPath()}/goosemod/`)
|
|
||||||
|
|
||||||
app.on('activate', function () {
|
|
||||||
// On macOS it's common to re-create a window in the app when the
|
|
||||||
// dock icon is clicked and there are no other windows open.
|
|
||||||
if (BrowserWindow.getAllWindows().length === 0) createWindow()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
// Quit when all windows are closed, except on macOS. There, it's common
|
|
||||||
// for applications and their menu bar to stay active until the user quits
|
|
||||||
// explicitly with Cmd + Q.
|
|
||||||
app.on('window-all-closed', function () {
|
|
||||||
if (process.platform !== 'darwin') app.quit()
|
|
||||||
})
|
|
||||||
|
|
||||||
// In this file you can include the rest of your app's specific main process
|
|
||||||
// code. You can also put them in separate files and require them here.
|
|
||||||
|
|
5478
package-lock.json
generated
5478
package-lock.json
generated
File diff suppressed because it is too large
Load diff
69
package.json
69
package.json
|
@ -1,69 +0,0 @@
|
||||||
{
|
|
||||||
"name": "armcord",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "A minimal Electron application",
|
|
||||||
"main": "main.js",
|
|
||||||
"scripts": {
|
|
||||||
"start": "electron-forge start",
|
|
||||||
"package": "electron-forge package",
|
|
||||||
"make": "electron-forge make"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/electron/electron-quick-start.git"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"Electron",
|
|
||||||
"quick",
|
|
||||||
"start",
|
|
||||||
"tutorial",
|
|
||||||
"demo"
|
|
||||||
],
|
|
||||||
"author": "GitHub",
|
|
||||||
"license": "MIT",
|
|
||||||
"devDependencies": {
|
|
||||||
"@electron-forge/cli": "^6.0.0-beta.54",
|
|
||||||
"@electron-forge/maker-deb": "^6.0.0-beta.54",
|
|
||||||
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
|
|
||||||
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
|
|
||||||
"@electron-forge/maker-zip": "^6.0.0-beta.54",
|
|
||||||
"electron": "^12.0.0"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/electron/electron-quick-start/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/electron/electron-quick-start#readme",
|
|
||||||
"dependencies": {
|
|
||||||
"electron-squirrel-startup": "^1.0.0",
|
|
||||||
"rpmbuild": "0.0.23",
|
|
||||||
"v8-compile-cache": "^2.3.0",
|
|
||||||
"yarn": "^1.22.10"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"forge": {
|
|
||||||
"packagerConfig": {},
|
|
||||||
"makers": [
|
|
||||||
{
|
|
||||||
"name": "@electron-forge/maker-squirrel",
|
|
||||||
"config": {
|
|
||||||
"name": "armcord"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "@electron-forge/maker-zip",
|
|
||||||
"platforms": [
|
|
||||||
"darwin"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "@electron-forge/maker-deb",
|
|
||||||
"config": {}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "@electron-forge/maker-rpm",
|
|
||||||
"config": {}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
19
preload.js
19
preload.js
|
@ -1,19 +0,0 @@
|
||||||
// All of the Node.js APIs are available in the preload process.
|
|
||||||
// It has the same sandbox as a Chrome extension.
|
|
||||||
window.addEventListener('DOMContentLoaded', () => {
|
|
||||||
const replaceText = (selector, text) => {
|
|
||||||
const element = document.getElementById(selector)
|
|
||||||
if (element) element.innerText = text
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const type of ['chrome', 'node', 'electron']) {
|
|
||||||
replaceText(`${type}-version`, process.versions[type])
|
|
||||||
}
|
|
||||||
})
|
|
||||||
style = document.createElement("style");
|
|
||||||
document.head.appendChild(style);
|
|
||||||
style.appendChild(
|
|
||||||
document.createTextNode(
|
|
||||||
`@import url("https://smartfrigde.github.io/smartcord/custom.css")`
|
|
||||||
)
|
|
||||||
);
|
|
|
@ -1,6 +0,0 @@
|
||||||
// This file is required by the index.html file and will
|
|
||||||
// be executed in the renderer process for that window.
|
|
||||||
// No Node.js APIs are available in this process because
|
|
||||||
// `nodeIntegration` is turned off. Use `preload.js` to
|
|
||||||
// selectively enable features needed in the rendering
|
|
||||||
// process.
|
|
Loading…
Reference in a new issue