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

7
src/mainwindow.ui

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

2
src/version.h

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

Loading…
Cancel
Save