[Customize] 단일 ZXP파일을 설치하도록 프로젝트 변경

This commit is contained in:
Karoid
2020-02-24 18:22:13 +09:00
commit 00b6b34f3a
50 changed files with 25877 additions and 0 deletions

46
app/main.js Normal file
View File

@@ -0,0 +1,46 @@
var app = require('app'); // Module to control application life.
var BrowserWindow = require('browser-window'); // Module to create native browser window.
// Report crashes to our server.
require('crash-reporter').start();
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the javascript object is GCed.
var mainWindow = null;
// Quit when all windows are closed.
app.on('window-all-closed', function() {
// if (process.platform != 'darwin') {
app.quit();
// }
});
// This method will be called when Electron has done everything
// initialization and ready for creating browser windows.
app.on('ready', function() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 600,
height: 450,
'min-width': 600,
'min-height': 450,
'max-width': 600,
'max-height': 450
});
// and load the index.html of the app.
mainWindow.loadUrl('file://' + __dirname + '/index.html');
// Open the devtools.
// mainWindow.openDevTools();
global.version = app.getVersion();
// Emitted when the window is closed.
mainWindow.on('closed', function() {
// 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.
mainWindow = null;
});
});