Hello community, here is the log from the commit of package knotifications for openSUSE:Factory checked in at 2018-05-18 14:22:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/knotifications (Old) and /work/SRC/openSUSE:Factory/.knotifications.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "knotifications" Fri May 18 14:22:39 2018 rev:54 rq:607577 version:5.46.0 Changes: -------- --- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes 2018-04-19 15:17:36.123890105 +0200 +++ /work/SRC/openSUSE:Factory/.knotifications.new/knotifications.changes 2018-05-18 14:22:41.545845210 +0200 @@ -1,0 +2,10 @@ +Sun May 13 21:03:05 UTC 2018 - [email protected] + +- Update to 5.46.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.46.0.php +- Changes since 5.45.0: + * Warning-- , use override everywhere + +------------------------------------------------------------------- Old: ---- knotifications-5.45.0.tar.xz New: ---- knotifications-5.46.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ knotifications.spec ++++++ --- /var/tmp/diff_new_pack.BD65Iy/_old 2018-05-18 14:22:42.069825976 +0200 +++ /var/tmp/diff_new_pack.BD65Iy/_new 2018-05-18 14:22:42.073825829 +0200 @@ -18,13 +18,13 @@ %bcond_without lang %define lname libKF5Notifications5 -%define _tar_path 5.45 +%define _tar_path 5.46 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} Name: knotifications -Version: 5.45.0 +Version: 5.46.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 3.0 ++++++ knotifications-5.45.0.tar.xz -> knotifications-5.46.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/CMakeLists.txt new/knotifications-5.46.0/CMakeLists.txt --- old/knotifications-5.45.0/CMakeLists.txt 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/CMakeLists.txt 2018-05-05 14:59:22.000000000 +0200 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.45.0") # handled by release scripts -set(KF5_DEP_VERSION "5.45.0") # handled by release scripts +set(KF5_VERSION "5.46.0") # handled by release scripts +set(KF5_DEP_VERSION "5.46.0") # handled by release scripts project(KNotifications VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.45.0 NO_MODULE) +find_package(ECM 5.46.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/po/zh_CN/knotifications5_qt.po new/knotifications-5.46.0/po/zh_CN/knotifications5_qt.po --- old/knotifications-5.45.0/po/zh_CN/knotifications5_qt.po 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/po/zh_CN/knotifications5_qt.po 2018-05-05 14:59:22.000000000 +0200 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: kdeorg\n" -"PO-Revision-Date: 2018-04-05 09:22-0400\n" +"PO-Revision-Date: 2018-04-26 05:21-0400\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/src/knotification.h new/knotifications-5.46.0/src/knotification.h --- old/knotifications-5.45.0/src/knotification.h 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/src/knotification.h 2018-05-05 14:59:22.000000000 +0200 @@ -624,7 +624,7 @@ /** * reimplemented for internal reasons */ - bool eventFilter(QObject *watched, QEvent *event) Q_DECL_OVERRIDE; + bool eventFilter(QObject *watched, QEvent *event) override; static QString standardEventToEventId(StandardEvent event); static QString standardEventToIconName(StandardEvent event); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/src/kpassivepopup.h new/knotifications-5.46.0/src/kpassivepopup.h --- old/knotifications-5.45.0/src/kpassivepopup.h 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/src/kpassivepopup.h 2018-05-05 14:59:22.000000000 +0200 @@ -343,7 +343,7 @@ void show(const QPoint &p); /** @reimp */ - void setVisible(bool visible) Q_DECL_OVERRIDE; + void setVisible(bool visible) override; Q_SIGNALS: /** @@ -390,13 +390,13 @@ void moveNear(const QRect &target); /** @reimp */ - void hideEvent(QHideEvent *) Q_DECL_OVERRIDE; + void hideEvent(QHideEvent *) override; /** @reimp */ - void mouseReleaseEvent(QMouseEvent *e) Q_DECL_OVERRIDE; + void mouseReleaseEvent(QMouseEvent *e) override; /** @reimp */ - void paintEvent(QPaintEvent *pe) Q_DECL_OVERRIDE; + void paintEvent(QPaintEvent *pe) override; private: /* @internal */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/src/kstatusnotifieritem.h new/knotifications-5.46.0/src/kstatusnotifieritem.h --- old/knotifications-5.45.0/src/kstatusnotifieritem.h 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/src/kstatusnotifieritem.h 2018-05-05 14:59:22.000000000 +0200 @@ -478,7 +478,7 @@ void secondaryActivateRequested(const QPoint &pos); protected: - bool eventFilter(QObject *watched, QEvent *event) Q_DECL_OVERRIDE; + bool eventFilter(QObject *watched, QEvent *event) override; private: KStatusNotifierItemPrivate *const d; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/src/kstatusnotifieritemdbus_p.h new/knotifications-5.46.0/src/kstatusnotifieritemdbus_p.h --- old/knotifications-5.45.0/src/kstatusnotifieritemdbus_p.h 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/src/kstatusnotifieritemdbus_p.h 2018-05-05 14:59:22.000000000 +0200 @@ -69,7 +69,7 @@ friend class KStatusNotifierItem; public: - KStatusNotifierItemDBus(KStatusNotifierItem *parent); + explicit KStatusNotifierItemDBus(KStatusNotifierItem *parent); ~KStatusNotifierItemDBus(); /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-5.45.0/src/kstatusnotifieritemprivate_p.h new/knotifications-5.46.0/src/kstatusnotifieritemprivate_p.h --- old/knotifications-5.45.0/src/kstatusnotifieritemprivate_p.h 2018-04-07 21:37:40.000000000 +0200 +++ new/knotifications-5.46.0/src/kstatusnotifieritemprivate_p.h 2018-05-05 14:59:22.000000000 +0200 @@ -54,7 +54,7 @@ { } - bool event(QEvent *e) Q_DECL_OVERRIDE + bool event(QEvent *e) override { if (e->type() == QEvent::Wheel) { QWheelEvent *wheelEvent = static_cast<QWheelEvent *>(e);
