Skip to content

Commit

Permalink
0.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed May 11, 2020
1 parent 263d00f commit 819b994
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion app/companion.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default class CompanionAppListener {
maxzspendable,
tokenName,
zecprice,
serverversion: '0.9.10'
serverversion: '0.9.11'
};

return JSON.stringify(resp);
Expand Down
2 changes: 1 addition & 1 deletion app/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class Sidebar extends PureComponent<Props, State> {
openErrorModal(
'Zecwallet Fullnode',
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v0.9.10</div>
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v0.9.11</div>
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>
The MIT License (MIT) Copyright (c) 2018-present Zecwallet
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion bin/printversion.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
echo "::set-env name=VERSION::0.9.10"
echo "::set-env name=VERSION::0.9.11"
2 changes: 1 addition & 1 deletion bin/printversion.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
VERSION="0.9.10"
VERSION="0.9.11"
echo "::set-env name=VERSION::$VERSION"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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\"",
Expand Down

0 comments on commit 819b994

Please sign in to comment.