Skip to content

Commit

Permalink
Remove qt references (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
rex4539 authored and adityapk00 committed Apr 5, 2019
1 parent 281595a commit b3a8982
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docs/website/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
title = "zec-qt-wallet"
baseURL = "https://zecqtwallet.com"
title = "ZecWallet"
baseURL = "https://zecwallet.co"
languageCode = "en-us"
theme = "ananke"

Expand Down
6 changes: 3 additions & 3 deletions docs/website/content/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "zec-qt-wallet"
title: "ZecWallet"
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 changes: 3 additions & 3 deletions res/SIGNATURES_README
Original file line number Diff line number Diff line change
@@ -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:
sha256sum -c sha256sum-vX.Y.Z.txt

Verify signatures:
1. First, import the public key (Available on github
at https://github.com/ZcashFoundation/zec-qt-wallet/blob/master/public_key.asc)
1. First, import the public key (Available on GitHub
at https://github.com/ZcashFoundation/zecwallet/blob/master/public_key.asc)
gpg --import public_key.asc

2. Verify signature
Expand Down
4 changes: 2 additions & 2 deletions res/appdmg.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "zec-qt-wallet-vRELEASE_VERSION",
"title": "zecwallet-vRELEASE_VERSION",
"icon": "logo.icns",
"background": "dmgbg.png",
"window" : {
Expand All @@ -8,6 +8,6 @@
},
"contents": [
{ "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 changes: 2 additions & 2 deletions src/rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ void RPC::checkForUpdate(bool silent) {
.arg(currentVersion.toString()),
QMessageBox::Yes, QMessageBox::Cancel);
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 {
// If the user selects cancel, don't bother them again for this version
s.setValue("update/lastversion", maxVersion.toString());
Expand Down Expand Up @@ -1214,4 +1214,4 @@ QString RPC::getDefaultTAddress() {
return getAllTAddresses()->at(0);
else
return QString();
}
}

0 comments on commit b3a8982

Please sign in to comment.