Remove unused
This commit is contained in:
parent
c1af5fd726
commit
849c139124
|
@ -1,67 +0,0 @@
|
||||||
'use strict';
|
|
||||||
|
|
||||||
const electron = require('electron');
|
|
||||||
const app = electron.app;
|
|
||||||
const BrowserWindow = electron.BrowserWindow;
|
|
||||||
const ipcMain = electron.ipcMain;
|
|
||||||
|
|
||||||
let mainWindow
|
|
||||||
|
|
||||||
const {dialog} = require('electron');
|
|
||||||
|
|
||||||
var installPath = process.platform == "win32" ? process.env.LOCALAPPDATA + "\\Discord\\app-0.0.290\\" :
|
|
||||||
process.platform == "darwin" ? "\\Applications\\Discord.app\\" : "";
|
|
||||||
function loadMain() {
|
|
||||||
var width = 800;
|
|
||||||
var height = 400;
|
|
||||||
mainWindow.setSize(width, height);
|
|
||||||
mainWindow.center();
|
|
||||||
mainWindow.loadURL('file://' + __dirname + '/data/index.html');
|
|
||||||
}
|
|
||||||
|
|
||||||
function createSplash() {
|
|
||||||
var width = 300;
|
|
||||||
var height = 100;
|
|
||||||
|
|
||||||
mainWindow = new BrowserWindow({
|
|
||||||
width: width,
|
|
||||||
height: height,
|
|
||||||
fullscreenable: false,
|
|
||||||
maximizable: false,
|
|
||||||
frame: false,
|
|
||||||
resizable: false,
|
|
||||||
alwaysOnTop: true
|
|
||||||
});
|
|
||||||
|
|
||||||
mainWindow.loadURL('file://' + __dirname + '/data/splash.html');
|
|
||||||
loadMain();
|
|
||||||
}
|
|
||||||
|
|
||||||
function quit() {
|
|
||||||
app.quit();
|
|
||||||
}
|
|
||||||
|
|
||||||
ipcMain.on('sync', function(event, arg) {
|
|
||||||
switch(arg) {
|
|
||||||
case "openDirectory":
|
|
||||||
var p = dialog.showOpenDialog({properties: ['openDirectory'], defaultPath: installPath });
|
|
||||||
if(p != undefined) {
|
|
||||||
installPath = p[0];
|
|
||||||
event.returnValue = installPath;
|
|
||||||
} else {
|
|
||||||
event.returnValue = null;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "getInstallPath":
|
|
||||||
event.returnValue = installPath;
|
|
||||||
break;
|
|
||||||
case "loadMain":
|
|
||||||
loadMain();
|
|
||||||
break;
|
|
||||||
case 'quit':
|
|
||||||
quit();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
app.on('ready', createSplash);
|
|
Loading…
Reference in New Issue