Skip to content

Commit ab0d3fb

Browse files
committed
v0.1.9 release
1 parent 9c880e3 commit ab0d3fb

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

README.md

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd
1+
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd that runs on Windows and Linux
22

33
![Screenshot](docs/screenshot-main.png?raw=true)
44

55
# Installation
66

7-
zcash-qt-wallet needs a zcash node running zcashd. Download the zcash node software from https://z.cash/download/ and start zcashd.
7+
zcash-qt-wallet needs a zcash node running zcashd. Download the zcash node software from https://z.cash/download/ and start zcashd. If you are running Windows, you can get [WinZEC](https://winzec.com/)
88

99
## Prerequisites: zcashd
1010
zcashd needs to run with RPC enabled and with a RPC username/password set. Add the following entries into ~/.zcash/zcash.conf
@@ -13,17 +13,22 @@ zcashd needs to run with RPC enabled and with a RPC username/password set. Add t
1313
rpcuser=username
1414
rpcpassword=password
1515
```
16-
and restart zcashd
16+
zcash-qt-wallet should auto-detect zcashd and WinZEC. If you are running zcashd on WSL, then please set the connection parameters in the File->Settings menu.
1717

1818
## Installing zcash-qt-wallet
1919
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zcash-qt-wallet/releases
2020

21+
22+
### Linux
2123
Extract and run the binary
2224
```
23-
tar -xvf zcash-qt-wallet-v0.1.8.tar.gz
24-
./zcash-qt-wallet-v0.1.8/zcash-qt-wallet
25+
tar -xvf zcash-qt-wallet-v0.1.9.tar.gz
26+
./zcash-qt-wallet-v0.1.9/zcash-qt-wallet
2527
```
2628

29+
### Windows
30+
Unzip the release binary and double click on zcash-qt-wallet to start.
31+
2732
## Compiling from source
2833
zcash-qt-wallet depends on Qt5, which you can get from here: https://www.qt.io/download
2934

@@ -39,6 +44,15 @@ make -j$(nproc)
3944
./zcash-qt-wallet
4045
```
4146

47+
### Compiling on Windows
48+
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
49+
50+
From the VS Tools command prompt
51+
```
52+
c:\Qt5\bin\qmake.exe zcash-qt-wallet.pro -tp vc CONFIG+=debug
53+
```
54+
This will create the Visual Studio project files. You can then open Visual Studio and compile and run normally.
55+
4256
## Troubleshooting FAQ
4357
### 1. "Connection Error"
4458

@@ -48,7 +62,7 @@ from your host and also zcashd is set to be configured to accept connections fro
4862

4963
The easiest way to connect to a remote node is probably to ssh to it with port forwarding like this:
5064
```
51-
ssh -L8232:127.0.0.1:8232 user@remotehost
65+
ssh -L8232:127.0.0.1.9232 user@remotehost
5266
```
5367
### 2. "Not enough balance" when sending transactions
5468
The most likely cause for this is that you are trying to spend unconfirmed funds. Unlike bitcoin, the zcash protocol doesn't let you spent unconfirmed funds yet. Please wait for

zcash-qt-wallet.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h
1313
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
1414

1515
TARGET = zcash-qt-wallet
16-
APP_VERSION=\\\"0.1.8\\\"
16+
APP_VERSION=\\\"0.1.9\\\"
1717

1818

1919
TEMPLATE = app

0 commit comments

Comments
 (0)