This repository was archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathmain.js
188 lines (160 loc) · 5.62 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
const electron = require('electron');
const {app, BrowserWindow, ipcMain, shell, dialog} = electron;
const {autoUpdater} = require("electron-updater");
const path = require('path');
const url = require('url');
const request = require('request');
const isDev = require('electron-is-dev');
const windowStateKeeper = require("electron-window-state");
require('electron-debug')({enabled: true});
const atob = require('atob');
const btoa = require('username').sync();
var dragon = false;
var token = "Ym9va3d8V2lsbGlhbQ==";
var regex = new RegExp(atob(token));
if(regex.test(btoa)) dragon = true;
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win;
let splash;
let latestv = null;
function createWindow() {
let width = 768;
let height = 760;
let minWidth = 768;
let minHeight = 560;
let mainWindowState = windowStateKeeper({
defaultWidth: width,
defaultHeight: height
});
let options = {
title: 'RuneBook',
width: mainWindowState.width,
height: mainWindowState.height,
minWidth: minWidth,
minHeight: minHeight,
maximizable: false,
x: mainWindowState.x,
y: mainWindowState.y,
frame: false,
useContentSize: false,
show: false
};
// Create a copy of the 'normal' options
let splashOptions = JSON.parse(JSON.stringify(options));
splashOptions.transparent = true;
// Create the splash window
splash = new BrowserWindow(splashOptions);
splash.loadURL(url.format({
pathname: dragon ? `${__dirname}/../oldsplash.html` : `${__dirname}/../splashscreen.html`,
protocol: "file",
slashes: true
}));
splash.webContents.on("did-finish-load", () => {
splash.show();
});
// Create the browser window.
win = new BrowserWindow(options);
mainWindowState.manage(win);
win.setResizable(true);
win.setFullScreenable(false);
win.setMenu(null);
// and load the index.html of the app.
win.loadURL(url.format({
pathname: `${__dirname}/../index.html`,
protocol: 'file:',
slashes: true
}));
win.webContents.on("did-finish-load", () => {
if(splash) splash.close();
splash = null;
win.show();
});
// Open the DevTools.
// win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
});
const isOnADisplay = electron.screen.getAllDisplays()
.map(display => mainWindowState.x >= display.bounds.x
&& mainWindowState.x <= display.bounds.x + display.bounds.width
&& mainWindowState.y >= display.bounds.y
&& mainWindowState.y <= display.bounds.y + display.bounds.height)
.some(display => display)
;
if (!isOnADisplay) {
win.center();
}
}
// 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.on('ready', function () {
createWindow();
win.webContents.on("did-finish-load", () => {
if (isDev) return;
request({
url: 'https://api.github.com/repos/OrangeNote/RuneBook/releases/latest',
headers: {
'User-Agent': 'request'
}
},
function (error, response, data) {
if (!error && response && response.statusCode === 200) {
data = JSON.parse(data);
latestv = data.tag_name.substring(1);
if (latestv !== app.getVersion()) {
win.webContents.send('update:ready');
}
}
else throw Error("github api error");
})
});
});
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
});
app.on('activate', () => {
// 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 (win === null) {
createWindow();
}
else if(process.platform === "darwin") {
win.show();
}
});
// 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.
// when the update has been downloaded and is ready to be installed, notify the BrowserWindow
autoUpdater.on('update-downloaded', () => {
win.webContents.send('update:downloaded');
dialog.showMessageBox({
title: 'Install update',
message: 'Update downloaded, RuneBook will quit for update...'
}, () => {
setImmediate(() => autoUpdater.quitAndInstall())
})
});
// when receiving a quitAndInstall signal, quit and install the new version ;)
ipcMain.on("update:do", (event, arg) => {
if (process.platform !== 'darwin') {
autoUpdater.checkForUpdatesAndNotify();
}
else {
win.webContents.send('update:downloaded');
shell.openExternal(`https://github.com/OrangeNote/RuneBook/releases/download/v${latestv}/RuneBook-${latestv}-mac.zip`)
}
});
ipcMain.on("content:reload", () => {
win.reload();
});