Skip to content
This repository has been archived by the owner on Jul 23, 2021. It is now read-only.

Commit

Permalink
DigitalNote v1.0.2.9 Initial
Browse files Browse the repository at this point in the history
Changelog
------------

- Version bump
- Updated checkpoints
- Updated secure messaging system
- Updated some GUI components
  • Loading branch information
CryptoCoderz committed Apr 10, 2020
1 parent b415930 commit 9f92da7
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DigitalNote.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = DigitalNote-qt
VERSION = 1.0.2.7
VERSION = 1.0.2.9
INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor
QT += core gui widgets network printsupport
DEFINES += ENABLE_WALLET
Expand Down
1 change: 1 addition & 0 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ namespace Checkpoints
(66400, uint256("0x8035935fc3b5e8b58ab023336d6f7f1ec35eac9930cdd238ce35771cd7b3964d"))
(67500, uint256("0x4df36f82141ce789aa64d80908aafca145d09f5257ebb3b7550f94e2624a2d98"))
(68200, uint256("0x000000000005ab4fb2fec8705c51aee6b04ebf51f98bca11e61d7f41bcc51e92"))
(190900, uint256("0x00000000000324d80ae543f7b4882de88a6711c644dfdc596fbaab3225db859e"))
;

// TestNet has no checkpoints
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 7
#define CLIENT_VERSION_BUILD 9

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static void InitMessage(const std::string &message)

if(!fUseDarkTheme)
{
splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom|Qt::AlignHCenter, QColor(255,255,255));
splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom|Qt::AlignHCenter, QColor(97,78,176));
}

QApplication::instance()->processEvents();
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/sendmessagesdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<item>
<widget class="QLabel" name="addressFromLabel">
<property name="styleSheet">
<string notr="true">color: #ffffff;</string>
<string notr="true"/>
</property>
<property name="text">
<string>Address &amp;From:</string>
Expand Down
6 changes: 3 additions & 3 deletions src/qt/messagepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ MessagePage::MessagePage(QWidget *parent) :
messageTextEdit(new MRichTextEdit())
{
ui->setupUi(this);


#ifdef Q_OS_MAC // Icons on push buttons are very uncommon on Mac
ui->deleteButton->setIcon(QIcon());
#endif
Expand Down Expand Up @@ -123,7 +123,7 @@ void MessagePage::setModel(MessageModel *model)
this->model = model;
if(!model)
return;

//if (model->proxyModel)
// delete model->proxyModel;
model->proxyModel = new QSortFilterProxyModel(this);
Expand Down
2 changes: 1 addition & 1 deletion src/qt/sendcoinsentry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) :
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
ui->payTo->setPlaceholderText(tr("Enter a DigitalNote address (e.g. iACLambeGgkxodKtfzM7huFXyPYWjz33Z2)"));
ui->payTo->setPlaceholderText(tr("Enter a DigitalNote address (e.g. dPAGvSSCttmkfTgjwKvCm6Unmh9YBBFrM9)"));
#endif
setFocusPolicy(Qt::TabFocus);
setFocusProxy(ui->payTo);
Expand Down
2 changes: 1 addition & 1 deletion src/qt/sendmessagesdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SendMessagesDialog::SendMessagesDialog(Mode mode, Type type, QWidget *parent) :
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
if(mode == SendMessagesDialog::Encrypted)
ui->addressFrom->setPlaceholderText(tr("Enter a DigitalNote address (e.g. iACLambeGgkxodKtfzM7huFXyPYWjz33Z2)"));
ui->addressFrom->setPlaceholderText(tr("Enter your DigitalNote address (e.g. dPAGvSSCttmkfTgjwKvCm6Unmh9YBBFrM9)"));
#endif
addEntry();

Expand Down
4 changes: 2 additions & 2 deletions src/qt/sendmessagesentry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ SendMessagesEntry::SendMessagesEntry(QWidget *parent) :
#if QT_VERSION >= 0x040700
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
ui->sendTo->setPlaceholderText(tr("Enter a DigitalNote address (e.g. iACLambeGgkxodKtfzM7huFXyPYWjz33Z2)"));
ui->publicKey->setPlaceholderText(tr("Enter the public key for the address above, it is not in the blockchain"));
ui->sendTo->setPlaceholderText(tr("Enter recipient DigitalNote address (e.g. dPAGvSSCttmkfTgjwKvCm6Unmh9YBBFrM9)"));
ui->publicKey->setPlaceholderText(tr("Enter the public key for recipient address above, it is not in the blockchain"));
ui->messageText->setErrorText(tr("You cannot send a blank message!"));
#endif
setFocusPolicy(Qt::TabFocus);
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static const int DATABASE_VERSION = 70509;
//
// network protocol versioning
//
static const int PROTOCOL_VERSION = 62021;
static const int PROTOCOL_VERSION = 62023;

// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand Down

1 comment on commit 9f92da7

@skironDotNet
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why from PROTOCOL_VERSION = 62021; to 62023 why not 62022

Please sign in to comment.