Hello community, here is the log from the commit of package kalgebra for openSUSE:Factory checked in at 2016-02-23 16:55:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kalgebra (Old) and /work/SRC/openSUSE:Factory/.kalgebra.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kalgebra" Changes: -------- --- /work/SRC/openSUSE:Factory/kalgebra/kalgebra.changes 2016-01-28 17:20:39.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kalgebra.new/kalgebra.changes 2016-02-23 16:55:22.000000000 +0100 @@ -1,0 +2,9 @@ +Sat Feb 13 08:03:17 UTC 2016 - [email protected] + +- Update to KDE Applications 15.12.2 + * KDE Applications 15.12.2 + * https://www.kde.org/announcements/announce-applications-15.12.2.php + * boo#966605 + + +------------------------------------------------------------------- Old: ---- kalgebra-15.12.1.tar.xz New: ---- kalgebra-15.12.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kalgebra.spec ++++++ --- /var/tmp/diff_new_pack.An83GQ/_old 2016-02-23 16:55:22.000000000 +0100 +++ /var/tmp/diff_new_pack.An83GQ/_new 2016-02-23 16:55:22.000000000 +0100 @@ -21,7 +21,7 @@ License: GPL-2.0+ Group: Productivity/Scientific/Math Url: http://edu.kde.org -Version: 15.12.1 +Version: 15.12.2 Release: 0 Source0: %{name}-%{version}.tar.xz BuildRequires: analitza-devel ++++++ kalgebra-15.12.1.tar.xz -> kalgebra-15.12.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kalgebra-15.12.1/src/main.cpp new/kalgebra-15.12.2/src/main.cpp --- old/kalgebra-15.12.1/src/main.cpp 2015-12-29 14:50:21.000000000 +0100 +++ new/kalgebra-15.12.2/src/main.cpp 2016-01-14 23:03:30.000000000 +0100 @@ -17,18 +17,20 @@ *************************************************************************************/ #include <QApplication> +#include <KAboutData> #include "kalgebra.h" #include <klocalizedstring.h> int main(int argc, char *argv[]) { QApplication app(argc, argv); - app.setApplicationName(QStringLiteral("kalgebra")); - app.setOrganizationDomain(QStringLiteral("kde.org")); - app.setApplicationDisplayName(i18n("KAlgebra")); - app.setApplicationVersion(QStringLiteral("0.99")); - - KLocalizedString::setApplicationDomain("kalgebra"); + KAboutData about("kalgebra", "KAlgebra", "0.10", i18n("A portable calculator"), + KAboutLicense::GPL, i18n("(C) 2006-2016 Aleix Pol i Gonzalez")); + about.addAuthor( "Aleix Pol i Gonzalez", QString(), "[email protected]" ); + about.setTranslator(i18nc("NAME OF TRANSLATORS", "Your names"), i18nc("EMAIL OF TRANSLATORS", "Your emails")); + KAboutData::setApplicationData(about); + + KLocalizedString::setApplicationDomain("kalgebra"); KAlgebra widget; widget.show();
