Skip to content

Commit

Permalink
copyright update
Browse files Browse the repository at this point in the history
  • Loading branch information
bumbacoin committed Jul 15, 2018
1 parent 3487d3c commit 7c0badb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -5,7 +5,7 @@ define(_CLIENT_VERSION_MINOR, 3)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([shmn core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.shmn.org],[shmn])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([src/config/shmn-config.h])
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -38,7 +38,7 @@
#define DO_STRINGIZE(X) #X

//! Copyright string used in Windows .rc files
#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers, 2014-" STRINGIZE(COPYRIGHT_YEAR) " The Dash Core Developers, 2015-" STRINGIZE(COPYRIGHT_YEAR) " The shmn core Developers, 2018"
#define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin Core Developers, 2014-" STRINGIZE(COPYRIGHT_YEAR) " The Dash Core Developers, 2015-" STRINGIZE(COPYRIGHT_YEAR) " The Pivx Core Developers, 2017-" STRINGIZE(COPYRIGHT_YEAR) " The shmn core Developers, 2018"

/**
* shmnd-res.rc includes this file, but it cannot cope with real c++ code.
Expand Down
4 changes: 3 additions & 1 deletion src/init.cpp
Expand Up @@ -509,7 +509,9 @@ std::string LicenseInfo()
"\n" +
FormatParagraph(strprintf(_("Copyright (C) 2014-%i The Dash Core Developers"), COPYRIGHT_YEAR)) + "\n" +
"\n" +
FormatParagraph(strprintf(_("Copyright (C) 2015-%i The shmn core Developers"), COPYRIGHT_YEAR)) + "\n" +
FormatParagraph(strprintf(_("Copyright (C) 2015-%i The Pivx core Developers"), COPYRIGHT_YEAR)) + "\n" +
"\n" +
FormatParagraph(strprintf(_("Copyright (C) %i The Shmn core Developers"), COPYRIGHT_YEAR)) + "\n" +
"\n" +
FormatParagraph(_("This is experimental software.")) + "\n" +
"\n" +
Expand Down
3 changes: 2 additions & 1 deletion src/qt/shmnstrings.cpp
Expand Up @@ -240,7 +240,8 @@ QT_TRANSLATE_NOOP("shmn-core", "Connect to a node to retrieve peer addresses, an
QT_TRANSLATE_NOOP("shmn-core", "Connection options:"),
QT_TRANSLATE_NOOP("shmn-core", "Copyright (C) 2009-%i The Bitcoin Core Developers"),
QT_TRANSLATE_NOOP("shmn-core", "Copyright (C) 2014-%i The Dash Core Developers"),
QT_TRANSLATE_NOOP("shmn-core", "Copyright (C) 2015-%i The shmn core Developers"),
QT_TRANSLATE_NOOP("shmn-core", "Copyright (C) 2017-%i The Pivx Core Developers"),
QT_TRANSLATE_NOOP("shmn-core", "Copyright (C) 2018-%i The shmn core Developers"),
QT_TRANSLATE_NOOP("shmn-core", "Corrupted block database detected"),
QT_TRANSLATE_NOOP("shmn-core", "Could not parse -rpcbind value %s as network address"),
QT_TRANSLATE_NOOP("shmn-core", "Could not parse masternode.conf"),
Expand Down
6 changes: 4 additions & 2 deletions src/qt/splashscreen.cpp
Expand Up @@ -38,7 +38,8 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle* networkStyle)
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 developers"));
QString copyrightTextshmn = QChar(0xA9) + QString(" 2015-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The shmn core developers"));
QString copyrightTextPivx = QChar(0xA9) + QString(" 2017-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Pivx Core developers"));
QString copyrightTextShmn = QChar(0xA9) + QString(" 2018-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The shmn core developers"));
QString titleAddText = networkStyle->getTitleAddText();

QString font = QApplication::font().toString();
Expand Down Expand Up @@ -70,7 +71,8 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle* networkStyle)
pixPaint.setFont(QFont(font, 10 * fontFactor));
pixPaint.drawText(paddingLeft, paddingTop + titleCopyrightVSpace, copyrightTextBtc);
pixPaint.drawText(paddingLeft, paddingTop + titleCopyrightVSpace + 12, copyrightTextDash);
pixPaint.drawText(paddingLeft, paddingTop + titleCopyrightVSpace + 24, copyrightTextshmn);
pixPaint.drawText(paddingLeft, paddingTop + titleCopyrightVSpace + 24, copyrightTextPivx);
pixPaint.drawText(paddingLeft, paddingTop + titleCopyrightVSpace + 36, copyrightTextShmn);

// draw additional text if special network
if (!titleAddText.isEmpty()) {
Expand Down

0 comments on commit 7c0badb

Please sign in to comment.