Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkscreen2 for openSUSE:Factory 
checked in at 2023-01-06 17:04:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkscreen2 (Old)
 and      /work/SRC/openSUSE:Factory/.libkscreen2.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkscreen2"

Fri Jan  6 17:04:07 2023 rev:150 rq:1056027 version:5.26.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkscreen2/libkscreen2.changes  2022-11-30 
14:59:47.245317410 +0100
+++ /work/SRC/openSUSE:Factory/.libkscreen2.new.1563/libkscreen2.changes        
2023-01-06 17:04:16.199748144 +0100
@@ -1,0 +2,10 @@
+Wed Jan  4 14:06:20 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.26.5
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma/5/5.26.5
+- Changes since 5.26.4:
+  * backends/kwayland: use the connector name
+
+-------------------------------------------------------------------

Old:
----
  libkscreen-5.26.4.tar.xz
  libkscreen-5.26.4.tar.xz.sig

New:
----
  libkscreen-5.26.5.tar.xz
  libkscreen-5.26.5.tar.xz.sig

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

Other differences:
------------------
++++++ libkscreen2.spec ++++++
--- /var/tmp/diff_new_pack.n707jQ/_old  2023-01-06 17:04:17.783757040 +0100
+++ /var/tmp/diff_new_pack.n707jQ/_new  2023-01-06 17:04:17.787757062 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libkscreen2
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %bcond_without released
 %define lname   libKF5Screen7
 Name:           libkscreen2
-Version:        5.26.4
+Version:        5.26.5
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}

++++++ libkscreen-5.26.4.tar.xz -> libkscreen-5.26.5.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkscreen-5.26.4/CMakeLists.txt 
new/libkscreen-5.26.5/CMakeLists.txt
--- old/libkscreen-5.26.4/CMakeLists.txt        2022-11-29 12:33:38.000000000 
+0100
+++ new/libkscreen-5.26.5/CMakeLists.txt        2023-01-03 19:10:40.000000000 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(libkscreen)
-set(PROJECT_VERSION "5.26.4")
+set(PROJECT_VERSION "5.26.5")
 
 set(QT_MIN_VERSION "5.15.2")
 set(KF5_MIN_VERSION "5.98.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkscreen-5.26.4/backends/kwayland/waylandconfig.cpp 
new/libkscreen-5.26.5/backends/kwayland/waylandconfig.cpp
--- old/libkscreen-5.26.4/backends/kwayland/waylandconfig.cpp   2022-11-29 
12:33:38.000000000 +0100
+++ new/libkscreen-5.26.5/backends/kwayland/waylandconfig.cpp   2023-01-03 
19:10:40.000000000 +0100
@@ -134,8 +134,8 @@
                 }
 
                 m_primaryOutputName = name;
-                for (auto output : qAsConst(m_outputMap)) {
-                    output->setPrimary(output->outputName() == name);
+                for (auto output : std::as_const(m_outputMap)) {
+                    output->setPrimary(output->name() == name);
                 }
                 if (!m_blockSignals) {
                     Q_EMIT configChanged();
@@ -174,7 +174,7 @@
         QObject::disconnect(*connection);
         delete connection;
 
-        device->setPrimary(m_primaryOutputName == device->outputName());
+        device->setPrimary(m_primaryOutputName == device->name());
         m_initializingOutputs.removeOne(device);
         m_outputMap.insert(device->id(), device);
         checkInitialized();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkscreen-5.26.4/backends/kwayland/waylandoutputdevice.cpp 
new/libkscreen-5.26.5/backends/kwayland/waylandoutputdevice.cpp
--- old/libkscreen-5.26.4/backends/kwayland/waylandoutputdevice.cpp     
2022-11-29 12:33:38.000000000 +0100
+++ new/libkscreen-5.26.5/backends/kwayland/waylandoutputdevice.cpp     
2023-01-03 19:10:40.000000000 +0100
@@ -273,11 +273,6 @@
 
 QString WaylandOutputDevice::name() const
 {
-    return QStringLiteral("%1 %2").arg(m_manufacturer, m_model);
-}
-
-QString WaylandOutputDevice::outputName() const
-{
     return m_outputName;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libkscreen-5.26.4/backends/kwayland/waylandoutputdevice.h 
new/libkscreen-5.26.5/backends/kwayland/waylandoutputdevice.h
--- old/libkscreen-5.26.4/backends/kwayland/waylandoutputdevice.h       
2022-11-29 12:33:38.000000000 +0100
+++ new/libkscreen-5.26.5/backends/kwayland/waylandoutputdevice.h       
2023-01-03 19:10:40.000000000 +0100
@@ -32,7 +32,6 @@
     bool enabled() const;
     int id() const;
     QString name() const;
-    QString outputName() const;
     QString model() const;
     QString manufacturer() const;
     qreal scale() const;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkscreen-5.26.4/poqm/zh_CN/libkscreen5_qt.po 
new/libkscreen-5.26.5/poqm/zh_CN/libkscreen5_qt.po
--- old/libkscreen-5.26.4/poqm/zh_CN/libkscreen5_qt.po  2022-11-29 
12:33:58.000000000 +0100
+++ new/libkscreen-5.26.5/poqm/zh_CN/libkscreen5_qt.po  2023-01-03 
19:11:01.000000000 +0100
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
-"PO-Revision-Date: 2022-11-19 14:51\n"
+"PO-Revision-Date: 2023-01-02 07:17\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"

Reply via email to