From 0d5ea2f5a511567e7f527b8cd7b17cce2804ffaa Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Thu, 31 Oct 2019 12:09:20 -0700 Subject: [PATCH] Point URLs to zecwallet-lite --- src/controller.cpp | 4 ++-- src/mainwindow.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controller.cpp b/src/controller.cpp index 9c46529..004b545 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -531,7 +531,7 @@ void Controller::checkForUpdate(bool silent) { if (!zrpc->haveConnection()) return noConnection(); - QUrl cmcURL("https://api.github.com/repos/ZcashFoundation/zecwallet/releases"); + QUrl cmcURL("https://api.github.com/repos/adityapk00/zecwallet-lite/releases"); QNetworkRequest req; req.setUrl(cmcURL); @@ -579,7 +579,7 @@ void Controller::checkForUpdate(bool silent) { .arg(currentVersion.toString()), QMessageBox::Yes, QMessageBox::Cancel); if (ans == QMessageBox::Yes) { - QDesktopServices::openUrl(QUrl("https://github.com/ZcashFoundation/zecwallet/releases")); + QDesktopServices::openUrl(QUrl("https://github.com/adityapk00/zecwallet-lite/releases")); } else { // If the user selects cancel, don't bother them again for this version s.setValue("update/lastversion", maxVersion.toString()); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8384e49..4fdd3db 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -54,7 +54,7 @@ MainWindow::MainWindow(QWidget *parent) : // File a bug QObject::connect(ui->actionFile_a_bug, &QAction::triggered, [=]() { - QDesktopServices::openUrl(QUrl("https://github.com/zcashfoundation/zecwallet/issues/new")); + QDesktopServices::openUrl(QUrl("https://github.com/adityapk00/zecwallet-lite/issues/new")); }); // Set up check for updates action