From af204a55d76cd93fd90c705c8e9a9fc66d29c459 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Fri, 29 Jul 2022 11:45:19 -0500 Subject: [PATCH] 1.8.3 remove devtools --- README.md | 4 ++-- bin/printversion.ps1 | 2 +- bin/printversion.sh | 2 +- package.json | 2 +- public/electron.js | 4 ++-- src/components/Sidebar.tsx | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 37da00ef..9c94ed50 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ Head over to the releases page and grab the latest installers or binary. https:/ If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it. ``` -./Zecwallet.Fullnode-1.8.2.AppImage +./Zecwallet.Fullnode-1.8.3.AppImage ``` If you prefer to install a `.deb` package, that is also available. ``` -sudo apt install -f ./zecwallet_1.8.2_amd64.deb +sudo apt install -f ./zecwallet_1.8.3_amd64.deb ``` ### Windows diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index 8c3aa9cb..a2d094ed 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "VERSION=1.8.2" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append +echo "VERSION=1.8.3" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append diff --git a/bin/printversion.sh b/bin/printversion.sh index e427ef3a..ae936fdd 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="1.8.2" +VERSION="1.8.3" echo "VERSION=$VERSION" >> $GITHUB_ENV diff --git a/package.json b/package.json index af83c9b6..e2ed51fa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "1.8.2", + "version": "1.8.3", "description": "Zecwallet Fullnode (Electron version)", "private": true, "main": "./public/electron.js", diff --git a/public/electron.js b/public/electron.js index a0c93e70..e1b43703 100644 --- a/public/electron.js +++ b/public/electron.js @@ -112,9 +112,9 @@ function createWindow() { mainWindow.loadURL(appURL); // Automatically open Chrome's DevTools in development mode. - // if (!app.isPackaged) { + if (!app.isPackaged) { mainWindow.webContents.openDevTools(); - // } + } const menuBuilder = new MenuBuilder(mainWindow); menuBuilder.buildMenu(); diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index df1e898c..74d34357 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -276,7 +276,7 @@ class Sidebar extends PureComponent { "Zecwallet Fullnode",
- Zecwallet Fullnode v1.8.2 + Zecwallet Fullnode v1.8.3
Built with Electron. Copyright (c) 2018-2021, Aditya Kulkarni.