From 76e6825101cf7e27af0fea5db219de59fd1d29c1 Mon Sep 17 00:00:00 2001 From: mxaddict Date: Mon, 20 Jun 2022 20:29:19 +0800 Subject: [PATCH 1/2] More branding changes --- doc/Doxyfile.in | 4 ++-- src/qt/bitcoingui.cpp | 2 +- src/qt/intro.cpp | 2 +- src/qt/res/bitcoin-qt-res.rc | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index d8fd46d1c7d0b..ba228745a9fb3 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1264,7 +1264,7 @@ DOCSET_FEEDNAME = "Doxygen generated docs" # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. -DOCSET_BUNDLE_ID = org.bitcoin.Bitcoin-Core +DOCSET_BUNDLE_ID = org.navcoin.Navcoin-Core # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style @@ -1272,7 +1272,7 @@ DOCSET_BUNDLE_ID = org.bitcoin.Bitcoin-Core # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. -DOCSET_PUBLISHER_ID = org.bitcoin.Bitcoin-Core +DOCSET_PUBLISHER_ID = org.navcoin.Navcoin-Core # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 81b0e711b2f8f..03197ecf5b5c1 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -353,7 +353,7 @@ void BitcoinGUI::createActions() showHelpMessageAction = new QAction(tr("&Command-line options"), this); showHelpMessageAction->setMenuRole(QAction::NoRole); - showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible Bitcoin command-line options").arg(PACKAGE_NAME)); + showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible Navcoin command-line options").arg(PACKAGE_NAME)); m_mask_values_action = new QAction(tr("&Mask values"), this); m_mask_values_action->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_M)); diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index b1b8b45d0133e..48297df7b7647 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -389,7 +389,7 @@ void Intro::UpdatePruneLabels(bool prune_checked) //: Explanatory text on the capability of the current prune target. tr("(sufficient to restore backups %n day(s) old)", "", expected_backup_days)); ui->sizeWarningLabel->setText( - tr("%1 will download and store a copy of the Bitcoin block chain.").arg(PACKAGE_NAME) + " " + + tr("%1 will download and store a copy of the Navcoin block chain.").arg(PACKAGE_NAME) + " " + storageRequiresMsg.arg(m_required_space_gb) + " " + tr("The wallet will also be stored in this directory.") ); diff --git a/src/qt/res/bitcoin-qt-res.rc b/src/qt/res/bitcoin-qt-res.rc index e590b407b0d68..f584d794fe323 100644 --- a/src/qt/res/bitcoin-qt-res.rc +++ b/src/qt/res/bitcoin-qt-res.rc @@ -19,13 +19,13 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", PACKAGE_NAME " (GUI node for Bitcoin)" + VALUE "CompanyName", "Navcoin" + VALUE "FileDescription", PACKAGE_NAME " (GUI node for Navcoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoin-qt" + VALUE "InternalName", "navcoin-qt" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "bitcoin-qt.exe" + VALUE "OriginalFilename", "navcoin-qt.exe" VALUE "ProductName", PACKAGE_NAME VALUE "ProductVersion", VER_PRODUCTVERSION_STR END From 5739766d45a4a8be42e641237a197d3ad207214f Mon Sep 17 00:00:00 2001 From: mxaddict Date: Mon, 20 Jun 2022 20:42:42 +0800 Subject: [PATCH 2/2] Fixed build issue with doc/man --- doc/man/{bitcoin-cli.1 => navcoin-cli.1} | 0 doc/man/{bitcoin-qt.1 => navcoin-qt.1} | 0 doc/man/{bitcoin-tx.1 => navcoin-tx.1} | 0 doc/man/{bitcoin-util.1 => navcoin-util.1} | 0 doc/man/{bitcoin-wallet.1 => navcoin-wallet.1} | 0 doc/man/{bitcoind.1 => navcoind.1} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename doc/man/{bitcoin-cli.1 => navcoin-cli.1} (100%) rename doc/man/{bitcoin-qt.1 => navcoin-qt.1} (100%) rename doc/man/{bitcoin-tx.1 => navcoin-tx.1} (100%) rename doc/man/{bitcoin-util.1 => navcoin-util.1} (100%) rename doc/man/{bitcoin-wallet.1 => navcoin-wallet.1} (100%) rename doc/man/{bitcoind.1 => navcoind.1} (100%) diff --git a/doc/man/bitcoin-cli.1 b/doc/man/navcoin-cli.1 similarity index 100% rename from doc/man/bitcoin-cli.1 rename to doc/man/navcoin-cli.1 diff --git a/doc/man/bitcoin-qt.1 b/doc/man/navcoin-qt.1 similarity index 100% rename from doc/man/bitcoin-qt.1 rename to doc/man/navcoin-qt.1 diff --git a/doc/man/bitcoin-tx.1 b/doc/man/navcoin-tx.1 similarity index 100% rename from doc/man/bitcoin-tx.1 rename to doc/man/navcoin-tx.1 diff --git a/doc/man/bitcoin-util.1 b/doc/man/navcoin-util.1 similarity index 100% rename from doc/man/bitcoin-util.1 rename to doc/man/navcoin-util.1 diff --git a/doc/man/bitcoin-wallet.1 b/doc/man/navcoin-wallet.1 similarity index 100% rename from doc/man/bitcoin-wallet.1 rename to doc/man/navcoin-wallet.1 diff --git a/doc/man/bitcoind.1 b/doc/man/navcoind.1 similarity index 100% rename from doc/man/bitcoind.1 rename to doc/man/navcoind.1