2021-09-04 18:23:58 +00:00
|
|
|
const {
|
|
|
|
app,
|
|
|
|
BrowserWindow,
|
|
|
|
ipcMain
|
2022-02-08 14:27:34 +00:00
|
|
|
} = require('electron');
|
2022-02-22 10:06:22 +00:00
|
|
|
const { autoUpdater } = require('electron-updater');
|
2022-02-08 14:27:34 +00:00
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs');
|
2022-01-11 21:16:14 +00:00
|
|
|
const os = require('os');
|
2022-02-16 09:11:09 +00:00
|
|
|
const exec = require('child_process').spawn;
|
2022-02-24 09:13:00 +00:00
|
|
|
const log = require('electron-log');
|
|
|
|
const mainLog = log.scope('main');
|
|
|
|
const daemonProcessLog = log.scope('freedata-daemon');
|
|
|
|
|
|
|
|
const sysInfo = log.scope('system information');
|
2022-03-03 18:57:40 +00:00
|
|
|
sysInfo.info("SYSTEM INFORMATION ----------------------------- ");
|
2022-02-24 09:13:00 +00:00
|
|
|
sysInfo.info("APP VERSION : " + app.getVersion());
|
|
|
|
sysInfo.info("PLATFORM : " + os.platform());
|
|
|
|
sysInfo.info("ARCHITECTURE: " + os.arch());
|
|
|
|
sysInfo.info("FREE MEMORY: " + os.freemem());
|
|
|
|
sysInfo.info("TOTAL MEMORY: " + os.totalmem());
|
|
|
|
sysInfo.info("LOAD AVG : " + os.loadavg());
|
|
|
|
sysInfo.info("RELEASE : " + os.release());
|
|
|
|
sysInfo.info("TYPE : " + os.type());
|
|
|
|
sysInfo.info("VERSION : " + os.version());
|
|
|
|
sysInfo.info("UPTIME : " + os.uptime());
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-13 16:27:50 +00:00
|
|
|
app.setName("FreeDATA");
|
2021-09-04 15:11:20 +00:00
|
|
|
|
2022-02-08 14:27:34 +00:00
|
|
|
var appDataFolder = process.env.APPDATA || (process.platform == 'darwin' ? process.env.HOME + '/Library/Application Support' : process.env.HOME + "/.config");
|
2021-09-13 16:27:50 +00:00
|
|
|
var configFolder = path.join(appDataFolder, "FreeDATA");
|
2022-02-08 14:27:34 +00:00
|
|
|
var configPath = path.join(configFolder, 'config.json');
|
2021-09-04 14:33:17 +00:00
|
|
|
|
2021-11-19 16:30:17 +00:00
|
|
|
// create config folder if not exists
|
2021-09-04 18:23:58 +00:00
|
|
|
if (!fs.existsSync(configFolder)) {
|
|
|
|
fs.mkdirSync(configFolder);
|
|
|
|
}
|
2021-09-04 14:33:17 +00:00
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
// create config file if not exists with defaults
|
|
|
|
const configDefaultSettings = '{\
|
|
|
|
"tnc_host": "127.0.0.1",\
|
|
|
|
"tnc_port": "3000",\
|
|
|
|
"daemon_host": "127.0.0.1",\
|
|
|
|
"daemon_port": "3001",\
|
|
|
|
"mycall": "AA0AA-0",\
|
|
|
|
"mygrid": "JN40aa",\
|
|
|
|
"deviceid": "RIG_MODEL_DUMMY_NOVFO",\
|
|
|
|
"deviceport": "/dev/ttyACM1",\
|
|
|
|
"serialspeed_direct": "9600",\
|
|
|
|
"spectrum": "waterfall",\
|
|
|
|
"tnclocation": "localhost",\
|
|
|
|
"stop_bits_direct" : "1",\
|
|
|
|
"data_bits_direct" : "8",\
|
|
|
|
"handshake_direct" : "None",\
|
|
|
|
"radiocontrol" : "disabled",\
|
|
|
|
"deviceport_rigctl" : "3",\
|
|
|
|
"deviceid_rigctl" : "3",\
|
|
|
|
"serialspeed_rigctl" : "9600",\
|
|
|
|
"pttprotocol_direct" : "USB",\
|
|
|
|
"pttprotocol_rigctl" : "USB",\
|
|
|
|
"rigctld_port" : "4532",\
|
|
|
|
"rigctld_ip" : "127.0.0.1",\
|
|
|
|
"enable_scatter" : "False",\
|
|
|
|
"enable_fft" : "False",\
|
|
|
|
"low_bandwith_mode" : "False",\
|
|
|
|
"theme" : "default",\
|
|
|
|
"screen_height" : 430,\
|
|
|
|
"screen_width" : 1050,\
|
|
|
|
"update_channel" : "latest",\
|
|
|
|
"beacon_interval" : 5\
|
|
|
|
}';
|
|
|
|
|
2021-09-04 18:23:58 +00:00
|
|
|
if (!fs.existsSync(configPath)) {
|
2022-03-03 18:57:40 +00:00
|
|
|
fs.writeFileSync(configPath, configDefaultSettings)
|
2021-09-04 18:23:58 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
// load settings
|
|
|
|
var config = require(configPath);
|
|
|
|
|
|
|
|
//config validation
|
|
|
|
// check running config against default config.
|
|
|
|
// if parameter not exists, add it to running config to prevent errors
|
|
|
|
sysInfo.info("CONFIG VALIDATION ----------------------------- ");
|
|
|
|
|
|
|
|
var parsedConfig = JSON.parse(configDefaultSettings);
|
|
|
|
for (key in parsedConfig) {
|
|
|
|
if (config.hasOwnProperty(key)) {
|
|
|
|
sysInfo.info("FOUND SETTTING [" + key + "]: " + config[key]);
|
|
|
|
} else {
|
|
|
|
sysInfo.error("MISSING SETTTING [" + key + "] : " + parsedConfig[key]);
|
|
|
|
config[key] = parsedConfig[key];
|
|
|
|
fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sysInfo.info("------------------------------------------ ");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-10 15:59:33 +00:00
|
|
|
|
|
|
|
|
2021-11-19 16:30:17 +00:00
|
|
|
var chatDB = path.join(configFolder, 'chatDB.json')
|
|
|
|
// create chat database file if not exists
|
2022-03-03 18:57:40 +00:00
|
|
|
const configContentChatDB = `
|
2021-11-19 16:30:17 +00:00
|
|
|
{ "chatDB" : [{
|
|
|
|
"id" : "00000000",
|
|
|
|
"timestamp" : 1234566,
|
|
|
|
"mycall" : "AA0AA",
|
|
|
|
"dxcall" : "AB0AB",
|
|
|
|
"dxgrid" : "JN1200",
|
|
|
|
"message" : "hallowelt"
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
if (!fs.existsSync(chatDB)) {
|
2022-03-03 18:57:40 +00:00
|
|
|
fs.writeFileSync(chatDB, configContentChatDB);
|
2021-11-19 16:30:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-10 15:59:33 +00:00
|
|
|
/*
|
|
|
|
// Creates receivedFiles folder if not exists
|
|
|
|
// https://stackoverflow.com/a/26227660
|
|
|
|
var appDataFolder = process.env.HOME
|
2021-09-13 16:27:50 +00:00
|
|
|
var applicationFolder = path.join(appDataFolder, "FreeDATA");
|
2021-09-10 15:59:33 +00:00
|
|
|
var receivedFilesFolder = path.join(applicationFolder, "receivedFiles");
|
|
|
|
|
|
|
|
// https://stackoverflow.com/a/13544465
|
|
|
|
fs.mkdir(receivedFilesFolder, {
|
|
|
|
recursive: true
|
|
|
|
}, function(err) {
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
|
2022-02-16 08:11:32 +00:00
|
|
|
|
2021-07-23 15:40:44 +00:00
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
let win = null;
|
|
|
|
let data = null;
|
2022-03-03 18:57:40 +00:00
|
|
|
let logViewer = null;
|
2021-09-04 14:33:17 +00:00
|
|
|
var daemonProcess = null;
|
|
|
|
|
2021-07-24 07:06:22 +00:00
|
|
|
function createWindow() {
|
|
|
|
win = new BrowserWindow({
|
2022-02-10 14:05:04 +00:00
|
|
|
width: config.screen_width,
|
|
|
|
height: config.screen_height,
|
2021-08-28 13:50:59 +00:00
|
|
|
autoHideMenuBar: true,
|
2022-02-25 11:54:31 +00:00
|
|
|
icon: 'src/img/icon.png',
|
2021-07-24 07:06:22 +00:00
|
|
|
webPreferences: {
|
|
|
|
//preload: path.join(__dirname, 'preload-main.js'),
|
|
|
|
preload: require.resolve('./preload-main.js'),
|
|
|
|
nodeIntegration: true,
|
|
|
|
contextIsolation: false,
|
2022-02-23 21:15:19 +00:00
|
|
|
enableRemoteModule: false,
|
|
|
|
//https://stackoverflow.com/questions/53390798/opening-new-window-electron/53393655
|
|
|
|
//https://github.com/electron/remote
|
2021-07-24 07:06:22 +00:00
|
|
|
}
|
|
|
|
})
|
2021-08-28 13:50:59 +00:00
|
|
|
// hide menu bar
|
|
|
|
win.setMenuBarVisibility(false)
|
2021-09-04 18:23:58 +00:00
|
|
|
|
2021-07-24 07:06:22 +00:00
|
|
|
//open dev tools
|
2021-09-08 16:22:41 +00:00
|
|
|
/*win.webContents.openDevTools({
|
2021-07-24 07:06:22 +00:00
|
|
|
mode: 'undocked',
|
|
|
|
activate: true,
|
|
|
|
})
|
2021-09-05 15:30:46 +00:00
|
|
|
*/
|
2021-07-24 07:06:22 +00:00
|
|
|
win.loadFile('src/index.html')
|
2021-11-19 16:30:17 +00:00
|
|
|
|
|
|
|
chat = new BrowserWindow({
|
2021-07-24 07:06:22 +00:00
|
|
|
height: 900,
|
|
|
|
width: 600,
|
2021-11-19 16:30:17 +00:00
|
|
|
show: false,
|
2021-07-24 07:06:22 +00:00
|
|
|
parent: win,
|
|
|
|
webPreferences: {
|
2021-11-19 16:30:17 +00:00
|
|
|
preload: require.resolve('./preload-chat.js'),
|
2021-07-24 07:06:22 +00:00
|
|
|
nodeIntegration: true,
|
|
|
|
|
|
|
|
}
|
|
|
|
})
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2022-02-08 14:27:34 +00:00
|
|
|
chat.loadFile('src/chat-module.html');
|
|
|
|
chat.setMenuBarVisibility(false);
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
|
|
|
|
logViewer = new BrowserWindow({
|
|
|
|
height: 900,
|
|
|
|
width: 600,
|
|
|
|
show: false,
|
|
|
|
parent: win,
|
|
|
|
webPreferences: {
|
|
|
|
preload: require.resolve('./preload-log.js'),
|
|
|
|
nodeIntegration: true,
|
|
|
|
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
logViewer.loadFile('src/log-module.html');
|
|
|
|
logViewer.setMenuBarVisibility(false);
|
|
|
|
|
|
|
|
// Emitted when the window is closed.
|
|
|
|
logViewer.on('close', function(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
logViewer.hide();
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
|
|
|
|
// Emitted when the window is closed.
|
2021-07-24 07:06:22 +00:00
|
|
|
win.on('closed', function() {
|
2021-07-17 07:02:56 +00:00
|
|
|
win = null;
|
2021-11-19 16:30:17 +00:00
|
|
|
chat = null;
|
2022-03-03 18:57:40 +00:00
|
|
|
logViewer = null;
|
2021-07-17 07:02:56 +00:00
|
|
|
})
|
2022-02-22 10:06:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
win.once('ready-to-show', () => {
|
2022-02-22 14:40:33 +00:00
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
log.transports.file.level = "debug"
|
|
|
|
autoUpdater.logger = log.scope('updater');
|
|
|
|
|
|
|
|
autoUpdater.channel = config.update_channel
|
|
|
|
|
2022-02-23 09:14:46 +00:00
|
|
|
autoUpdater.autoInstallOnAppQuit = false;
|
2022-02-22 14:40:33 +00:00
|
|
|
autoUpdater.autoDownload = true;
|
2022-02-22 10:06:22 +00:00
|
|
|
autoUpdater.checkForUpdatesAndNotify();
|
2022-02-23 21:15:19 +00:00
|
|
|
//autoUpdater.quitAndInstall();
|
2022-02-22 10:06:22 +00:00
|
|
|
});
|
2021-07-17 07:02:56 +00:00
|
|
|
|
2021-11-19 16:30:17 +00:00
|
|
|
|
|
|
|
chat.on('closed', function () {
|
2022-02-23 21:15:19 +00:00
|
|
|
|
2021-07-24 07:06:22 +00:00
|
|
|
})
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
|
2021-07-24 07:06:22 +00:00
|
|
|
// https://stackoverflow.com/questions/44258831/only-hide-the-window-when-closing-it-electron
|
2021-11-19 16:30:17 +00:00
|
|
|
chat.on('close', function(evt) {
|
2021-07-24 07:06:22 +00:00
|
|
|
evt.preventDefault();
|
2022-02-08 14:27:34 +00:00
|
|
|
chat.hide();
|
2021-07-24 07:06:22 +00:00
|
|
|
});
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
app.whenReady().then(() => {
|
2022-02-08 14:27:34 +00:00
|
|
|
createWindow();
|
2021-09-04 18:23:58 +00:00
|
|
|
|
2022-01-11 21:16:14 +00:00
|
|
|
// start daemon by checking os
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('Starting freedata-daemon binary');
|
2022-02-16 10:28:40 +00:00
|
|
|
|
2022-02-19 20:30:52 +00:00
|
|
|
if(os.platform()=='darwin'){
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcess = exec(path.join(process.resourcesPath, 'tnc', 'freedata-daemon'), [],
|
2022-02-21 16:25:33 +00:00
|
|
|
{
|
|
|
|
cwd: path.join(process.resourcesPath, 'tnc'),
|
|
|
|
});
|
2022-02-19 20:30:52 +00:00
|
|
|
}
|
|
|
|
|
2022-02-21 16:25:33 +00:00
|
|
|
/*
|
|
|
|
process.resourcesPath -->
|
|
|
|
/tmp/.mount_FreeDAUQYfKb/resources
|
|
|
|
|
|
|
|
__dirname -->
|
|
|
|
/tmp/.mount_FreeDAUQYfKb/resources/app.asar
|
|
|
|
*/
|
2022-02-19 19:45:57 +00:00
|
|
|
|
2022-02-16 10:28:40 +00:00
|
|
|
if(os.platform()=='linux'){
|
|
|
|
|
2022-02-24 09:13:00 +00:00
|
|
|
/*
|
2022-02-21 16:25:33 +00:00
|
|
|
var folder = path.join(process.resourcesPath, 'tnc');
|
|
|
|
//var folder = path.join(__dirname, 'extraResources', 'tnc');
|
|
|
|
console.log(folder);
|
|
|
|
fs.readdir(folder, (err, files) => {
|
|
|
|
console.log(files);
|
|
|
|
});
|
2022-02-24 09:13:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
daemonProcess = exec(path.join(process.resourcesPath, 'tnc', 'freedata-daemon'), [],
|
2022-02-21 16:25:33 +00:00
|
|
|
{
|
|
|
|
cwd: path.join(process.resourcesPath, 'tnc'),
|
2022-02-24 09:13:00 +00:00
|
|
|
});
|
2022-01-11 21:16:14 +00:00
|
|
|
}
|
2022-02-16 10:28:40 +00:00
|
|
|
|
2022-01-11 21:16:14 +00:00
|
|
|
|
|
|
|
if(os.platform()=='win32' || os.platform()=='win64'){
|
2022-02-21 11:20:36 +00:00
|
|
|
// for windows the relative path via path.join(__dirname) is not needed for some reason
|
2022-02-21 17:59:03 +00:00
|
|
|
//daemonProcess = exec('\\tnc\\daemon.exe', [])
|
|
|
|
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcess = exec(path.join(process.resourcesPath, 'tnc', 'freedata-daemon.exe'), [],
|
2022-02-21 16:25:33 +00:00
|
|
|
{
|
|
|
|
cwd: path.join(process.resourcesPath, 'tnc'),
|
|
|
|
});
|
2022-02-21 17:59:03 +00:00
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
}
|
2022-02-16 08:11:32 +00:00
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
// return process messages
|
|
|
|
|
|
|
|
daemonProcess.on('error', (err) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcessLog.error(`error when starting daemon: ${err}`);
|
2022-02-21 11:20:36 +00:00
|
|
|
});
|
2022-02-16 09:11:09 +00:00
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
daemonProcess.on('message', (data) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcessLog.info(`${data}`);
|
2022-03-03 18:57:40 +00:00
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
});
|
2022-03-03 18:57:40 +00:00
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
daemonProcess.stdout.on('data', (data) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcessLog.info(`${data}`);
|
2022-03-03 18:57:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
win.webContents.send('action-updater', data);
|
2022-02-21 11:20:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
daemonProcess.stderr.on('data', (data) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcessLog.info(`${data}`);
|
2022-03-03 18:57:40 +00:00
|
|
|
|
|
|
|
let arg = {
|
|
|
|
entry: `${data}`
|
|
|
|
};
|
|
|
|
logViewer.webContents.send('action-update-log', arg);
|
|
|
|
|
|
|
|
|
2022-02-21 11:20:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
daemonProcess.on('close', (code) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
daemonProcessLog.warn(`daemonProcess exited with code ${code}`);
|
2022-02-21 11:20:36 +00:00
|
|
|
});
|
|
|
|
|
2021-12-20 16:12:34 +00:00
|
|
|
|
|
|
|
|
2021-07-24 07:06:22 +00:00
|
|
|
app.on('activate', () => {
|
|
|
|
if (BrowserWindow.getAllWindows().length === 0) {
|
2022-02-08 14:27:34 +00:00
|
|
|
createWindow();
|
2021-07-24 07:06:22 +00:00
|
|
|
}
|
|
|
|
})
|
2021-07-17 07:02:56 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
app.on('window-all-closed', () => {
|
2022-02-23 21:15:19 +00:00
|
|
|
|
|
|
|
|
2022-02-19 20:30:52 +00:00
|
|
|
// closing the tnc binary if not closed when closing application and also our daemon which has been started by the gui
|
2022-02-21 16:25:33 +00:00
|
|
|
try {
|
|
|
|
daemonProcess.kill();
|
|
|
|
} catch (e) {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.error(e)
|
2022-02-21 16:25:33 +00:00
|
|
|
}
|
2022-02-21 11:20:36 +00:00
|
|
|
|
2022-02-19 20:30:52 +00:00
|
|
|
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.warn('closing tnc');
|
2022-02-16 09:11:09 +00:00
|
|
|
|
|
|
|
if(os.platform()=='win32' || os.platform()=='win64'){
|
2022-02-24 09:13:00 +00:00
|
|
|
exec('Taskkill', ['/IM', 'freedata-tnc.exe', '/F'])
|
2022-02-16 09:11:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 09:13:00 +00:00
|
|
|
if(os.platform()=='linux'){
|
|
|
|
|
|
|
|
exec('pkill', ['-9', 'freedata-tnc'])
|
2022-02-19 20:30:52 +00:00
|
|
|
|
2022-02-22 16:06:39 +00:00
|
|
|
// on macOS we need to kill the daemon as well. If we are not doing this,
|
|
|
|
// the daemon wont startup again because the socket is already in use
|
2022-02-24 09:13:00 +00:00
|
|
|
//for some reason killing the daemon is killing our screen on Ubuntu..it seems theres another "daemon" out there...
|
|
|
|
exec('pkill', ['-9', 'freedata-daemon'])
|
|
|
|
}
|
|
|
|
|
|
|
|
if(os.platform()=='darwin'){
|
|
|
|
|
|
|
|
exec('pkill', ['-9', 'freedata-tnc'])
|
|
|
|
|
|
|
|
// on macOS we need to kill the daemon as well. If we are not doing this,
|
|
|
|
// the daemon wont startup again because the socket is already in use
|
|
|
|
//for some reason killing the daemon is killing our screen on Ubuntu..it seems theres another "daemon" out there...
|
|
|
|
exec('pkill', ['-9', 'freedata-daemon'])
|
2022-02-22 16:06:39 +00:00
|
|
|
|
2022-02-16 09:11:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 09:13:00 +00:00
|
|
|
/*
|
2021-07-24 07:06:22 +00:00
|
|
|
if (process.platform !== 'darwin') {
|
2022-02-08 14:27:34 +00:00
|
|
|
app.quit();
|
2021-07-24 07:06:22 +00:00
|
|
|
}
|
2022-02-24 09:13:00 +00:00
|
|
|
*/
|
|
|
|
mainLog.warn('quitting app');
|
|
|
|
app.quit();
|
2022-02-23 21:15:19 +00:00
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
})
|
|
|
|
|
2021-07-19 19:01:38 +00:00
|
|
|
// IPC HANDLER
|
2021-11-19 16:30:17 +00:00
|
|
|
|
|
|
|
ipcMain.on('request-show-chat-window', (event, arg) => {
|
2022-02-08 14:27:34 +00:00
|
|
|
chat.show();
|
2021-08-07 17:46:02 +00:00
|
|
|
});
|
2021-11-19 16:30:17 +00:00
|
|
|
|
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
ipcMain.on('request-update-tnc-state', (event, arg) => {
|
|
|
|
win.webContents.send('action-update-tnc-state', arg);
|
2021-08-07 17:46:02 +00:00
|
|
|
//data.webContents.send('action-update-tnc-state', arg);
|
2021-07-17 07:02:56 +00:00
|
|
|
});
|
|
|
|
|
2021-08-07 18:57:36 +00:00
|
|
|
/*
|
2021-07-23 15:40:44 +00:00
|
|
|
ipcMain.on('request-update-data-state', (event, arg) => {
|
|
|
|
//win.webContents.send('action-update-data-state', arg);
|
2021-08-07 17:46:02 +00:00
|
|
|
//data.webContents.send('action-update-data-state', arg);
|
2021-07-23 15:40:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.on('request-update-heard-stations', (event, arg) => {
|
2021-07-25 14:35:50 +00:00
|
|
|
win.webContents.send('action-update-heard-stations', arg);
|
2021-07-23 15:40:44 +00:00
|
|
|
});
|
2021-08-07 18:57:36 +00:00
|
|
|
*/
|
2021-07-17 07:02:56 +00:00
|
|
|
ipcMain.on('request-update-daemon-state', (event, arg) => {
|
|
|
|
win.webContents.send('action-update-daemon-state', arg);
|
|
|
|
});
|
|
|
|
|
2021-10-17 14:00:23 +00:00
|
|
|
ipcMain.on('request-update-hamlib-test', (event, arg) => {
|
|
|
|
win.webContents.send('action-update-hamlib-test', arg);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-12 15:34:47 +00:00
|
|
|
ipcMain.on('request-update-tnc-connection', (event, arg) => {
|
|
|
|
win.webContents.send('action-update-tnc-connection', arg);
|
|
|
|
});
|
2021-10-17 14:00:23 +00:00
|
|
|
|
2021-07-17 07:02:56 +00:00
|
|
|
ipcMain.on('request-update-daemon-connection', (event, arg) => {
|
|
|
|
win.webContents.send('action-update-daemon-connection', arg);
|
|
|
|
});
|
|
|
|
|
2021-07-19 19:01:38 +00:00
|
|
|
ipcMain.on('run-tnc-command', (event, arg) => {
|
2021-09-04 18:23:58 +00:00
|
|
|
win.webContents.send('run-tnc-command', arg);
|
2021-07-19 19:01:38 +00:00
|
|
|
});
|
2021-08-16 18:04:03 +00:00
|
|
|
|
|
|
|
ipcMain.on('request-update-rx-buffer', (event, arg) => {
|
2021-09-04 18:23:58 +00:00
|
|
|
win.webContents.send('action-update-rx-buffer', arg);
|
2021-09-08 16:22:41 +00:00
|
|
|
});
|
2021-10-17 14:59:15 +00:00
|
|
|
|
2021-10-17 15:22:07 +00:00
|
|
|
ipcMain.on('request-update-rx-msg-buffer', (event, arg) => {
|
2021-11-19 16:30:17 +00:00
|
|
|
chat.webContents.send('action-update-rx-msg-buffer', arg);
|
2021-10-17 14:59:15 +00:00
|
|
|
});
|
2022-02-22 10:06:22 +00:00
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
ipcMain.on('request-open-tnc-log', (event) => {
|
|
|
|
logViewer.show();
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-02-22 10:06:22 +00:00
|
|
|
|
2022-02-22 14:53:55 +00:00
|
|
|
// LISTENER FOR UPDATER EVENTS
|
2022-02-23 09:14:46 +00:00
|
|
|
autoUpdater.on('update-available', (info) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('update available');
|
|
|
|
|
2022-02-22 14:40:33 +00:00
|
|
|
let arg = {
|
2022-02-23 09:14:46 +00:00
|
|
|
status: "update-available",
|
|
|
|
info: info
|
2022-02-22 14:40:33 +00:00
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2022-02-23 09:14:46 +00:00
|
|
|
autoUpdater.on('update-not-available', (info) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('update not available');
|
2022-02-22 14:40:33 +00:00
|
|
|
let arg = {
|
2022-02-23 09:14:46 +00:00
|
|
|
status: "update-not-available",
|
|
|
|
info: info
|
2022-02-22 14:40:33 +00:00
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
2022-02-22 10:06:22 +00:00
|
|
|
});
|
2022-02-22 14:40:33 +00:00
|
|
|
|
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
autoUpdater.on('update-downloaded', (info) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('update downloaded');
|
2022-02-22 14:40:33 +00:00
|
|
|
let arg = {
|
2022-03-03 18:57:40 +00:00
|
|
|
status: "update-downloaded",
|
|
|
|
info: info
|
2022-02-22 14:40:33 +00:00
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
2022-02-23 09:14:46 +00:00
|
|
|
// we need to call this at this point.
|
|
|
|
// if an update is available and we are force closing the app
|
|
|
|
// the entire screen crashes...
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('quit application and install update');
|
2022-03-03 18:57:40 +00:00
|
|
|
autoUpdater.quitAndInstall();
|
2022-02-23 09:14:46 +00:00
|
|
|
|
|
|
|
|
2022-02-22 14:40:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('checking-for-update', () => {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('checking for update');
|
2022-02-22 14:40:33 +00:00
|
|
|
let arg = {
|
2022-02-22 20:05:48 +00:00
|
|
|
status: "checking-for-update",
|
|
|
|
version: app.getVersion()
|
2022-02-22 14:40:33 +00:00
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
|
|
|
});
|
|
|
|
|
|
|
|
autoUpdater.on('download-progress', (progress) => {
|
|
|
|
let arg = {
|
|
|
|
status: "download-progress",
|
|
|
|
progress: progress
|
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
|
|
|
});
|
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
autoUpdater.on('error', (error) => {
|
2022-02-24 09:13:00 +00:00
|
|
|
mainLog.info('update error');
|
2022-02-22 14:40:33 +00:00
|
|
|
let arg = {
|
|
|
|
status: "error",
|
2022-03-03 18:57:40 +00:00
|
|
|
progress: error
|
2022-02-22 14:40:33 +00:00
|
|
|
};
|
|
|
|
win.webContents.send('action-updater', arg);
|
2022-02-22 10:06:22 +00:00
|
|
|
});
|
|
|
|
|
2022-03-03 18:57:40 +00:00
|
|
|
|