Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package knotifications for openSUSE:Factory 
checked in at 2021-12-13 20:41:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/knotifications (Old)
 and      /work/SRC/openSUSE:Factory/.knotifications.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "knotifications"

Mon Dec 13 20:41:05 2021 rev:99 rq:939231 version:5.89.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/knotifications/knotifications.changes    
2021-11-15 15:26:52.693831528 +0100
+++ /work/SRC/openSUSE:Factory/.knotifications.new.2520/knotifications.changes  
2021-12-13 20:44:32.908486196 +0100
@@ -1,0 +2,10 @@
+Sat Dec  4 22:56:50 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.89.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.89.0
+- Changes since 5.88.0:
+  * [Tester] Support urgency for inline reply notification
+
+-------------------------------------------------------------------

Old:
----
  knotifications-5.88.0.tar.xz
  knotifications-5.88.0.tar.xz.sig

New:
----
  knotifications-5.89.0.tar.xz
  knotifications-5.89.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ knotifications.spec ++++++
--- /var/tmp/diff_new_pack.fRlN0P/_old  2021-12-13 20:44:33.508486270 +0100
+++ /var/tmp/diff_new_pack.fRlN0P/_new  2021-12-13 20:44:33.512486270 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5Notifications5
-%define _tar_path 5.88
+%define _tar_path 5.89
 # 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: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           knotifications
-Version:        5.88.0
+Version:        5.89.0
 Release:        0
 Summary:        KDE Desktop notifications
 License:        LGPL-2.1-or-later


++++++ knotifications-5.88.0.tar.xz -> knotifications-5.89.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.88.0/CMakeLists.txt 
new/knotifications-5.89.0/CMakeLists.txt
--- old/knotifications-5.88.0/CMakeLists.txt    2021-11-06 14:22:45.000000000 
+0100
+++ new/knotifications-5.89.0/CMakeLists.txt    2021-12-04 19:40:28.000000000 
+0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.88.0") # handled by release scripts
-set(KF_DEP_VERSION "5.87.0") # handled by release scripts
+set(KF_VERSION "5.89.0") # handled by release scripts
+set(KF_DEP_VERSION "5.89.0") # handled by release scripts
 project(KNotifications VERSION ${KF_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.87.0  NO_MODULE)
+find_package(ECM 5.89.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-5.88.0/examples/notificationtester.qml 
new/knotifications-5.89.0/examples/notificationtester.qml
--- old/knotifications-5.88.0/examples/notificationtester.qml   2021-11-06 
14:22:45.000000000 +0100
+++ new/knotifications-5.89.0/examples/notificationtester.qml   2021-12-04 
19:40:28.000000000 +0100
@@ -8,7 +8,7 @@
 import QtQuick 2.0
 
 import QtQuick.Window 2.14
-import QtQuick.Controls 2.10
+import QtQuick.Controls 2.14
 import QtQuick.Layouts 1.11
 
 import org.kde.notification 1.0
@@ -42,7 +42,7 @@
             defaultAction: "Default Action"
             actions: ["Action 1", "Action 2", "Action 3"]
             flags: (persistentFlag.checked ? Notification.Persistent : 
Notification.CloseOnTimeout) | (skipGroupingFlag ? Notification.SkipGrouping : 
0)
-            urgency: Notification.DefaultUrgency
+            urgency: urgencyCombo.currentValue
 
             onClosed: log.append("Notification closed.")
             onDefaultActivated: log.append("Default action activated.")
@@ -89,10 +89,10 @@
             ListElement { name: "Critical"; value: 
Notification.CriticalUrgency }
         }
         ComboBox {
+            id: urgencyCombo
             model: urgencyModel
             textRole: "name"
             valueRole: "value"
-            onCurrentValueChanged: basicNotification.urgency = currentValue
         }
 
         RowLayout {
@@ -112,6 +112,7 @@
             eventId: "notification"
             title: titleField.text
             text: textField.text
+            urgency: urgencyCombo.currentValue
             replyAction {
                 label: "Reply"
                 placeholderText: "Reply to chat group..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.88.0/po/hsb/knotifications5_qt.po 
new/knotifications-5.89.0/po/hsb/knotifications5_qt.po
--- old/knotifications-5.88.0/po/hsb/knotifications5_qt.po      2021-11-06 
14:22:45.000000000 +0100
+++ new/knotifications-5.89.0/po/hsb/knotifications5_qt.po      2021-12-04 
19:40:28.000000000 +0100
@@ -20,7 +20,6 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3;\n"
-"X-Generator: KAider 0.1\n"
 "X-Qt-Contexts: true\n"
 
 #. Job name, e.g. Copying has failed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knotifications-5.88.0/po/zh_CN/knotifications5_qt.po 
new/knotifications-5.89.0/po/zh_CN/knotifications5_qt.po
--- old/knotifications-5.88.0/po/zh_CN/knotifications5_qt.po    2021-11-06 
14:22:45.000000000 +0100
+++ new/knotifications-5.89.0/po/zh_CN/knotifications5_qt.po    2021-12-04 
19:40:28.000000000 +0100
@@ -13,7 +13,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2021-10-29 13:25\n"
+"PO-Revision-Date: 2021-11-30 15:21\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"

Reply via email to