mirror of
https://github.com/cygnusxi/CurecoinSource.git
synced 2025-07-27 15:44:25 +02:00
Cosmetic improvements. Version bump and version consistancy fixed.
This commit is contained in:
parent
c1a737de96
commit
8c4c9af49d
@ -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
|
||||
|
@ -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!
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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"));
|
||||
|
@ -50,7 +50,7 @@
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><b>curecoin</b> version</string>
|
||||
<string><b>Curecoin</b> version</string>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
@ -63,7 +63,7 @@
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true">1.4.0.0</string>
|
||||
<string notr="true">1.4.0.1</string>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
|
||||
@ -91,7 +91,7 @@
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Copyright © 2013-2015 The Curecoin Foundation
|
||||
<string>Copyright © 2013-2017 The Curecoin Foundation
|
||||
https://www.curecoin.net</string>
|
||||
</property>
|
||||
<property name="textInteractionFlags">
|
||||
|
@ -7,7 +7,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>573</width>
|
||||
<height>342</height>
|
||||
<height>456</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -226,6 +226,9 @@
|
||||
<property name="pixmap">
|
||||
<pixmap resource="../curecoin.qrc">:/images/wallet_bgcoin</pixmap>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -319,7 +322,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="label_curecoin_Intro">
|
||||
<property name="text">
|
||||
<string></string>
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -12,8 +12,8 @@
|
||||
#include <QAbstractItemDelegate>
|
||||
#include <QPainter>
|
||||
|
||||
#define DECORATION_SIZE 64
|
||||
#define NUM_ITEMS 3
|
||||
#define DECORATION_SIZE 54
|
||||
#define NUM_ITEMS 7
|
||||
|
||||
class TxViewDelegate : public QAbstractItemDelegate
|
||||
{
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user