0.5.0
This commit is contained in:
169
README.md
169
README.md
@@ -1,81 +1,88 @@
|
|||||||
zec-qt-wallet is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS.
|
zec-qt-wallet is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS.
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zec-qt-wallet/releases
|
Head over to the releases page and grab the latest installers or binary. https://github.com/adityapk00/zec-qt-wallet/releases
|
||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
Extract and run the binary.
|
|
||||||
```
|
If you are on Debian/Ubuntu, please download the `.deb` package and install it.
|
||||||
tar -xvf zec-qt-wallet-v0.4.3.tar.gz
|
```
|
||||||
./zec-qt-wallet-v0.4.3/zec-qt-wallet
|
sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.0.deb
|
||||||
```
|
sudo apt install -f
|
||||||
|
```
|
||||||
### Windows
|
|
||||||
Unzip the release binary and double click on zec-qt-wallet to start.
|
Or you can download and run the binaries directly.
|
||||||
|
```
|
||||||
### macOS
|
tar -xvf zec-qt-wallet-v0.5.0.tar.gz
|
||||||
Double-click on the .dmg file to open it, and drag zec-qt-wallet on to the Applications link to install.
|
./zec-qt-wallet-v0.5.0/zec-qt-wallet
|
||||||
|
```
|
||||||
## zcashd
|
|
||||||
zec-qt-wallet needs a Zcash node running zcashd. If you already have a zcashd node running, zec-qt-wallet will connect to it.
|
### Windows
|
||||||
|
Download and run the .msi installer and follow the prompts. Alternately, you can download the release binary, unzip it and double click on zec-qt-wallet to start.
|
||||||
If you don't have one, zec-qt-wallet will start its embedded zcashd node.
|
|
||||||
|
### macOS
|
||||||
Additionally, if this is the first time you're running zec-qt-wallet or a zcashd daemon, zec-qt-wallet will download the zcash params (~1.7 GB) and configure `zcash.conf` for you.
|
Double-click on the .dmg file to open it, and drag zec-qt-wallet on to the Applications link to install.
|
||||||
|
|
||||||
Pass `--no-embedded` to disable the embedded zcashd and force zec-qt-wallet to connect to an external node.
|
## zcashd
|
||||||
|
zec-qt-wallet needs a Zcash node running zcashd. If you already have a zcashd node running, zec-qt-wallet will connect to it.
|
||||||
## Compiling from source
|
|
||||||
zec-qt-wallet is written in C++ 14, and can be compiled with g++/clang++/visual c++. It also depends on Qt5, which you can get from [here](https://www.qt.io/download)
|
If you don't have one, zec-qt-wallet will start its embedded zcashd node.
|
||||||
|
|
||||||
See detailed build instructions [on the wiki](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Compiling-from-source-code)
|
Additionally, if this is the first time you're running zec-qt-wallet or a zcashd daemon, zec-qt-wallet will download the zcash params (~1.7 GB) and configure `zcash.conf` for you.
|
||||||
|
|
||||||
### Building on Linux
|
Pass `--no-embedded` to disable the embedded zcashd and force zec-qt-wallet to connect to an external node.
|
||||||
|
|
||||||
```
|
## Compiling from source
|
||||||
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
zec-qt-wallet is written in C++ 14, and can be compiled with g++/clang++/visual c++. It also depends on Qt5, which you can get from [here](https://www.qt.io/download). Note that if you are compiling from source, you won't get the embedded zcashd by default. You can either run an external zcashd, or compile zcashd as well.
|
||||||
cd zec-qt-wallet
|
|
||||||
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
|
See detailed build instructions [on the wiki](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Compiling-from-source-code)
|
||||||
make -j$(nproc)
|
|
||||||
|
### Building on Linux
|
||||||
./zec-qt-wallet
|
|
||||||
```
|
```
|
||||||
|
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
||||||
### Building on Windows
|
cd zec-qt-wallet
|
||||||
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
|
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
|
||||||
|
make -j$(nproc)
|
||||||
From the VS Tools command prompt
|
|
||||||
```
|
./zec-qt-wallet
|
||||||
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
```
|
||||||
cd zec-qt-wallet
|
|
||||||
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -spec win32-msvc CONFIG+=debug
|
### Building on Windows
|
||||||
nmake
|
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
|
||||||
|
|
||||||
debug\zec-qt-wallet.exe
|
From the VS Tools command prompt
|
||||||
```
|
```
|
||||||
|
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
||||||
To create the Visual Studio project files so you can compile and run from Visual Studio:
|
cd zec-qt-wallet
|
||||||
```
|
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -spec win32-msvc CONFIG+=debug
|
||||||
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -tp vc CONFIG+=debug
|
nmake
|
||||||
```
|
|
||||||
|
debug\zec-qt-wallet.exe
|
||||||
### Building on macOS
|
```
|
||||||
You need to install the Xcode app or the Xcode command line tools first, and then install Qt.
|
|
||||||
|
To create the Visual Studio project files so you can compile and run from Visual Studio:
|
||||||
```
|
```
|
||||||
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -tp vc CONFIG+=debug
|
||||||
cd zec-qt-wallet
|
```
|
||||||
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
|
|
||||||
make
|
### Building on macOS
|
||||||
|
You need to install the Xcode app or the Xcode command line tools first, and then install Qt.
|
||||||
./zec-qt-wallet.app/Contents/MacOS/zec-qt-wallet
|
|
||||||
```
|
```
|
||||||
|
git clone https://github.com/adityapk00/zec-qt-wallet.git
|
||||||
### [Troubleshooting Guide & FAQ](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ)
|
cd zec-qt-wallet
|
||||||
Please read the [troubleshooting guide](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ) for common problems and solutions.
|
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
|
||||||
For support or other questions, tweet at [@zecqtwallet](https://twitter.com/zecqtwallet) or [file an issue](https://github.com/ZcashFoundation/zec-qt-wallet/issues).
|
make
|
||||||
|
|
||||||
_PS: zec-qt-wallet is NOT an official wallet, and is not affiliated with the Zerocoin Electric Coin Company in any way._
|
./zec-qt-wallet.app/Contents/MacOS/zec-qt-wallet
|
||||||
|
```
|
||||||
|
|
||||||
|
### [Troubleshooting Guide & FAQ](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ)
|
||||||
|
Please read the [troubleshooting guide](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ) for common problems and solutions.
|
||||||
|
For support or other questions, tweet at [@zecqtwallet](https://twitter.com/zecqtwallet) or [file an issue](https://github.com/ZcashFoundation/zec-qt-wallet/issues).
|
||||||
|
|
||||||
|
_PS: zec-qt-wallet is NOT an official wallet, and is not affiliated with the Zerocoin Electric Coin Company in any way._
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define APP_VERSION "0.4.3"
|
#define APP_VERSION "0.5.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user