Skip to content

Commit

Permalink
v1.9.5.2 build revisions.
Browse files Browse the repository at this point in the history
  • Loading branch information
EverGreenCoinDev committed Mar 23, 2022
1 parent 280029c commit c09c96b
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 13 deletions.
6 changes: 3 additions & 3 deletions EverGreenCoin-qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
###############################################################################################
TEMPLATE = app
DEFINES += fName1 fName2
fName1 = "EverGreenCoin-Qt"
macx:TARGET = "EverGreenCoin-Qt"
VERSION = 1.9.5.1
fName1 = "EverGreenCoin-Core"
macx:TARGET = "EverGreenCoin-Core"
VERSION = 1.9.5.2
QMAKE_TARGET_BUNDLE_PREFIX = co.evergreen
contains(QT_ARCH, i386) {
fName2 = "-qt-x86-v"
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 9
#define CLIENT_VERSION_REVISION 5
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 2

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif

resize(1250, 1000);
resize(937.5, 750);
this->setGeometry(QStyle::alignedRect(Qt::LeftToRight, Qt::AlignCenter, this->size(), QApplication::desktop()->screenGeometry()));
setWindowTitle(tr("EverGreenCoin® Core - Wallet v1.9.5") );
#ifndef Q_OS_MAC
Expand Down
14 changes: 11 additions & 3 deletions src/qt/forms/qrcodedialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>340</width>
<height>534</height>
<height>539</height>
</rect>
</property>
<property name="windowTitle">
Expand Down Expand Up @@ -102,7 +102,11 @@
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="lnLabel"/>
<widget class="QLineEdit" name="lnLabel">
<property name="styleSheet">
<string notr="true">color: #ffffff;</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="lblMessage">
Expand All @@ -124,7 +128,11 @@
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="lnMessage"/>
<widget class="QLineEdit" name="lnMessage">
<property name="styleSheet">
<string notr="true">color: #ffffff;</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="lblAmount">
Expand Down
3 changes: 3 additions & 0 deletions src/qt/forms/rpcconsole.ui
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@
<property name="enabled">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true">background-color: transparent;</string>
</property>
<property name="text">
<string/>
</property>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/statisticspage.ui
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
<enum>QFormLayout::ExpandingFieldsGrow</enum>
</property>
<property name="labelAlignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
<property name="formAlignment">
<set>Qt::AlignHCenter|Qt::AlignTop</set>
Expand Down
9 changes: 6 additions & 3 deletions src/qt/res/styles/style.qss
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,13 @@ QLabel {
}

QMessageBox {
color: #ffffff;
background-color: rgba(1,132,87,50);
}

QMessageBox QLabel {
color: #ffffff;
}

QCheckBox {
border-radius: 2px;
border-width: 2;
Expand Down Expand Up @@ -238,8 +241,8 @@ QTableView {
}

QHeaderView { color: #000000; background: transparent; } /* QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #155f30, stop: 0.05 #018457, stop: 0.95 #018457, stop: 1 #155f30); background-image: none; qproperty-defaultAlignment: AlignHCenter; } */
QHeaderView::section { color: #000000; background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #155f30, stop: 0.05 #018457, stop: 0.95 #018457, stop: 1 #155f30); background-image: none; qproperty-defaultAlignment: AlignHCenter; }
QHeaderView::section:checked { selection-background-color: rgb(1,132,87); }
QHeaderView::section { color: #000000; background-color: rgba(1,132,87,50); qproperty-defaultAlignment: AlignHCenter; }
QHeaderView::section:checked { selection-background-color: rgba(1,132,87,50); }

QTabWidget {
border: 2px solid #018457;
Expand Down
2 changes: 1 addition & 1 deletion src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void SendCoinsDialog::on_sendButton_clicked()

fNewRecipientAllowed = false;

QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm send EverGreenCoin"),
QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm Send EverGreenCoin"),
tr("Are you sure you want to send %1?").arg(formatted.join(tr(" and "))),
QMessageBox::Yes|QMessageBox::Cancel,
QMessageBox::Cancel);
Expand Down

0 comments on commit c09c96b

Please sign in to comment.