aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2021-12-31 15:40:32 +0100
committer0neGal <mail@0negal.com>2021-12-31 15:40:32 +0100
commit4f798d07731668f0e850b7d348de74bf6f422de0 (patch)
tree8e530838e0bf8826f48dd570d17ca917c22e622e /src/index.js
parentc8fec42e085ef255a01f62c5010e2d41bb7eb05f (diff)
parent10c786da5be323c0b2e7042e79bcee8849e25ef4 (diff)
downloadViper-4f798d07731668f0e850b7d348de74bf6f422de0.tar.gz
Viper-4f798d07731668f0e850b7d348de74bf6f422de0.zip
Merge branch 'Alystrasz-feat/version-indicator'
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js
index c99e367..198bc74 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,6 +1,6 @@
const fs = require("fs");
const path = require("path");
-const { app, dialog, ipcMain, BrowserWindow } = require("electron");
+const { app, dialog, ipcMain, BrowserWindow, ipcRenderer } = require("electron");
const Emitter = require("events");
const events = new Emitter();
@@ -17,7 +17,7 @@ function start() {
title: "Viper",
resizable: false,
titleBarStyle: "hidden",
- icon: path.join(__dirname, 'assets/icons/512x512.png'),
+ icon: path.join(__dirname, "assets/icons/512x512.png"),
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
@@ -48,7 +48,22 @@ ipcMain.on("setlang", (event, lang) => {utils.setlang(lang)})
ipcMain.on("launchVanilla", (event) => {utils.launch("vanilla")})
ipcMain.on("update", (event) => {utils.update()})
-ipcMain.on("setpathcli", (event) => {utils.setpath()})
+ipcMain.on("setpathcli", (event) => {utils.setpath()});
+
+ipcMain.on("getversion", () => {
+ win.webContents.send("version", {
+ ns: utils.getNSVersion(),
+ vp: "v" + require("../package.json").version
+ });
+});
+
+ipcMain.on("versioncli", () => {
+ console.log("Viper: v" + require("../package.json").version);
+ console.log("Northstar: " + utils.getNSVersion());
+ console.log("Node: " + process.version);
+ console.log("Electron: v" + process.versions.electron);
+ cli.exit();
+})
process.chdir(app.getPath("appData"));