Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-knotifications for openSUSE:Factory checked in at 2025-01-12 11:13:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-knotifications (Old) and /work/SRC/openSUSE:Factory/.kf6-knotifications.new.1881 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-knotifications" Sun Jan 12 11:13:16 2025 rev:11 rq:1236633 version:6.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-knotifications/kf6-knotifications.changes 2024-12-15 12:38:57.310623426 +0100 +++ /work/SRC/openSUSE:Factory/.kf6-knotifications.new.1881/kf6-knotifications.changes 2025-01-12 11:18:51.466034895 +0100 @@ -1,0 +2,12 @@ +Thu Jan 9 17:12:34 UTC 2025 - Christophe Marin <[email protected]> + +- Update to 6.10.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.10.0 +- Changes since 6.9.0: + * Update dependency version to 6.10.0 + * NotifyByAndroid: Set CONTEXT_NOT_EXPORTED + * Update version to 6.10.0 + +------------------------------------------------------------------- Old: ---- knotifications-6.9.0.tar.xz knotifications-6.9.0.tar.xz.sig New: ---- knotifications-6.10.0.tar.xz knotifications-6.10.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-knotifications.spec ++++++ --- /var/tmp/diff_new_pack.jV6vmx/_old 2025-01-12 11:18:52.018057601 +0100 +++ /var/tmp/diff_new_pack.jV6vmx/_new 2025-01-12 11:18:52.018057601 +0100 @@ -25,7 +25,7 @@ %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-knotifications -Version: 6.9.0 +Version: 6.10.0 Release: 0 Summary: KDE Desktop notifications License: LGPL-2.1-or-later ++++++ knotifications-6.9.0.tar.xz -> knotifications-6.10.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-6.9.0/CMakeLists.txt new/knotifications-6.10.0/CMakeLists.txt --- old/knotifications-6.9.0/CMakeLists.txt 2024-12-06 12:53:07.000000000 +0100 +++ new/knotifications-6.10.0/CMakeLists.txt 2025-01-03 16:27:47.000000000 +0100 @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.9.0") # handled by release scripts -set(KF_DEP_VERSION "6.9.0") # handled by release scripts +set(KF_VERSION "6.10.0") # handled by release scripts +set(KF_DEP_VERSION "6.10.0") # handled by release scripts project(KNotifications VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 6.9.0 NO_MODULE) +find_package(ECM 6.10.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/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-6.9.0/poqm/sa/knotifications6_qt.po new/knotifications-6.10.0/poqm/sa/knotifications6_qt.po --- old/knotifications-6.9.0/poqm/sa/knotifications6_qt.po 1970-01-01 01:00:00.000000000 +0100 +++ new/knotifications-6.10.0/poqm/sa/knotifications6_qt.po 2025-01-03 16:27:47.000000000 +0100 @@ -0,0 +1,11 @@ +msgid "" +msgstr "" +"Project-Id-Version: knotifications6_qt\n" +"PO-Revision-Date: 2024-12-13 19:10+0530\n" +"Last-Translator: Kali <EMAIL@ADDRESS>\n" +"Language-Team: Sanskrit <[email protected]>\n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n>1);\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/knotifications-6.9.0/src/android/org/kde/knotifications/NotifyByAndroid.java new/knotifications-6.10.0/src/android/org/kde/knotifications/NotifyByAndroid.java --- old/knotifications-6.9.0/src/android/org/kde/knotifications/NotifyByAndroid.java 2024-12-06 12:53:07.000000000 +0100 +++ new/knotifications-6.10.0/src/android/org/kde/knotifications/NotifyByAndroid.java 2025-01-03 16:27:47.000000000 +0100 @@ -69,7 +69,12 @@ filter.addAction(m_ctx.getPackageName() + NOTIFICATION_DELETED); filter.addAction(m_ctx.getPackageName() + NOTIFICATION_OPENED); filter.addAction(m_ctx.getPackageName() + NOTIFICATION_REPLIED); - m_ctx.registerReceiver(this, filter); + + if (Build.VERSION.SDK_INT >= 33) { + m_ctx.registerReceiver(this, filter, Context.RECEIVER_NOT_EXPORTED); + } else { + m_ctx.registerReceiver(this, filter); + } } public void notify(KNotification notification)
