diff options
author | 0neGal <mail@0negal.com> | 2021-12-29 23:47:49 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2021-12-29 23:47:49 +0100 |
commit | e199d2b6bbe48d51704156607c9e91d82ed2747f (patch) | |
tree | 3e14a567a193ba3562a92f17839b2a483dd5c09f /src/index.js | |
parent | 9d4515fd408c38ad081c010e052b2960f5fe3dfe (diff) | |
download | Viper-e199d2b6bbe48d51704156607c9e91d82ed2747f.tar.gz Viper-e199d2b6bbe48d51704156607c9e91d82ed2747f.zip |
replaced single quotes, renamed a few things
Simply code style changes, also removed the content of the version divs
since they'll be replaced anyway.
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/index.js b/src/index.js index b41971d..51449af 100644 --- a/src/index.js +++ b/src/index.js @@ -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, @@ -46,10 +46,10 @@ ipcMain.on("launchVanilla", (event) => {utils.launch("vanilla")}) ipcMain.on("update", (event) => {utils.update()}) ipcMain.on("setpathcli", (event) => {utils.setpath()}); -ipcMain.on('getVersionInfo', () => { - win.webContents.send('versionInfo', { +ipcMain.on("getversion", () => { + win.webContents.send("version", { ns: utils.getInstalledVersion(), - vp: 'v' + require('../package.json').version + vp: "v" + require("../package.json").version }); }); |