diff --git a/main.cpp b/main.cpp index e17e6d7..09e7392 100644 --- a/main.cpp +++ b/main.cpp @@ -1,94 +1,94 @@ /* * Copyright (C) 2000-2005 Stefan Schimanski * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "mainwindow.h" #include #include #include #include #include #include #include #include "debug.h" #include "kbounce_version.h" Q_LOGGING_CATEGORY(KBOUNCE_LOG, "log_kbounce") static const char description[] = I18N_NOOP("KDE Bounce Ball Game"); static const char copyleft[] = I18N_NOOP("(c) 2000-2005, Stefan Schimanski\n(c) 2007, Tomasz Boczkowski"); int main(int argc, char **argv) { QApplication app(argc, argv); Kdelibs4ConfigMigrator migrate(QStringLiteral("kbounce")); migrate.setConfigFiles(QStringList() << QStringLiteral("kbouncerc")); migrate.setUiFiles(QStringList() << QStringLiteral("kbounceui.rc")); migrate.migrate(); KLocalizedString::setApplicationDomain("kbounce"); KAboutData aboutData(QStringLiteral("kbounce"), i18n("KBounce"), QStringLiteral(KBOUNCE_VERSION_STRING), i18n(description), KAboutLicense::GPL, i18n(copyleft), QString(), - QStringLiteral("http://games.kde.org/kbounce")); + QStringLiteral("https://kde.org/applications/games/org.kde.kbounce")); aboutData.addAuthor(i18n("Stefan Schimanski"), i18n("Original author"), QStringLiteral("schimmi@kde.org")); aboutData.addAuthor(i18n("Sandro Sigala"), i18n("Highscore"), QStringLiteral("ssigala@globalnet.it")); aboutData.addAuthor(i18n("Benjamin Meyer"), i18n("Contributions"), QStringLiteral("ben+kbounce@meyerhome.net")); aboutData.addAuthor(i18n("Tomasz Boczkowski"), i18n("Port to KDE4. Current maintainer"), QStringLiteral("tboczkowski@onet.pl")); aboutData.addCredit(i18n("Dmitry Suzdalev"), i18n("Port to QGraphicsView framework"), QStringLiteral("dimsuz@gmail.com")); aboutData.addCredit(i18n("Andreas Scherf"), i18n("Image Background and Fixes"), QStringLiteral("ascherfy@gmail.com")); KAboutData::setApplicationData(aboutData); KCrash::initialize(); QCommandLineParser parser; aboutData.setupCommandLine(&parser); parser.process(app); aboutData.processCommandLine(&parser); app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kbounce"))); KDBusService service; if (app.isSessionRestored()) kRestoreMainWindows(); else { KBounceMainWindow *w = new KBounceMainWindow; w->show(); } return app.exec(); }