Hello community, here is the log from the commit of package ktimer for openSUSE:Factory checked in at 2020-12-17 17:02:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ktimer (Old) and /work/SRC/openSUSE:Factory/.ktimer.new.5145 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktimer" Thu Dec 17 17:02:30 2020 rev:115 rq:855243 version:20.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes 2020-11-10 13:50:46.051154595 +0100 +++ /work/SRC/openSUSE:Factory/.ktimer.new.5145/ktimer.changes 2020-12-17 17:07:05.197838729 +0100 @@ -1,0 +2,26 @@ +Sat Dec 5 23:17:17 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.12.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-12-apps-update +- No code change since 20.11.90 + +------------------------------------------------------------------- +Fri Nov 27 15:17:30 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 20.11.90 + * New feature release +- No code change since 20.11.80 + +------------------------------------------------------------------- +Sat Nov 14 00:02:28 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 20.11.80 + * New feature release +- Changes since 20.08.3: + * If include is define in .h remove it if it's defined in .cpp too (scripted) + * Fix clazy warning + * Remove unneeded includes + +------------------------------------------------------------------- Old: ---- ktimer-20.08.3.tar.xz ktimer-20.08.3.tar.xz.sig New: ---- ktimer-20.12.0.tar.xz ktimer-20.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ktimer.spec ++++++ --- /var/tmp/diff_new_pack.ZvOjj9/_old 2020-12-17 17:07:05.793839321 +0100 +++ /var/tmp/diff_new_pack.ZvOjj9/_new 2020-12-17 17:07:05.797839325 +0100 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: ktimer -Version: 20.08.3 +Version: 20.12.0 Release: 0 Summary: Countdown Launcher License: GPL-2.0-or-later ++++++ ktimer-20.08.3.tar.xz -> ktimer-20.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/CMakeLists.txt new/ktimer-20.12.0/CMakeLists.txt --- old/ktimer-20.08.3/CMakeLists.txt 2020-11-03 01:36:35.000000000 +0100 +++ new/ktimer-20.12.0/CMakeLists.txt 2020-12-04 01:11:59.000000000 +0100 @@ -1,13 +1,13 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "20") -set (RELEASE_SERVICE_VERSION_MINOR "08") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MINOR "12") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") cmake_minimum_required (VERSION 3.5 FATAL_ERROR) project(ktimer VERSION ${RELEASE_SERVICE_VERSION}) -set (QT_MIN_VERSION "5.9.0") -set(KF5_MIN_VERSION "5.46.0") +set (QT_MIN_VERSION "5.12.0") +set(KF5_MIN_VERSION "5.57.0") find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) set (CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -32,9 +32,7 @@ Notifications ) -if (${KF5Config_VERSION} STRGREATER "5.56.0") - add_definitions(-DQT_NO_FOREACH) -endif() +add_definitions(-DQT_NO_FOREACH) configure_file(config-ktimer.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-ktimer.h) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/ktimer.cpp new/ktimer-20.12.0/ktimer.cpp --- old/ktimer-20.08.3/ktimer.cpp 2020-10-31 18:11:26.000000000 +0100 +++ new/ktimer-20.12.0/ktimer.cpp 2020-12-02 23:13:36.000000000 +0100 @@ -18,16 +18,13 @@ #include "ktimer.h" -#include <QProcess> #include <QTimer> #include <KConfigGroup> #include <KLineEdit> -#include <ktoolinvocation.h> #include <KStandardGuiItem> #include <QAction> #include <KStandardAction> #include "kstatusnotifieritem.h" -#include <KToolInvocation> #include <KHelpClient> #include <KGuiItem> #include <KSharedConfig> @@ -155,7 +152,7 @@ // Qt drops currentChanged signals on first item (bug?) if( m_list->topLevelItemCount()==1 ) - currentChanged( item , NULL); + currentChanged( item , nullptr); m_list->setCurrentItem( item ); m_list->update(); @@ -204,8 +201,8 @@ m_delayM->setValue( m ); m_delay->setValue( s ); - connect( m_commandLine->lineEdit(), SIGNAL(textChanged(QString)), - job, SLOT(setCommand(QString)) ); + connect( m_commandLine->lineEdit(), &QLineEdit::textChanged, + job, &KTimerJob::setCommand); connect(m_delayH, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged); connect(m_delayM, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged); connect(m_delay, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &KTimerPref::delayChanged); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/main.cpp new/ktimer-20.12.0/main.cpp --- old/ktimer-20.08.3/main.cpp 2020-10-31 18:11:26.000000000 +0100 +++ new/ktimer-20.12.0/main.cpp 2020-12-02 23:13:36.000000000 +0100 @@ -45,7 +45,7 @@ KLocalizedString::setApplicationDomain("ktimer"); KAboutData aboutData( QStringLiteral("ktimer"), i18n("KTimer"), - QString::fromLatin1(KTIMER_VERSION), i18n(description), KAboutLicense::GPL, + QStringLiteral(KTIMER_VERSION), i18n(description), KAboutLicense::GPL, i18n("(c) 2001, Stefan Schimanski"), QStringLiteral("https://utils.kde.org/projects/ktimer/")); aboutData.addAuthor(i18n("Stefan Schimanski"),QString(), QStringLiteral("schi...@kde.org")); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/org.kde.ktimer.appdata.xml new/ktimer-20.12.0/org.kde.ktimer.appdata.xml --- old/ktimer-20.08.3/org.kde.ktimer.appdata.xml 2020-10-31 18:11:26.000000000 +0100 +++ new/ktimer-20.12.0/org.kde.ktimer.appdata.xml 2020-12-02 23:13:36.000000000 +0100 @@ -141,9 +141,9 @@ </provides> <launchable type="desktop-id">org.kde.ktimer.desktop</launchable> <releases> + <release version="20.12.0" date="2020-12-10"/> <release version="20.08.3" date="2020-11-05"/> <release version="20.08.2" date="2020-10-08"/> <release version="20.08.1" date="2020-09-03"/> - <release version="20.08.0" date="2020-08-13"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/po/nl/ktimer.po new/ktimer-20.12.0/po/nl/ktimer.po --- old/ktimer-20.08.3/po/nl/ktimer.po 2020-11-03 01:36:35.000000000 +0100 +++ new/ktimer-20.12.0/po/nl/ktimer.po 2020-12-04 01:11:58.000000000 +0100 @@ -11,7 +11,7 @@ "Project-Id-Version: ktimer\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:13+0200\n" -"PO-Revision-Date: 2020-08-17 18:04+0200\n" +"PO-Revision-Date: 2020-08-17 18:03+0200\n" "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n" "Language-Team: Dutch <kde-i18n...@kde.org>\n" "Language: nl\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ktimer-20.08.3/po/zh_CN/ktimer.po new/ktimer-20.12.0/po/zh_CN/ktimer.po --- old/ktimer-20.08.3/po/zh_CN/ktimer.po 2020-11-03 01:36:35.000000000 +0100 +++ new/ktimer-20.12.0/po/zh_CN/ktimer.po 2020-12-04 01:11:59.000000000 +0100 @@ -6,7 +6,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:13+0200\n" -"PO-Revision-Date: 2020-10-08 19:23\n" +"PO-Revision-Date: 2020-11-10 15:04\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org