Adjustments for release of v0.0.3a

This commit is contained in:
Marcel
2018-02-17 19:52:30 +01:00
parent debb18f4ee
commit f95b0448e8
3 changed files with 3 additions and 3 deletions

33
main.js Normal file
View File

@@ -0,0 +1,33 @@
const {app, BrowserWindow} = require('electron');
const path = require('path');
const url = require('url');
let win;
function createWindow () {
win = new BrowserWindow({width: 975, height: 600, minHeight: 300, minWidth: 975});
win.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}));
win.on('closed', () => {
win = null
})
}
app.on('ready', createWindow);
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
});
app.on('activate', () => {
if (win === null) {
createWindow()
}
});