diff --git a/curecoin-qt.pro b/curecoin-qt.pro index 36f273a..c6f9f87 100644 --- a/curecoin-qt.pro +++ b/curecoin-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = curecoin-qt -VERSION = 1.0.0 +VERSION = 1.4.0.1 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN __NO_SYSTEM_INCLUDES CONFIG += no_include_pwd diff --git a/src/clientversion.h b/src/clientversion.h index b71bf87..5817406 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -7,9 +7,9 @@ // These need to be macros, as version.cpp's and curecoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 -#define CLIENT_VERSION_MINOR 9 -#define CLIENT_VERSION_REVISION 1 -#define CLIENT_VERSION_BUILD 0 +#define CLIENT_VERSION_MINOR 4 +#define CLIENT_VERSION_REVISION 0 +#define CLIENT_VERSION_BUILD 1 // Converts the parameter X to a string after macro replacement on X has been performed. // Don't merge these into one macro! diff --git a/src/main.cpp b/src/main.cpp index fe1e944..9eb5dcf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2013 The curecoin developer +// Copyright (c) 2013-2017 The Curecoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/curecoingui.cpp b/src/qt/curecoingui.cpp index e1a4ba6..7fc20da 100644 --- a/src/qt/curecoingui.cpp +++ b/src/qt/curecoingui.cpp @@ -70,7 +70,7 @@ curecoinGUI::curecoinGUI(QWidget *parent): rpcConsole(0) { resize(850, 550); - setWindowTitle(tr("curecoin") + " - " + tr("Wallet")); + setWindowTitle(tr("Curecoin") + " - " + tr("Wallet")); #ifndef Q_OS_MAC qApp->setWindowIcon(QIcon(":icons/curecoin")); setWindowIcon(QIcon(":icons/curecoin")); diff --git a/src/qt/forms/aboutdialog.ui b/src/qt/forms/aboutdialog.ui index c0604a5..b36e0b6 100644 --- a/src/qt/forms/aboutdialog.ui +++ b/src/qt/forms/aboutdialog.ui @@ -50,7 +50,7 @@ IBeamCursor - <b>curecoin</b> version + <b>Curecoin</b> version Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -63,7 +63,7 @@ IBeamCursor - 1.4.0.0 + 1.4.0.1 Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -91,7 +91,7 @@ IBeamCursor - Copyright © 2013-2015 The Curecoin Foundation + Copyright © 2013-2017 The Curecoin Foundation https://www.curecoin.net diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index 005e9e8..a85a85b 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -7,7 +7,7 @@ 0 0 573 - 342 + 456 @@ -226,6 +226,9 @@ :/images/wallet_bgcoin + + Qt::AlignCenter + @@ -319,7 +322,7 @@ - + diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index 3ea0cd7..197124f 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -12,8 +12,8 @@ #include #include -#define DECORATION_SIZE 64 -#define NUM_ITEMS 3 +#define DECORATION_SIZE 54 +#define NUM_ITEMS 7 class TxViewDelegate : public QAbstractItemDelegate { diff --git a/src/version.h b/src/version.h index 7271073..801cdf2 100644 --- a/src/version.h +++ b/src/version.h @@ -44,9 +44,9 @@ static const int BIP0031_VERSION = 60000; // "mempool" command, enhanced "getdata" behavior starts with this version: static const int MEMPOOL_GD_VERSION = 60002; -#define DISPLAY_VERSION_MAJOR 0 -#define DISPLAY_VERSION_MINOR 1 -#define DISPLAY_VERSION_REVISION 3 -#define DISPLAY_VERSION_BUILD 4 +#define DISPLAY_VERSION_MAJOR 1 +#define DISPLAY_VERSION_MINOR 4 +#define DISPLAY_VERSION_REVISION 0 +#define DISPLAY_VERSION_BUILD 1 #endif