static QT
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -12,3 +12,4 @@ Makefile
|
|||||||
Makefile.*
|
Makefile.*
|
||||||
qrc_application.cpp
|
qrc_application.cpp
|
||||||
zcash-qt-wallet_plugin_import.cpp
|
zcash-qt-wallet_plugin_import.cpp
|
||||||
|
workspace.code-workspace
|
||||||
|
|||||||
@@ -20,8 +20,8 @@ Head over to the releases page and grab the latest binary. https://github.com/ad
|
|||||||
|
|
||||||
Extract and run the binary
|
Extract and run the binary
|
||||||
```
|
```
|
||||||
tar -xvf zcash-qt-wallet-v.0.1.5.tar.gz
|
tar -xvf zcash-qt-wallet-v0.1.6.tar.gz
|
||||||
./zcash-qt-wallet-v.0.1.5/zcash-qt-wallet
|
./zcash-qt-wallet-v0.1.6/zcash-qt-wallet
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compiling from source
|
## Compiling from source
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "settings.h"
|
|
||||||
#include "precompiled.h"
|
#include "precompiled.h"
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
|
|||||||
@@ -87,7 +87,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
aboutDialog.exec();
|
aboutDialog.exec();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Initialize to the balances tab
|
// Initialize to the balances tab
|
||||||
ui->tabWidget->setCurrentIndex(0);
|
ui->tabWidget->setCurrentIndex(0);
|
||||||
|
|
||||||
|
|||||||
@@ -348,8 +348,8 @@ void RPC::refreshBalances() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
(*allBalances)[qsAddr] = (*allBalances)[qsAddr] + it["amount"].get<json::number_float_t>();
|
(*allBalances)[qsAddr] = (*allBalances)[qsAddr] + it["amount"].get<json::number_float_t>();
|
||||||
ui->unconfirmedWarning->setVisible(anyUnconfirmed);
|
|
||||||
}
|
}
|
||||||
|
ui->unconfirmedWarning->setVisible(anyUnconfirmed);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Function to create the data model and update the views, used below.
|
// Function to create the data model and update the views, used below.
|
||||||
|
|||||||
@@ -290,7 +290,6 @@ QString MainWindow::doSendTxValidations(QString fromAddr, QList<QPair<QString, d
|
|||||||
zsexp.exactMatch(addr);
|
zsexp.exactMatch(addr);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
if (!matchesAnyAddr(fromAddr)) return QString("From Address is Invalid");
|
if (!matchesAnyAddr(fromAddr)) return QString("From Address is Invalid");
|
||||||
|
|
||||||
for (auto toAddr = toAddrs.begin(); toAddr != toAddrs.end(); toAddr++) {
|
for (auto toAddr = toAddrs.begin(); toAddr != toAddrs.end(); toAddr++) {
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h
|
|||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
TARGET = zcash-qt-wallet
|
TARGET = zcash-qt-wallet
|
||||||
APP_VERSION=\\\"0.1.5\\\"
|
APP_VERSION=\\\"0.1.6\\\"
|
||||||
|
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|||||||
Reference in New Issue
Block a user