From 819b99433d72639ef77ab1cf10248f1458cef24d Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Sun, 10 May 2020 17:19:32 -0700 Subject: [PATCH] 0.9.11 --- README.md | 5 +++-- app/companion.js | 2 +- app/components/Sidebar.js | 2 +- app/package.json | 2 +- bin/printversion.ps1 | 2 +- bin/printversion.sh | 2 +- package.json | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f97d250f..3bceedb5 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ ZecWallet Fullnode is a z-Addr first, Sapling compatible wallet and full node fo ![Screenshots](resources/screenshot2.png?raw=true) # Installation + **Note**: Zecwallet Fullnode will download the entire blockchain (about 26GB), and requires some familiarity with the command line. If you don't want to download the blockchain but prefer a Lite wallet, please check out [Zecwallet Lite](https://www.zecwallet.co). **Note**: Zecwallet Fullnode will download the entire blockchain (about 26GB), and requires some familiarity with the command line. If you don't want to download the blockchain but prefer a Lite wallet, please check out [Zecwallet Lite](https://www.zecwallet.co). @@ -15,13 +16,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-0.9.10.AppImage +./Zecwallet.Fullnode-0.9.11.AppImage ``` If you prefer to install a `.deb` package, that is also available. ``` -sudo dpkg -i zecwallet_0.9.10_amd64.deb +sudo dpkg -i zecwallet_0.9.11_amd64.deb sudo apt install -f ``` diff --git a/app/companion.js b/app/companion.js index ee553c82..f56f5e2b 100644 --- a/app/companion.js +++ b/app/companion.js @@ -389,7 +389,7 @@ export default class CompanionAppListener { maxzspendable, tokenName, zecprice, - serverversion: '0.9.10' + serverversion: '0.9.11' }; return JSON.stringify(resp); diff --git a/app/components/Sidebar.js b/app/components/Sidebar.js index 8e5a5896..4052fa0f 100644 --- a/app/components/Sidebar.js +++ b/app/components/Sidebar.js @@ -226,7 +226,7 @@ class Sidebar extends PureComponent { openErrorModal( 'Zecwallet Fullnode',
-
Zecwallet Fullnode v0.9.10
+
Zecwallet Fullnode v0.9.11
Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.
The MIT License (MIT) Copyright (c) 2018-present Zecwallet diff --git a/app/package.json b/app/package.json index 0669d369..d854fdb9 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.10", + "version": "0.9.11", "description": "Zecwallet Fullnode", "main": "./main.prod.js", "author": { diff --git a/bin/printversion.ps1 b/bin/printversion.ps1 index 2f77404f..94d582e1 100644 --- a/bin/printversion.ps1 +++ b/bin/printversion.ps1 @@ -1 +1 @@ -echo "::set-env name=VERSION::0.9.10" +echo "::set-env name=VERSION::0.9.11" diff --git a/bin/printversion.sh b/bin/printversion.sh index 8d5a4e85..f317da03 100755 --- a/bin/printversion.sh +++ b/bin/printversion.sh @@ -1,3 +1,3 @@ #!/bin/bash -VERSION="0.9.10" +VERSION="0.9.11" echo "::set-env name=VERSION::$VERSION" diff --git a/package.json b/package.json index e538379c..50cbfd5e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zecwallet", "productName": "Zecwallet Fullnode", - "version": "0.9.10", + "version": "0.9.11", "description": "Zecwallet Fullnode (Electron version)", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",