2019-02-28 19:42:22 +07:00
|
|
|
const electron = require('electron')
|
|
|
|
const app = electron.app
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
handleSquirrelEvent: function() {
|
|
|
|
if (process.argv.length === 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ChildProcess = require('child_process');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
const appFolder = path.resolve(process.execPath, '..');
|
|
|
|
const rootAtomFolder = path.resolve(appFolder, '..');
|
|
|
|
const updateDotExe = path.resolve(path.join(rootAtomFolder, 'Update.exe'));
|
|
|
|
const exeName = path.basename(process.execPath);
|
|
|
|
const spawn = function(command, args) {
|
|
|
|
let spawnedProcess, error;
|
|
|
|
|
|
|
|
try {
|
|
|
|
spawnedProcess = ChildProcess.spawn(command, args, {detached: true});
|
|
|
|
} catch (error) {}
|
|
|
|
|
|
|
|
return spawnedProcess;
|
|
|
|
};
|
2019-03-03 00:35:33 +07:00
|
|
|
|
2019-02-28 19:42:22 +07:00
|
|
|
const squirrelEvent = process.argv[1];
|
|
|
|
switch (squirrelEvent) {
|
|
|
|
case '--squirrel-install':
|
|
|
|
case '--squirrel-updated':
|
|
|
|
// Optionally do things such as:
|
|
|
|
// - Add your .exe to the PATH
|
|
|
|
// - Write to the registry for things like file associations and
|
|
|
|
// explorer context menus
|
2019-03-03 00:35:33 +07:00
|
|
|
|
2019-02-28 19:42:22 +07:00
|
|
|
setTimeout(app.quit, 1000);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case '--squirrel-uninstall':
|
|
|
|
// Undo anything you did in the --squirrel-install and
|
|
|
|
// --squirrel-updated handlers
|
2019-03-03 00:35:33 +07:00
|
|
|
|
|
|
|
// Removing desktop shortcut
|
|
|
|
let fs = require('fs');
|
|
|
|
var shortcut_path = app.getPath('desktop') + "\\Ryzen Controller";
|
|
|
|
if (!fs.existsSync(shortcut_path)) {
|
|
|
|
fs.unlink(shortcut_path, console.log);
|
|
|
|
}
|
|
|
|
|
2019-02-28 19:42:22 +07:00
|
|
|
setTimeout(app.quit, 1000);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case '--squirrel-obsolete':
|
|
|
|
// This is called on the outgoing version of your app before
|
|
|
|
// we update to the new version - it's the opposite of
|
|
|
|
// --squirrel-updated
|
|
|
|
|
|
|
|
app.quit();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|