Skip to content

Commit

Permalink
v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Oct 29, 2018
1 parent 35be991 commit a599dec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -9,8 +9,8 @@ Head over to the releases page and grab the latest binary. https://github.com/ad
### Linux
Extract and run the binary
```
tar -xvf zec-qt-wallet-v0.2.4.tar.gz
./zec-qt-wallet-v0.2.4/zec-qt-wallet
tar -xvf zec-qt-wallet-v0.2.5.tar.gz
./zec-qt-wallet-v0.2.5/zec-qt-wallet
```

### Windows
Expand Down
4 changes: 4 additions & 0 deletions src/mainwindow.cpp
Expand Up @@ -138,6 +138,10 @@ void MainWindow::turnstileProgress() {
}

void MainWindow::turnstileDoMigration() {
// Return if there is no connection
if (rpc->getAllZAddresses() == nullptr)
return;

Ui_Turnstile turnstile;
QDialog d(this);
turnstile.setupUi(&d);
Expand Down
2 changes: 1 addition & 1 deletion zec-qt-wallet.pro
Expand Up @@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = zec-qt-wallet
APP_VERSION=\\\"0.2.4\\\"
APP_VERSION=\\\"0.2.5\\\"


TEMPLATE = app
Expand Down

0 comments on commit a599dec

Please sign in to comment.