mirror of
https://github.com/The-Stratosphere-Solutions/Yescord-Desktop.git
synced 2025-06-24 05:42:57 +03:00
Add files via upload
This commit is contained in:
parent
5daf5dda55
commit
dd88af490a
13
main.js
Normal file
13
main.js
Normal file
@ -0,0 +1,13 @@
|
||||
const { app, BrowserWindow } = require('electron')
|
||||
|
||||
function createWindow () {
|
||||
const win = new BrowserWindow({
|
||||
titleBarStyle: 'hidden',
|
||||
titleBarOverlay: true
|
||||
})
|
||||
win.loadURL('http://torw.ct.ws/yesc/')
|
||||
}
|
||||
|
||||
app.whenReady().then(() => {
|
||||
createWindow()
|
||||
})
|
20
package.json
Normal file
20
package.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "yescord-desktop",
|
||||
"version": "1.0.0",
|
||||
"description": "Yescord desktop client",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"start": "electron ."
|
||||
},
|
||||
"repository": "https://github.com/electron/electron-quick-start",
|
||||
"keywords": [
|
||||
"Yescord",
|
||||
"desktop",
|
||||
"client"
|
||||
],
|
||||
"author": "GitHub",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"electron": "^35.0.2"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user