Browse Source

v0.4.1

recurring 0.4.1
Aditya Kulkarni 6 years ago
parent
commit
a8cbb3f6e6
  1. 4
      README.md
  2. 3
      src/logger.cpp
  3. 2
      src/logger.h
  4. 2
      src/version.h

4
README.md

@ -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.4.0.tar.gz
./zec-qt-wallet-v0.4.0/zec-qt-wallet
tar -xvf zec-qt-wallet-v0.4.1.tar.gz
./zec-qt-wallet-v0.4.1/zec-qt-wallet
```
### Windows

3
src/logger.cpp

@ -11,6 +11,9 @@ Logger::Logger(QObject *parent, QString fileName) : QObject(parent) {
}
void Logger::write(const QString &value) {
if (!file)
return;
QString text = value;// + "";
text = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss ") + text;
QTextStream out(file);

2
src/logger.h

@ -11,7 +11,7 @@ public:
~Logger();
private:
QFile *file;
QFile *file = nullptr;
bool m_showDate;
signals:

2
src/version.h

@ -1 +1 @@
#define APP_VERSION "0.4.0"
#define APP_VERSION "0.4.1"

Loading…
Cancel
Save