-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
92 lines (81 loc) · 1.86 KB
/
index.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
const logger = require('./app/utils/logger');
const { app, BrowserWindow, Menu } = require('electron')
const IS_DEV = require('electron-is-dev');
async function createWindow () {
const windowOptions = {
width: IS_DEV ? 956 : 420,
height: 430,
webPreferences: {
nodeIntegration: true
},
resizable: IS_DEV
};
const win = new BrowserWindow(windowOptions)
// const menuBar = Menu.buildFromTemplate([{
// label: app.getName(),
// submenu: [
// {
// label: 'About ' + app.getName(),
// role: 'about'
// },
// {
// type: 'separator'
// },
// {
// label: 'Hide ' + app.getName(),
// accelerator: 'Command+H',
// role: 'hide'
// },
// {
// label: 'Hide Others',
// accelerator: 'Command+Shift+H',
// role: 'hideothers'
// },
// {
// label: 'Show All',
// role: 'unhide'
// },
// {
// type: 'separator'
// }, {
// label: 'Quit',
// accelerator: 'CmdOrCtrl+Q',
// click: function () {
// app.quit();
// }
// }
// ],
// }]
// );
//
// Menu.setApplicationMenu(menuBar);
win.setMenu(null);
win.loadFile('index.html');
if (IS_DEV) {
win.webContents.openDevTools();
}
}
app.whenReady().then(async () => {
try {
await createWindow();
/**
* Enable autoupdates for production version
*/
if (!IS_DEV) {
require('./app/utils/autoupdater');
}
} catch (error) {
logger.error(error);
app.quit();
}
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})