From 52da11709e8e3bdd5b9b68c3165975189e6f878b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kn=C3=B6pke?= Date: Sun, 17 Sep 2017 19:30:12 +0200 Subject: [PATCH] Change Copyright Splash --- README.md | 4 ++++ src/qt/splashscreen.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 385a9a0..e749f83 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +Copyright (C) 2009 -until todayThe Bitcoin Core Developers +Copyright (C) 2015 -until today The Dash and PIVX Core Developers +Copyright (C) 2017 -until todayThe BTDX Core Developers + BTDX Core integration/staging repository ===================================== diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 54567e5..b051562 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -36,7 +36,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle* networkStyle) QString titleText = tr("Bitcloud BTX Core 12.2"); QString versionText = QString(tr("Version %1")).arg(QString::fromStdString(FormatFullVersion())); QString copyrightTextBtc = QChar(0xA9) + QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers")); - QString copyrightTextDash = QChar(0xA9) + QString(" 2014-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Dash Core and BTDX developers")); + QString copyrightTextDash = QChar(0xA9) + QString(" 2014-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Dash Core and PIVX developers")); QString copyrightTextBTDX = QChar(0xA9) + QString(" 2017-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcloud Core developers")); QString titleAddText = networkStyle->getTitleAddText(); QString font = QApplication::font().toString();