diff --git a/src/appcontext.cpp b/src/appcontext.cpp index fcfa959..8265359 100644 --- a/src/appcontext.cpp +++ b/src/appcontext.cpp @@ -310,7 +310,7 @@ void AppContext::onWalletOpened(Wallet *wallet) { if(errMsg == QString("basic_string::_M_replace_aux") || errMsg == QString("std::bad_alloc")) { qCritical() << errMsg; this->walletManager->clearWalletCache(this->walletPath); - errMsg = QString("%1\n\nAttempted to clean wallet cache. Please restart Feather.").arg(errMsg); + errMsg = QString("%1\n\nAttempted to clean wallet cache. Please restart WOWllet.").arg(errMsg); this->closeWallet(false); emit walletOpenedError(errMsg); } else if(errMsg.contains("wallet cannot be opened as")) { @@ -361,7 +361,7 @@ void AppContext::onWalletOpened(Wallet *wallet) { void AppContext::setWindowTitle(bool mining) { QFileInfo fileInfo(this->walletPath); - auto title = QString("Feather - [%1]").arg(fileInfo.fileName()); + auto title = QString("WOWllet - [%1]").arg(fileInfo.fileName()); if(this->walletViewOnly) title += " [view-only]"; if(mining) diff --git a/src/assets.qrc b/src/assets.qrc index 162ec91..035f713 100644 --- a/src/assets.qrc +++ b/src/assets.qrc @@ -39,7 +39,7 @@ assets/images/expired_icon.png assets/images/eye1.png assets/images/eye_blind.png - assets/images/feather.png + assets/images/wowllet.png assets/images/file.png assets/images/gnome-calc.png assets/images/history.png diff --git a/src/assets/about.txt b/src/assets/about.txt index ac0fd55..865cf28 100644 --- a/src/assets/about.txt +++ b/src/assets/about.txt @@ -1,4 +1,4 @@ -Feather () +WOWllet () Website: https://wownero.org E-mail: dev@wownero.org diff --git a/src/assets/images/wowllet.png b/src/assets/images/wowllet.png new file mode 100644 index 0000000..12ed7e9 Binary files /dev/null and b/src/assets/images/wowllet.png differ diff --git a/src/assets/feather-wow.desktop b/src/assets/wowllet.desktop similarity index 100% rename from src/assets/feather-wow.desktop rename to src/assets/wowllet.desktop diff --git a/src/dialog/aboutdialog.ui b/src/dialog/aboutdialog.ui index 0cf2e41..ac3e63b 100644 --- a/src/dialog/aboutdialog.ui +++ b/src/dialog/aboutdialog.ui @@ -27,7 +27,7 @@ - Feather + WOWllet diff --git a/src/dialog/debuginfodialog.cpp b/src/dialog/debuginfodialog.cpp index b8df668..57e5b22 100644 --- a/src/dialog/debuginfodialog.cpp +++ b/src/dialog/debuginfodialog.cpp @@ -89,7 +89,7 @@ QString DebugInfoDialog::statusToString(Wallet::ConnectionStatus status) { void DebugInfoDialog::copyToClipboad() { // Two spaces at the end of each line are for newlines in Markdown QString text = ""; - text += QString("Feather version: %1 \n").arg(ui->label_featherVersion->text()); + text += QString("WOWllet version: %1 \n").arg(ui->label_featherVersion->text()); text += QString("Wownero version: %1 \n").arg(ui->label_moneroVersion->text()); text += QString("Wallet height: %1 \n").arg(ui->label_walletHeight->text()); diff --git a/src/dialog/debuginfodialog.ui b/src/dialog/debuginfodialog.ui index 604d9c1..dc97cab 100644 --- a/src/dialog/debuginfodialog.ui +++ b/src/dialog/debuginfodialog.ui @@ -19,7 +19,7 @@ - Feather version: + WOWllet version: diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 324ff52..7efe8a3 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -89,9 +89,9 @@ MainWindow::MainWindow(AppContext *ctx, QWidget *parent) : connect(ui->actionReport_bug, &QAction::triggered, [this](){ QMessageBox::information(this, "Reporting Bugs", "Please report any bugs as issues on our git repo:
\n" - "https://git.wownero.com/feather/wowllet/issues

" + "https://git.wownero.com/wownero/wowllet/issues

" "\n" - "Before reporting a bug, upgrade to the most recent version of Feather " + "Before reporting a bug, upgrade to the most recent version of WOWllet " "(latest release or git HEAD), and include the version number in your report. " "Try to explain not only what the bug is, but how it occurs."); }); @@ -177,9 +177,9 @@ MainWindow::MainWindow(AppContext *ctx, QWidget *parent) : }); connect(m_ctx, &AppContext::donationNag, [=]{ - auto msg = "Feather is a 100% community-sponsored endeavor. Please consider supporting " + auto msg = "WOWllet is a 100% community-sponsored endeavor. Please consider supporting " "the project financially. Get rid of this message by donating any amount."; - int ret = QMessageBox::information(this, "Donate to Feather", msg, QMessageBox::Yes, QMessageBox::No); + int ret = QMessageBox::information(this, "Donate to WOWllet", msg, QMessageBox::Yes, QMessageBox::No); switch (ret) { case QMessageBox::Yes: this->donateButtonClicked(); @@ -229,7 +229,7 @@ MainWindow::MainWindow(AppContext *ctx, QWidget *parent) : // testnet/stagenet warning - auto worthlessWarning = QString("Feather wallet is currently running in %1 mode. This is meant " + auto worthlessWarning = QString("WOWllet is currently running in %1 mode. This is meant " "for developers only. Your coins are WORTHLESS."); if(m_ctx->networkType == NetworkType::STAGENET) { if (config()->get(Config::warnOnStagenet).toBool()) { @@ -245,8 +245,8 @@ MainWindow::MainWindow(AppContext *ctx, QWidget *parent) : } if(config()->get(Config::warnOnAlpha).toBool()) { - QString warning = "Feather Wallet is currently in beta.\n\nPlease report any bugs " - "you encounter on our Git repository, IRC or on /r/FeatherWallet."; + QString warning = "WOWllet is currently in beta.\n\nPlease report any bugs " + "you encounter on our Git repository, IRC freenode #wownero or on /r/Wowonero."; QMessageBox::warning(this, "Beta Warning", warning); config()->set(Config::warnOnAlpha, false); } @@ -327,7 +327,7 @@ MainWindow::MainWindow(AppContext *ctx, QWidget *parent) : // init touchbar #ifdef Q_OS_MAC m_touchbar = new KDMacTouchBar(this); - m_touchbarActionWelcome = new QAction(QIcon(":/assets/images/feather.png"), "Welcome to Feather!"); + m_touchbarActionWelcome = new QAction(QIcon(":/assets/images/wowllet.png"), "Welcome to WOWllet!"); m_touchbarWalletItems = {ui->actionSettings, ui->actionCalculator, ui->actionKeys, ui->actionDonate_to_Feather}; m_touchbarWizardItems = {m_touchbarActionWelcome}; #endif @@ -437,7 +437,7 @@ void MainWindow::initMenu() { connect(ui->actionChange_restore_height, &QAction::triggered, this, &MainWindow::showRestoreHeightDialog); connect(m_ctx, &AppContext::customRestoreHeightSet, [=](int height){ auto msg = QString("The restore height for this wallet has been set to %1. " - "Please re-open the wallet. Feather will now quit.").arg(height); + "Please re-open the wallet. WOWllet will now quit.").arg(height); QMessageBox::information(this, "Cannot set custom restore height", msg); this->menuQuitClicked(); }); @@ -570,7 +570,7 @@ void MainWindow::onWalletOpenPasswordRequired(bool invalidPassword, const QStrin void MainWindow::onWalletOpenedError(const QString &err) { qDebug() << Q_FUNC_INFO << QString("Wallet open error: %1").arg(err); QMessageBox::warning(this, "Wallet open error", err); - this->setWindowTitle("Feather"); + this->setWindowTitle("WOWllet"); this->showWizard(WalletWizard::Page_OpenWallet); this->touchbarShowWizard(); } @@ -1031,7 +1031,7 @@ void MainWindow::donateButtonClicked() { if (donation <= 0) donation = 0.1337; - ui->sendWidget->fill(m_ctx->donationAddress, "Donation to the Feather development team", donation); + ui->sendWidget->fill(m_ctx->donationAddress, "Donation to the WOWllet development team", donation); ui->tabWidget->setCurrentIndex(Tabs::SEND); } @@ -1171,14 +1171,14 @@ void MainWindow::showWalletCacheDebugDialog() { void MainWindow::showNodeExhaustedMessage() { // Spawning dialogs inside a lambda can cause system freezes on linux so we have to do it this way ¯\_(ツ)_/¯ - auto msg = "Feather is in 'custom node connection mode' but could not " + auto msg = "WOWllet is in 'custom node connection mode' but could not " "find an eligible node to connect to. Please go to Settings->Node " "and enter a node manually."; QMessageBox::warning(this, "Could not connect to a node", msg); } void MainWindow::showWSNodeExhaustedMessage() { - auto msg = "Feather is in 'automatic node connection mode' but the " + auto msg = "WOWllet is in 'automatic node connection mode' but the " "websocket server returned no available nodes. Please go to Settings->Node " "and enter a node manually."; QMessageBox::warning(this, "Could not connect to a node", msg); @@ -1305,7 +1305,7 @@ void MainWindow::importTransaction() { auto result = QMessageBox::warning(this, "Warning", "Using this feature may allow a remote node to associate the transaction with your IP address.\n" "\n" - "Connect to a trusted node or run Feather over Tor if network level metadata leakage is included in your threat model.", + "Connect to a trusted node or run WOWllet over Tor if network level metadata leakage is included in your threat model.", QMessageBox::Ok | QMessageBox::Cancel); if (result == QMessageBox::Ok) { auto *dialog = new TxImportDialog(this, m_ctx); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 61957ca..308bd2b 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -17,7 +17,7 @@ - Feather + WOWllet @@ -530,7 +530,7 @@ - Donate to Feather + Donate to WOWllet diff --git a/src/utils/tails.cpp b/src/utils/tails.cpp index 4f8849b..666f40a 100644 --- a/src/utils/tails.cpp +++ b/src/utils/tails.cpp @@ -55,9 +55,9 @@ void TailsOS::showDataPersistenceDisabledWarning() msgBox.setText(QObject::tr("Warning: persistence disabled")); msgBox.setWindowTitle(QObject::tr("Warning: persistence disabled")); msgBox.setInformativeText( - QObject::tr("Feather has detected that Tails persistence is " + QObject::tr("WOWllet has detected that Tails persistence is " "currently disabled. Any configurations and wallets you make inside " - "Feather will not be permanently saved." + "WOWllet will not be permanently saved." "\n\n" "Make sure to not save your wallet on the " "filesystem, as it will be lost at shutdown." diff --git a/src/utils/tor.cpp b/src/utils/tor.cpp index d1ab811..6d5bc2a 100644 --- a/src/utils/tor.cpp +++ b/src/utils/tor.cpp @@ -44,7 +44,7 @@ Tor::Tor(AppContext *ctx, QObject *parent) } #ifndef HAS_TOR_BIN - qCritical() << "Feather built without embedded Tor. Assuming --use-local-tor"; + qCritical() << "WOWllet built without embedded Tor. Assuming --use-local-tor"; this->localTor = true; return; #endif diff --git a/src/utils/utils.cpp b/src/utils/utils.cpp index efd03bc..3e805aa 100644 --- a/src/utils/utils.cpp +++ b/src/utils/utils.cpp @@ -308,7 +308,7 @@ bool Utils::xdgDesktopEntryRegister() { writeLocations += QString("- %1\n").arg(xdgPaths.pathApp); writeLocations += QString("- %1\n").arg(xdgPaths.pathIcon); - QPixmap appIcon(":assets/images/feather.png"); + QPixmap appIcon(":assets/images/wowllet.png"); if (!Utils::fileExists(xdgPaths.pathIcon)) Utils::pixmapWrite(xdgPaths.pathIcon, appIcon); Utils::xdgDesktopEntryWrite(xdgPaths.pathApp); diff --git a/src/wizard/network.cpp b/src/wizard/network.cpp index 3ea4145..6ecbbef 100644 --- a/src/wizard/network.cpp +++ b/src/wizard/network.cpp @@ -11,14 +11,14 @@ NetworkPage::NetworkPage(AppContext *ctx, QWidget *parent) : ui(new Ui::NetworkPage), m_ctx(ctx) { ui->setupUi(this); - this->setTitle("Welcome to Feather-WO!W"); + this->setTitle("Welcome to WOWllet"); ui->customFrame->hide(); QPixmap p(":assets/images/wowllet.png"); ui->featherImage->setText(""); ui->featherImage->setPixmap(p.scaled(128, 128, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - ui->label_eg->setText("Examples:\n- http://127.0.0.1:18089\n- my.node.com\n- my.node.com:18089\n- user:pass@my.node.com:18089"); + ui->label_eg->setText("Examples:\n- http://127.0.0.1:34568\n- my.node.com\n- my.node.com:34568\n- user:pass@my.node.com:34568"); auto nodeSourceUInt = config()->get(Config::nodeSource).toUInt(); auto nodeSource = static_cast(nodeSourceUInt);