Skip to content

Commit

Permalink
Merge pull request #726 from AXErunners/v1.6.x
Browse files Browse the repository at this point in the history
Release 1.6.1.1
  • Loading branch information
charlesrocket authored Nov 20, 2020
2 parents 1fbb032 + 1cbb369 commit 53f14e8
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 6)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
6 changes: 3 additions & 3 deletions doc/man/axe-cli.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH AXE-CLI "1" "November 2020" "axe-cli v1.6.1.0" "User Commands"
.TH AXE-CLI "1" "November 2020" "axe-cli v1.6.1.1" "User Commands"
.SH NAME
axe-cli \- manual page for axe-cli v1.6.1.0
axe-cli \- manual page for axe-cli v1.6.1.1
.SH DESCRIPTION
Axe Core RPC client version v1.6.1.0
Axe Core RPC client version v1.6.1.1
.SS "Usage:"
.TP
axe\-cli [options] <command> [params]
Expand Down
6 changes: 3 additions & 3 deletions doc/man/axe-qt.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH AXE-QT "1" "November 2020" "axe-qt v1.6.1.0" "User Commands"
.TH AXE-QT "1" "November 2020" "axe-qt v1.6.1.1" "User Commands"
.SH NAME
axe-qt \- manual page for axe-qt v1.6.1.0
axe-qt \- manual page for axe-qt v1.6.1.1
.SH DESCRIPTION
Axe Core version v1.6.1.0 (64\-bit)
Axe Core version v1.6.1.1 (64\-bit)
Usage:
.IP
axe\-qt [command\-line options]
Expand Down
6 changes: 3 additions & 3 deletions doc/man/axe-tx.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH AXE-TX "1" "November 2020" "axe-tx v1.6.1.0" "User Commands"
.TH AXE-TX "1" "November 2020" "axe-tx v1.6.1.1" "User Commands"
.SH NAME
axe-tx \- manual page for axe-tx v1.6.1.0
axe-tx \- manual page for axe-tx v1.6.1.1
.SH DESCRIPTION
Axe Core axe\-tx utility version v1.6.1.0
Axe Core axe\-tx utility version v1.6.1.1
.SS "Usage:"
.TP
axe\-tx [options] <hex\-tx> [commands]
Expand Down
6 changes: 3 additions & 3 deletions doc/man/axed.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH AXED "1" "November 2020" "axed v1.6.1.0" "User Commands"
.TH AXED "1" "November 2020" "axed v1.6.1.1" "User Commands"
.SH NAME
axed \- manual page for axed v1.6.1.0
axed \- manual page for axed v1.6.1.1
.SH DESCRIPTION
Axe Core Daemon version v1.6.1.0
Axe Core Daemon version v1.6.1.1
.SS "Usage:"
.TP
axed [options]
Expand Down
7 changes: 3 additions & 4 deletions src/clientversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,10 @@ const std::string CLIENT_NAME("Axe Core");
#include <obj/build.h>
#endif

//! git will put "#define GIT_ARCHIVE 1" on the next line inside archives.
#define GIT_ARCHIVE 1
//! git will put "#define GIT_ARCHIVE 1" on the next line inside archives. $Format:%n#define GIT_ARCHIVE 1$
#ifdef GIT_ARCHIVE
#define GIT_COMMIT_ID "8c743968bd7d"
#define GIT_COMMIT_DATE "Fri, 17 May 2019 20:03:37 +0300"
#define GIT_COMMIT_ID "$Format:%h$"
#define GIT_COMMIT_DATE "$Format:%cD$"
#endif

#define BUILD_DESC_WITH_SUFFIX(maj, min, rev, build, suffix) \
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ void BitcoinGUI::createActions()
#ifdef ENABLE_WALLET
if(walletFrame)
{
connect(encryptWalletAction, SIGNAL(triggered(bool)), walletFrame, SLOT(encryptWallet(bool)));
connect(encryptWalletAction, SIGNAL(triggered()), walletFrame, SLOT(encryptWallet()));
connect(backupWalletAction, SIGNAL(triggered()), walletFrame, SLOT(backupWallet()));
connect(changePassphraseAction, SIGNAL(triggered()), walletFrame, SLOT(changePassphrase()));
connect(unlockWalletAction, SIGNAL(triggered()), walletFrame, SLOT(unlockWallet()));
Expand Down
4 changes: 2 additions & 2 deletions src/qt/walletframe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ void WalletFrame::gotoVerifyMessageTab(QString addr)
walletView->gotoVerifyMessageTab(addr);
}

void WalletFrame::encryptWallet(bool status)
void WalletFrame::encryptWallet()
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->encryptWallet(status);
walletView->encryptWallet();
}

void WalletFrame::backupWallet()
Expand Down
2 changes: 1 addition & 1 deletion src/qt/walletframe.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Q_SLOTS:
void gotoVerifyMessageTab(QString addr = "");

/** Encrypt the wallet */
void encryptWallet(bool status);
void encryptWallet();
/** Backup the wallet */
void backupWallet();
/** Change encrypted wallet passphrase */
Expand Down
4 changes: 2 additions & 2 deletions src/qt/walletview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,11 @@ void WalletView::updateEncryptionStatus()
Q_EMIT encryptionStatusChanged(walletModel->getEncryptionStatus());
}

void WalletView::encryptWallet(bool status)
void WalletView::encryptWallet()
{
if(!walletModel)
return;
AskPassphraseDialog dlg(status ? AskPassphraseDialog::Encrypt : AskPassphraseDialog::Decrypt, this);
AskPassphraseDialog dlg(AskPassphraseDialog::Encrypt, this);
dlg.setModel(walletModel);
dlg.exec();

Expand Down
2 changes: 1 addition & 1 deletion src/qt/walletview.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Q_SLOTS:
*/
void processNewTransaction(const QModelIndex& parent, int start, int /*end*/);
/** Encrypt the wallet */
void encryptWallet(bool status);
void encryptWallet();
/** Backup the wallet */
void backupWallet();
/** Change encrypted wallet passphrase */
Expand Down

0 comments on commit 53f14e8

Please sign in to comment.