Browse Source

fix explorer and version bump

pull/45/head 0.7.6
Jane Mercer 5 years ago
parent
commit
4c89aae126
  1. 6
      src/mainwindow.cpp
  2. 7
      src/mainwindow.ui
  3. 2
      src/version.h

6
src/mainwindow.cpp

@ -414,7 +414,7 @@ void MainWindow::setupStatusBar() {
url = "https://explorer.testnet.z.cash/tx/" + txid; url = "https://explorer.testnet.z.cash/tx/" + txid;
} }
else { else {
url = "https://explorer.pirate.black/tx/" + txid; url = "https://explorer.myhush.org/tx/" + txid;
} }
QDesktopServices::openUrl(QUrl(url)); QDesktopServices::openUrl(QUrl(url));
}); });
@ -1093,7 +1093,7 @@ void MainWindow::setupBalancesTab() {
if (Settings::getInstance()->isTestnet()) { if (Settings::getInstance()->isTestnet()) {
url = "https://explorer.testnet.z.cash/address/" + addr; url = "https://explorer.testnet.z.cash/address/" + addr;
} else { } else {
url = "https://explorer.pirate.black/address/" + addr; url = "https://explorer.myhush.org/address/" + addr;
} }
QDesktopServices::openUrl(QUrl(url)); QDesktopServices::openUrl(QUrl(url));
}); });
@ -1159,7 +1159,7 @@ void MainWindow::setupTransactionsTab() {
if (Settings::getInstance()->isTestnet()) { if (Settings::getInstance()->isTestnet()) {
url = "https://explorer.testnet.z.cash/tx/" + txid; url = "https://explorer.testnet.z.cash/tx/" + txid;
} else { } else {
url = "https://explorer.pirate.black/tx/" + txid; url = "https://explorer.myhush.org/tx/" + txid;
} }
QDesktopServices::openUrl(QUrl(url)); QDesktopServices::openUrl(QUrl(url));
}); });

7
src/mainwindow.ui

@ -666,7 +666,7 @@
<item> <item>
<widget class="QGroupBox" name="groupBox_6"> <widget class="QGroupBox" name="groupBox_6">
<property name="title"> <property name="title">
<string></string> <string>Address Type</string>
</property> </property>
<property name="flat"> <property name="flat">
<bool>false</bool> <bool>false</bool>
@ -686,10 +686,7 @@
</item> </item>
<item> <item>
<widget class="QRadioButton" name="rdioTAddr"> <widget class="QRadioButton" name="rdioTAddr">
<property name="visible"> <property name="sizePolicy">
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>

2
src/version.h

@ -1 +1 @@
#define APP_VERSION "0.7.5" #define APP_VERSION "0.7.6"

Loading…
Cancel
Save