Browse Source

0.5.4

import_zecw
Aditya Kulkarni 6 years ago
parent
commit
eca89183f6
  1. 176
      README.md
  2. 8
      src/mainwindow.ui
  3. 2
      src/version.h

176
README.md

@ -1,88 +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.
![Screenshot](docs/screenshot-main.png?raw=true) ![Screenshot](docs/screenshot-main.png?raw=true)
![Screenshots](docs/screenshot-sub.png?raw=true) ![Screenshots](docs/screenshot-sub.png?raw=true)
# Installation # Installation
Head over to the releases page and grab the latest installers or binary. https://github.com/ZcashFoundation/zec-qt-wallet/releases Head over to the releases page and grab the latest installers or binary. https://github.com/ZcashFoundation/zec-qt-wallet/releases
### Linux ### Linux
If you are on Debian/Ubuntu, please download the `.deb` package and install it. If you are on Debian/Ubuntu, please download the `.deb` package and install it.
``` ```
sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.3.deb sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.4.deb
sudo apt install -f sudo apt install -f
``` ```
Or you can download and run the binaries directly. Or you can download and run the binaries directly.
``` ```
tar -xvf zec-qt-wallet-v0.5.3.tar.gz tar -xvf zec-qt-wallet-v0.5.4.tar.gz
./zec-qt-wallet-v0.5.3/zec-qt-wallet ./zec-qt-wallet-v0.5.4/zec-qt-wallet
``` ```
### Windows ### 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. 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.
### macOS ### macOS
Double-click on the .dmg file to open it, and drag zec-qt-wallet on to the Applications link to install. Double-click on the .dmg file to open it, and drag zec-qt-wallet on to the Applications link to install.
## zcashd ## 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. zec-qt-wallet needs a Zcash node running zcashd. If you already have a zcashd node running, zec-qt-wallet will connect to it.
If you don't have one, zec-qt-wallet will start its embedded zcashd node. If you don't have one, zec-qt-wallet will start its embedded zcashd node.
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. 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.
Pass `--no-embedded` to disable the embedded zcashd and force zec-qt-wallet to connect to an external node. Pass `--no-embedded` to disable the embedded zcashd and force zec-qt-wallet to connect to an external node.
## Compiling from source ## 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). 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. 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.
See detailed build instructions [on the wiki](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Compiling-from-source-code) See detailed build instructions [on the wiki](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Compiling-from-source-code)
### Building on Linux ### Building on Linux
``` ```
git clone https://github.com/ZcashFoundation/zec-qt-wallet.git git clone https://github.com/ZcashFoundation/zec-qt-wallet.git
cd zec-qt-wallet cd zec-qt-wallet
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug /path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
make -j$(nproc) make -j$(nproc)
./zec-qt-wallet ./zec-qt-wallet
``` ```
### Building on Windows ### Building on Windows
You need Visual Studio 2017 (The free C++ Community Edition works just fine). You need Visual Studio 2017 (The free C++ Community Edition works just fine).
From the VS Tools command prompt From the VS Tools command prompt
``` ```
git clone https://github.com/ZcashFoundation/zec-qt-wallet.git git clone https://github.com/ZcashFoundation/zec-qt-wallet.git
cd zec-qt-wallet 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 -spec win32-msvc CONFIG+=debug
nmake nmake
debug\zec-qt-wallet.exe debug\zec-qt-wallet.exe
``` ```
To create the Visual Studio project files so you can compile and run from Visual Studio: To create the Visual Studio project files so you can compile and run from Visual Studio:
``` ```
c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -tp vc CONFIG+=debug c:\Qt5\bin\qmake.exe zec-qt-wallet.pro -tp vc CONFIG+=debug
``` ```
### Building on macOS ### Building on macOS
You need to install the Xcode app or the Xcode command line tools first, and then install Qt. You need to install the Xcode app or the Xcode command line tools first, and then install Qt.
``` ```
git clone https://github.com/ZcashFoundation/zec-qt-wallet.git git clone https://github.com/ZcashFoundation/zec-qt-wallet.git
cd zec-qt-wallet cd zec-qt-wallet
/path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug /path/to/qt5/bin/qmake zec-qt-wallet.pro CONFIG+=debug
make make
./zec-qt-wallet.app/Contents/MacOS/zec-qt-wallet ./zec-qt-wallet.app/Contents/MacOS/zec-qt-wallet
``` ```
### [Troubleshooting Guide & FAQ](https://github.com/ZcashFoundation/zec-qt-wallet/wiki/Troubleshooting-&-FAQ) ### [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. 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). 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._ _PS: zec-qt-wallet is NOT an official wallet, and is not affiliated with the Zerocoin Electric Coin Company in any way._

8
src/mainwindow.ui

@ -346,8 +346,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>920</width> <width>890</width>
<height>334</height> <height>311</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="sendToLayout"> <layout class="QVBoxLayout" name="sendToLayout">
@ -712,7 +712,7 @@
<item row="2" column="0"> <item row="2" column="0">
<widget class="QLabel" name="label_21"> <widget class="QLabel" name="label_21">
<property name="text"> <property name="text">
<string>Address Balance</string> <string>Address balance</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -783,7 +783,7 @@
<item row="3" column="1" colspan="2"> <item row="3" column="1" colspan="2">
<widget class="QLabel" name="lblUsed"> <widget class="QLabel" name="lblUsed">
<property name="text"> <property name="text">
<string>TextLabel</string> <string notr="true"/>
</property> </property>
</widget> </widget>
</item> </item>

2
src/version.h

@ -1 +1 @@
#define APP_VERSION "0.5.3" #define APP_VERSION "0.5.4"

Loading…
Cancel
Save