Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ksanecore for openSUSE:Factory 
checked in at 2026-06-08 14:08:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ksanecore (Old)
 and      /work/SRC/openSUSE:Factory/.ksanecore.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ksanecore"

Mon Jun  8 14:08:06 2026 rev:47 rq:1357431 version:26.04.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ksanecore/ksanecore.changes      2026-05-11 
16:51:11.177535513 +0200
+++ /work/SRC/openSUSE:Factory/.ksanecore.new.2375/ksanecore.changes    
2026-06-08 14:10:01.587010694 +0200
@@ -1,0 +2,10 @@
+Thu Jun  4 08:44:19 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.04.2
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/26.04.2/
+- Changes since 26.04.1:
+  * Fix crash on skanlite startup (kde#517465)
+
+-------------------------------------------------------------------

Old:
----
  ksanecore-26.04.1.tar.xz
  ksanecore-26.04.1.tar.xz.sig

New:
----
  ksanecore-26.04.2.tar.xz
  ksanecore-26.04.2.tar.xz.sig

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

Other differences:
------------------
++++++ ksanecore.spec ++++++
--- /var/tmp/diff_new_pack.LCLfZ4/_old  2026-06-08 14:10:02.535050001 +0200
+++ /var/tmp/diff_new_pack.LCLfZ4/_new  2026-06-08 14:10:02.535050001 +0200
@@ -21,7 +21,7 @@
 
 %bcond_without released
 Name:           ksanecore
-Version:        26.04.1
+Version:        26.04.2
 Release:        0
 Summary:        Qt interface for the SANE library for scanner hardware
 License:        LGPL-2.1-only OR LGPL-3.0-only


++++++ ksanecore-26.04.1.tar.xz -> ksanecore-26.04.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-26.04.1/CMakeLists.txt 
new/ksanecore-26.04.2/CMakeLists.txt
--- old/ksanecore-26.04.1/CMakeLists.txt        2026-05-04 09:17:35.000000000 
+0200
+++ new/ksanecore-26.04.2/CMakeLists.txt        2026-05-30 17:32:47.000000000 
+0200
@@ -7,7 +7,7 @@
 # KDE Applications version, managed by release script.
 set(RELEASE_SERVICE_VERSION_MAJOR "26")
 set(RELEASE_SERVICE_VERSION_MINOR "04")
-set(RELEASE_SERVICE_VERSION_MICRO "1")
+set(RELEASE_SERVICE_VERSION_MICRO "2")
 set(RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 
 project(KSaneCore VERSION ${RELEASE_SERVICE_VERSION})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksanecore-26.04.1/src/interface.cpp 
new/ksanecore-26.04.2/src/interface.cpp
--- old/ksanecore-26.04.1/src/interface.cpp     2026-05-04 09:17:35.000000000 
+0200
+++ new/ksanecore-26.04.2/src/interface.cpp     2026-05-30 17:32:47.000000000 
+0200
@@ -429,7 +429,7 @@
     Option *resolutionOption = getOption(ResolutionOption);
 
     // Priorize source option
-    if (sourceOption != nullptr) {
+    if (sourceOption) {
         auto it = optionMapCopy.find(sourceOption->name());
         if (it != optionMapCopy.end() && sourceOption->setValue(it.value())) {
             ret++;
@@ -438,7 +438,7 @@
     }
 
     // Priorize mode option
-    if (modeOption != nullptr) {
+    if (modeOption) {
         auto it = optionMapCopy.find(modeOption->name());
         if (it != optionMapCopy.end() && modeOption->setValue(it.value())) {
             ret++;
@@ -448,7 +448,7 @@
 
     // Get iterator to resolution option, but do not apply value
     QString value;
-    if (resolutionOption != nullptr) {
+    if (resolutionOption) {
         auto it = optionMapCopy.find(resolutionOption->name());
         if (it != optionMapCopy.end()) {
             value = it.value();
@@ -466,7 +466,7 @@
 
     // Apply resolution value at the latest, as this option is likely
     // reset to a default value by SANE when setting other options
-    if (resolutionOption->setValue(value)) {
+    if (resolutionOption && resolutionOption->setValue(value)) {
         ret++;
     }
 

Reply via email to