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/alert.h b/src/alert.h index 6f30d0c..9da1b21 100644 --- a/src/alert.h +++ b/src/alert.h @@ -13,7 +13,7 @@ #include "util.h" -static const char* pszMainKey = "043fa441fd4203d03f5df2b75ea14e36f20d39f43e7a61aa7552ab9bcd7ecb0e77a3be4585b13fcdaa22ef6e51f1ff6f2929bec2494385b086fb86610e33193195"; +static const char* pszMainKey = "0407c78740e67ab033220e1ca3a9e5dc0d0c19d631e211d6dbdef5c9f0df2761859d79b851ef65b1dd2596c8db15c3b0f79765804e66d2f62896f4b1351ce8840c"; // TestNet alerts pubKey static const char* pszTestKey = "0471dc165db490094d35cde15b1f5d755fa6ad6f2b5ed0f340e3f17f57389c3c2af113a8cbcc885bde73305a553b5640c83021128008ddf882e856336269080496"; diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 8052919..32ac8f4 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -368,7 +368,7 @@ static MapCheckpoints mapCheckpointsTestnet = } // ppcoin: sync-checkpoint master key -const std::string CSyncCheckpoint::strMasterPubKey = "0489cab128b9f39a3e514a12c07a7644fa1808662195edcf2d4671b1cce76868b7f2f588a9dfad5753be3cd6b8e9518be439c936e2bad93a25bb6d32300fab41c3"; +const std::string CSyncCheckpoint::strMasterPubKey = "04c7243b083a5f358c3b89d9da0b4e4e6009ac5104f83cc52013a4eb15cdd3ddbbacd57d3b52402d19e11385f912ca831234307efe57af83176b5f18038a7193f3"; std::string CSyncCheckpoint::strMasterPrivKey = ""; 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/net.cpp b/src/net.cpp index b4800b1..d80d1cb 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1149,7 +1149,8 @@ void MapPort() // The first name is used as information source for addrman. // The second name should resolve to a list of seed addresses. static const char *strDNSSeed[][2] = { - {"", ""}, + {"seed.curecoin.net", "seed.curecoin.net"}, + {"seed2.curecoin.net", "seed2.curecoin.net"}, }; void ThreadDNSAddressSeed(void* parg) 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