v0.4.1
This commit is contained in:
@@ -9,8 +9,8 @@ Head over to the releases page and grab the latest binary. https://github.com/ad
|
|||||||
### Linux
|
### Linux
|
||||||
Extract and run the binary.
|
Extract and run the binary.
|
||||||
```
|
```
|
||||||
tar -xvf zec-qt-wallet-v0.4.0.tar.gz
|
tar -xvf zec-qt-wallet-v0.4.1.tar.gz
|
||||||
./zec-qt-wallet-v0.4.0/zec-qt-wallet
|
./zec-qt-wallet-v0.4.1/zec-qt-wallet
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|||||||
@@ -11,6 +11,9 @@ Logger::Logger(QObject *parent, QString fileName) : QObject(parent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Logger::write(const QString &value) {
|
void Logger::write(const QString &value) {
|
||||||
|
if (!file)
|
||||||
|
return;
|
||||||
|
|
||||||
QString text = value;// + "";
|
QString text = value;// + "";
|
||||||
text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
|
text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
|
||||||
QTextStream out(file);
|
QTextStream out(file);
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ public:
|
|||||||
~Logger();
|
~Logger();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QFile *file;
|
QFile *file = nullptr;
|
||||||
bool m_showDate;
|
bool m_showDate;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define APP_VERSION "0.4.0"
|
#define APP_VERSION "0.4.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user