Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lxqt-notificationd for 
openSUSE:Factory checked in at 2025-12-05 16:58:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lxqt-notificationd (Old)
 and      /work/SRC/openSUSE:Factory/.lxqt-notificationd.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lxqt-notificationd"

Fri Dec  5 16:58:56 2025 rev:27 rq:1321293 version:2.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/lxqt-notificationd/lxqt-notificationd.changes    
2025-11-06 18:16:46.036454904 +0100
+++ 
/work/SRC/openSUSE:Factory/.lxqt-notificationd.new.1939/lxqt-notificationd.changes
  2025-12-05 16:59:56.012711998 +0100
@@ -1,0 +2,7 @@
+Fri Dec  5 14:49:18 UTC 2025 - Shawn Dunn <[email protected]>
+
+- Update to 2.3.1:
+  * Fixed an old bug that interfered with the time-out after the
+    cursor left the notification window
+
+-------------------------------------------------------------------

Old:
----
  lxqt-notificationd-2.3.0.tar.xz
  lxqt-notificationd-2.3.0.tar.xz.asc

New:
----
  lxqt-notificationd-2.3.1.tar.xz
  lxqt-notificationd-2.3.1.tar.xz.asc

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

Other differences:
------------------
++++++ lxqt-notificationd.spec ++++++
--- /var/tmp/diff_new_pack.qeLCix/_old  2025-12-05 16:59:56.576735566 +0100
+++ /var/tmp/diff_new_pack.qeLCix/_new  2025-12-05 16:59:56.580735734 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           lxqt-notificationd
-Version:        2.3.0
+Version:        2.3.1
 Release:        0
 Summary:        LXQt Notification daemon
 License:        LGPL-2.1-or-later

++++++ lxqt-notificationd-2.3.0.tar.xz -> lxqt-notificationd-2.3.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-2.3.0/CHANGELOG 
new/lxqt-notificationd-2.3.1/CHANGELOG
--- old/lxqt-notificationd-2.3.0/CHANGELOG      2025-11-05 12:53:58.000000000 
+0100
+++ new/lxqt-notificationd-2.3.1/CHANGELOG      2025-12-04 18:53:57.000000000 
+0100
@@ -1,3 +1,7 @@
+lxqt-notificationd-2.3.1 / 2025-12-04
+======================================
+ * Fixed an old bug that interfered with the time-out after the cursor left 
the notification window.
+
 lxqt-notificationd-2.3.0 / 2025-11-05
 ======================================
  * Set the minimum allowed width to 100.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-2.3.0/CMakeLists.txt 
new/lxqt-notificationd-2.3.1/CMakeLists.txt
--- old/lxqt-notificationd-2.3.0/CMakeLists.txt 2025-11-05 12:53:58.000000000 
+0100
+++ new/lxqt-notificationd-2.3.1/CMakeLists.txt 2025-12-04 18:53:57.000000000 
+0100
@@ -30,7 +30,7 @@
 message(STATUS "Building with Qt${Qt6Core_VERSION}")
 
 # Patch Version
-set(LXQT_NOTIFICATIOND_PATCH_VERSION 0)
+set(LXQT_NOTIFICATIOND_PATCH_VERSION 1)
 
 set(LXQT_NOTIFICATIOND_VERSION 
${LXQT_MAJOR_VERSION}.${LXQT_MINOR_VERSION}.${LXQT_NOTIFICATIOND_PATCH_VERSION})
 add_definitions(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-2.3.0/src/notification.cpp 
new/lxqt-notificationd-2.3.1/src/notification.cpp
--- old/lxqt-notificationd-2.3.0/src/notification.cpp   2025-11-05 
12:53:58.000000000 +0100
+++ new/lxqt-notificationd-2.3.1/src/notification.cpp   2025-12-04 
18:53:57.000000000 +0100
@@ -384,7 +384,6 @@
         return;
 
     stop();
-    m_intervalMsec = m_startTime.msecsTo(QDateTime::currentDateTime());
 }
 
 void NotificationTimer::resume()
@@ -392,5 +391,6 @@
     if (isActive())
         return;
 
-    start(m_intervalMsec);
+    m_intervalMsec -= m_startTime.msecsTo(QDateTime::currentDateTime());
+    start(qMax(m_intervalMsec, 1000));
 }

Reply via email to