Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EVOS-DEV authored and EVOS-DEV committed Oct 5, 2018
1 parent 2c905e7 commit edc1d2d
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
5 changes: 4 additions & 1 deletion README.md
@@ -1,8 +1,11 @@
EVOS Coin 1.0.0
EVOS Coin 1.1.0

Decentralized crypto-currency EVOS coin is a new step in the crypto-currency universe.

Changes:

1.0.0
- First official release

1.1.0
- Fixed GUI glitches and incorrect balance at the overview page when wallet has some immature coins
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,7 +1,7 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -17,7 +17,7 @@
//! These need to be macros, as clientversion.cpp's and evos*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0

//! Set to true for release, false for prerelease or test build
Expand Down
7 changes: 5 additions & 2 deletions src/qt/bitcoingui.cpp
Expand Up @@ -401,9 +401,12 @@ void BitcoinGUI::createActions(const NetworkStyle* networkStyle)
backupWalletAction->setStatusTip(tr("Backup wallet to another location"));
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);
changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption"));
unlockWalletAction = new QAction(tr("&Unlock Wallet..."), this);
unlockWalletAction = new QAction(QIcon(":/icons/lock_open"),tr("&Unlock Wallet..."), this);
unlockWalletAction->setToolTip(tr("Unlock wallet"));
lockWalletAction = new QAction(tr("&Lock Wallet"), this);

lockWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Lock Wallet"), this);
lockWalletAction->setToolTip(tr("Lock wallet"));

signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this);
signMessageAction->setStatusTip(tr("Sign messages with your Evos addresses to prove you own them"));
verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this);
Expand Down
1 change: 1 addition & 0 deletions src/qt/evos.qrc
Expand Up @@ -53,6 +53,7 @@
<file alias="browse">res/icons/browse.png</file>
<file alias="staking_active">res/icons/staking_active.png</file>
<file alias="staking_inactive">res/icons/staking_inactive.png</file>
<file alias="explorer">res/icons/world.png</file>
</qresource>
<qresource prefix="/css">
<file alias="default">res/css/default.css</file>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/overviewpage.cpp
Expand Up @@ -191,12 +191,12 @@ void OverviewPage::setBalance(const CAmount& balance, const CAmount& unconfirmed

// EVOS labels
//ui->labelBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance - immatureBalance, false, BitcoinUnits::separatorAlways));
ui->labelBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance, false, BitcoinUnits::separatorAlways));
ui->labelBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance - immatureBalance, false, BitcoinUnits::separatorAlways));
ui->labelzBalance->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, zerocoinBalance, false, BitcoinUnits::separatorAlways));
ui->labelUnconfirmed->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, unconfirmedBalance, false, BitcoinUnits::separatorAlways));
ui->labelImmature->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, immatureBalance, false, BitcoinUnits::separatorAlways));
//ui->labelTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance + unconfirmedBalance, false, BitcoinUnits::separatorAlways));
ui->labelTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance + unconfirmedBalance + immatureBalance, false, BitcoinUnits::separatorAlways));
ui->labelTotal->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, balance + unconfirmedBalance, false, BitcoinUnits::separatorAlways));

// Watchonly labels
ui->labelWatchAvailable->setText(BitcoinUnits::floorHtmlWithUnit(nDisplayUnit, watchOnlyBalance, false, BitcoinUnits::separatorAlways));
Expand Down
1 change: 0 additions & 1 deletion src/qt/res/css/default.css
Expand Up @@ -1047,7 +1047,6 @@ font-size:14px;
QWidget .QFrame#frame .QLabel#labelImmature { /* Immature Balance */
qproperty-alignment: 'AlignVCenter | AlignLeft';
font-size:12px;
margin-left:16px;
color: #229c86;
font-weight:bold;
}
Expand Down
Binary file added src/qt/res/icons/world.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/qt/sendcoinsdialog.cpp
Expand Up @@ -771,7 +771,8 @@ void SendCoinsDialog::splitBlockLineEditChanged(const QString& text)

//convert to CAmount
CAmount nAfterFee;
ParseMoney(qAfterFee.toStdString().c_str(), nAfterFee);

nAfterFee = qAfterFee.toDouble() * COIN;

//if greater than 0 then divide after fee by the amount of blocks
CAmount nSize = nAfterFee;
Expand Down

0 comments on commit edc1d2d

Please sign in to comment.