Browse Source

Remove qt references (#122)

pull/45/head
Dimitris Apostolou 5 years ago
committed by adityapk00
parent
commit
b3a8982d44
  1. 4
      docs/website/config.toml
  2. 6
      docs/website/content/_index.md
  3. 6
      res/SIGNATURES_README
  4. 4
      res/appdmg.json
  5. 4
      src/rpc.cpp

4
docs/website/config.toml

@ -1,5 +1,5 @@
title = "zec-qt-wallet" title = "ZecWallet"
baseURL = "https://zecqtwallet.com" baseURL = "https://zecwallet.co"
languageCode = "en-us" languageCode = "en-us"
theme = "ananke" theme = "ananke"

6
docs/website/content/_index.md

@ -1,6 +1,6 @@
--- ---
title: "zec-qt-wallet" title: "ZecWallet"
featured_image: '/images/screenshot-main.png' featured_image: '/images/screenshot-main.png'
description: "Shielded desktop wallet for zcash" description: "Shielded desktop wallet for Zcash"
--- ---
zec-qt-wallet is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS. It comes with an embedded zcash node that allows you to send and recieve fully shielded transactions on the zcash network. ZecWallet is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS. It comes with an embedded zcash node that allows you to send and recieve fully shielded transactions on the Zcash network.

6
res/SIGNATURES_README

@ -1,11 +1,11 @@
This directory contains the hashes and signatures for zec-qt-wallet This directory contains the hashes and signatures for ZecWallet
Verify the hashes by running: Verify the hashes by running:
sha256sum -c sha256sum-vX.Y.Z.txt sha256sum -c sha256sum-vX.Y.Z.txt
Verify signatures: Verify signatures:
1. First, import the public key (Available on github 1. First, import the public key (Available on GitHub
at https://github.com/ZcashFoundation/zec-qt-wallet/blob/master/public_key.asc) at https://github.com/ZcashFoundation/zecwallet/blob/master/public_key.asc)
gpg --import public_key.asc gpg --import public_key.asc
2. Verify signature 2. Verify signature

4
res/appdmg.json

@ -1,5 +1,5 @@
{ {
"title": "zec-qt-wallet-vRELEASE_VERSION", "title": "zecwallet-vRELEASE_VERSION",
"icon": "logo.icns", "icon": "logo.icns",
"background": "dmgbg.png", "background": "dmgbg.png",
"window" : { "window" : {
@ -8,6 +8,6 @@
}, },
"contents": [ "contents": [
{ "x": 448, "y": 80, "type": "link", "path": "/Applications" }, { "x": 448, "y": 80, "type": "link", "path": "/Applications" },
{ "x": 152, "y": 80, "type": "file", "path": "zec-qt-wallet.app" } { "x": 152, "y": 80, "type": "file", "path": "zecwallet.app" }
] ]
} }

4
src/rpc.cpp

@ -1012,7 +1012,7 @@ void RPC::checkForUpdate(bool silent) {
.arg(currentVersion.toString()), .arg(currentVersion.toString()),
QMessageBox::Yes, QMessageBox::Cancel); QMessageBox::Yes, QMessageBox::Cancel);
if (ans == QMessageBox::Yes) { if (ans == QMessageBox::Yes) {
QDesktopServices::openUrl(QUrl("https://github.com/ZcashFoundation/zec-qt-wallet/releases")); QDesktopServices::openUrl(QUrl("https://github.com/ZcashFoundation/zecwallet/releases"));
} else { } else {
// If the user selects cancel, don't bother them again for this version // If the user selects cancel, don't bother them again for this version
s.setValue("update/lastversion", maxVersion.toString()); s.setValue("update/lastversion", maxVersion.toString());
@ -1214,4 +1214,4 @@ QString RPC::getDefaultTAddress() {
return getAllTAddresses()->at(0); return getAllTAddresses()->at(0);
else else
return QString(); return QString();
} }

Loading…
Cancel
Save