mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Merge pull request #5224 from ogabrielides/rc3_v19_bump
chore: bump version to rc.3
This commit is contained in:
commit
ccea5abba7
@ -2,7 +2,7 @@ AC_PREREQ([2.69])
|
|||||||
define(_CLIENT_VERSION_MAJOR, 19)
|
define(_CLIENT_VERSION_MAJOR, 19)
|
||||||
define(_CLIENT_VERSION_MINOR, 0)
|
define(_CLIENT_VERSION_MINOR, 0)
|
||||||
define(_CLIENT_VERSION_BUILD, 0)
|
define(_CLIENT_VERSION_BUILD, 0)
|
||||||
define(_CLIENT_VERSION_RC, 2)
|
define(_CLIENT_VERSION_RC, 3)
|
||||||
define(_CLIENT_VERSION_IS_RELEASE, false)
|
define(_CLIENT_VERSION_IS_RELEASE, false)
|
||||||
define(_COPYRIGHT_YEAR, 2023)
|
define(_COPYRIGHT_YEAR, 2023)
|
||||||
define(_COPYRIGHT_HOLDERS,[The %s developers])
|
define(_COPYRIGHT_HOLDERS,[The %s developers])
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
name: "dash-linux-18"
|
name: "dash-linux-19"
|
||||||
enable_cache: true
|
enable_cache: true
|
||||||
distro: "ubuntu"
|
distro: "ubuntu"
|
||||||
suites:
|
suites:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
name: "dash-osx-18"
|
name: "dash-osx-19"
|
||||||
enable_cache: true
|
enable_cache: true
|
||||||
distro: "ubuntu"
|
distro: "ubuntu"
|
||||||
suites:
|
suites:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
name: "dash-win-18"
|
name: "dash-win-19"
|
||||||
enable_cache: true
|
enable_cache: true
|
||||||
distro: "ubuntu"
|
distro: "ubuntu"
|
||||||
suites:
|
suites:
|
||||||
|
@ -31,7 +31,7 @@ if [ "${BITCOIN_GENBUILD_NO_GIT}" != "1" ] && [ -e "$(command -v git)" ] && [ "$
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# otherwise generate suffix from git, i.e. string like "59887e8-dirty"
|
# otherwise generate suffix from git, i.e. string like "59887e8-dirty"
|
||||||
GIT_COMMIT=$(git rev-parse --short HEAD)
|
GIT_COMMIT=$(git rev-parse --short=12 HEAD)
|
||||||
git diff-index --quiet HEAD -- || GIT_COMMIT="$GIT_COMMIT-dirty"
|
git diff-index --quiet HEAD -- || GIT_COMMIT="$GIT_COMMIT-dirty"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -939,7 +939,7 @@ void BitcoinGUI::setWalletActionsEnabled(bool enabled)
|
|||||||
{
|
{
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
if (walletFrame != nullptr) {
|
if (walletFrame != nullptr) {
|
||||||
overviewButton->setEnabled(enabled);
|
// NOTE: overviewButton is always enabled
|
||||||
sendCoinsButton->setEnabled(enabled);
|
sendCoinsButton->setEnabled(enabled);
|
||||||
coinJoinCoinsButton->setEnabled(enabled && clientModel->coinJoinOptions().isEnabled());
|
coinJoinCoinsButton->setEnabled(enabled && clientModel->coinJoinOptions().isEnabled());
|
||||||
receiveCoinsButton->setEnabled(enabled);
|
receiveCoinsButton->setEnabled(enabled);
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
#include <QGroupBox>
|
|
||||||
#include <QHBoxLayout>
|
#include <QHBoxLayout>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
@ -32,7 +31,7 @@ WalletFrame::WalletFrame(BitcoinGUI* _gui) :
|
|||||||
walletFrameLayout->addWidget(walletStack);
|
walletFrameLayout->addWidget(walletStack);
|
||||||
|
|
||||||
// hbox for no wallet
|
// hbox for no wallet
|
||||||
QGroupBox* no_wallet_group = new QGroupBox(walletStack);
|
no_wallet_group = new QGroupBox(walletStack);
|
||||||
QVBoxLayout* no_wallet_layout = new QVBoxLayout(no_wallet_group);
|
QVBoxLayout* no_wallet_layout = new QVBoxLayout(no_wallet_group);
|
||||||
|
|
||||||
QLabel *noWallet = new QLabel(tr("No wallet has been loaded.\nGo to File > Open Wallet to load a wallet.\n- OR -"));
|
QLabel *noWallet = new QLabel(tr("No wallet has been loaded.\nGo to File > Open Wallet to load a wallet.\n- OR -"));
|
||||||
@ -172,6 +171,12 @@ void WalletFrame::gotoGovernancePage()
|
|||||||
void WalletFrame::gotoOverviewPage()
|
void WalletFrame::gotoOverviewPage()
|
||||||
{
|
{
|
||||||
QMap<WalletModel*, WalletView*>::const_iterator i;
|
QMap<WalletModel*, WalletView*>::const_iterator i;
|
||||||
|
|
||||||
|
if (mapWalletViews.empty()) {
|
||||||
|
walletStack->setCurrentWidget(no_wallet_group);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
|
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
|
||||||
i.value()->gotoOverviewPage();
|
i.value()->gotoOverviewPage();
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#define BITCOIN_QT_WALLETFRAME_H
|
#define BITCOIN_QT_WALLETFRAME_H
|
||||||
|
|
||||||
#include <QFrame>
|
#include <QFrame>
|
||||||
|
#include <QGroupBox>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
|
|
||||||
class BitcoinGUI;
|
class BitcoinGUI;
|
||||||
@ -55,6 +56,7 @@ private:
|
|||||||
BitcoinGUI *gui;
|
BitcoinGUI *gui;
|
||||||
ClientModel *clientModel;
|
ClientModel *clientModel;
|
||||||
QMap<WalletModel*, WalletView*> mapWalletViews;
|
QMap<WalletModel*, WalletView*> mapWalletViews;
|
||||||
|
QGroupBox* no_wallet_group;
|
||||||
MasternodeList* masternodeListPage;
|
MasternodeList* masternodeListPage;
|
||||||
GovernanceList* governanceListPage;
|
GovernanceList* governanceListPage;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ static const int INIT_PROTO_VERSION = 209;
|
|||||||
static const int MIN_PEER_PROTO_VERSION = 70215;
|
static const int MIN_PEER_PROTO_VERSION = 70215;
|
||||||
|
|
||||||
//! minimum proto version of masternode to accept in DKGs
|
//! minimum proto version of masternode to accept in DKGs
|
||||||
static const int MIN_MASTERNODE_PROTO_VERSION = 70221;
|
static const int MIN_MASTERNODE_PROTO_VERSION = 70227;
|
||||||
|
|
||||||
//! nTime field added to CAddress, starting with this version;
|
//! nTime field added to CAddress, starting with this version;
|
||||||
//! if possible, avoid requesting addresses nodes older than this
|
//! if possible, avoid requesting addresses nodes older than this
|
||||||
|
Loading…
Reference in New Issue
Block a user