From 283668cb0155c1c14739bb3b51db3d5d0b39c8e2 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sat, 17 Feb 2024 11:25:40 +0100 Subject: [PATCH] [libcalamares] Update sponsor / maintainer information --- src/libcalamares/CalamaresAbout.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/CalamaresAbout.cpp b/src/libcalamares/CalamaresAbout.cpp index 89c90e116..31389c679 100644 --- a/src/libcalamares/CalamaresAbout.cpp +++ b/src/libcalamares/CalamaresAbout.cpp @@ -22,11 +22,14 @@ static const char s_footer[] "and the Calamares " "translators team." ); +#if 0 +// Blue Systems sponsored until June 2022 static const char s_sponsor[] = QT_TRANSLATE_NOOP( "AboutData", "Calamares " "development is sponsored by
" "Blue Systems - " "Liberating Software." ); +#endif struct Maintainer { @@ -47,7 +50,8 @@ struct Maintainer static constexpr const Maintainer maintainers[] = { { 2014, 2017, "Teo Mrnjavac", "teo@kde.org" }, - { 2017, 2023, "Adriaan de Groot", "groot@kde.org" }, + { 2017, 2022, "Adriaan de Groot", "groot@kde.org" }, + { 2022, 2024, "Adriaan de Groot (community)", "groot@kde.org" }, }; static QString @@ -72,7 +76,6 @@ substituteVersions( const QString& s ) const QString Calamares::aboutString() { - Q_UNUSED( s_sponsor ) return substituteVersions( QCoreApplication::translate( "AboutData", s_header ) ) + aboutMaintainers() + QCoreApplication::translate( "AboutData", s_footer ); }