Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ksystemstats5 for openSUSE:Factory 
checked in at 2021-12-02 22:29:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ksystemstats5 (Old)
 and      /work/SRC/openSUSE:Factory/.ksystemstats5.new.31177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ksystemstats5"

Thu Dec  2 22:29:44 2021 rev:11 rq:934800 version:5.23.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/ksystemstats5/ksystemstats5.changes      
2021-11-17 01:12:59.978143846 +0100
+++ /work/SRC/openSUSE:Factory/.ksystemstats5.new.31177/ksystemstats5.changes   
2021-12-02 22:29:57.254747625 +0100
@@ -1,0 +2,10 @@
+Tue Nov 30 14:59:20 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.23.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma/5/5.23.4
+- Changes since 5.23.3:
+  * Don't update disks if no one is listening (kde#445039)
+
+-------------------------------------------------------------------

Old:
----
  ksystemstats-5.23.3.tar.xz
  ksystemstats-5.23.3.tar.xz.sig

New:
----
  ksystemstats-5.23.4.tar.xz
  ksystemstats-5.23.4.tar.xz.sig

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

Other differences:
------------------
++++++ ksystemstats5.spec ++++++
--- /var/tmp/diff_new_pack.jYWc8C/_old  2021-12-02 22:29:57.786745437 +0100
+++ /var/tmp/diff_new_pack.jYWc8C/_new  2021-12-02 22:29:57.786745437 +0100
@@ -19,7 +19,7 @@
 
 %bcond_without lang
 Name:           ksystemstats5
-Version:        5.23.3
+Version:        5.23.4
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}
@@ -30,9 +30,9 @@
 License:        BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later
 Group:          System/GUI/KDE
 URL:            http://www.kde.org
-Source:         ksystemstats-%{version}.tar.xz
+Source:         
https://download.kde.org/stable/plasma/%{version}/ksystemstats-%{version}.tar.xz
 %if %{with lang}
-Source1:        ksystemstats-%{version}.tar.xz.sig
+Source1:        
https://download.kde.org/stable/plasma/%{version}/ksystemstats-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  cmake >= 3.16

++++++ ksystemstats-5.23.3.tar.xz -> ksystemstats-5.23.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemstats-5.23.3/CMakeLists.txt 
new/ksystemstats-5.23.4/CMakeLists.txt
--- old/ksystemstats-5.23.3/CMakeLists.txt      2021-11-09 13:31:54.000000000 
+0100
+++ new/ksystemstats-5.23.4/CMakeLists.txt      2021-11-30 13:56:35.000000000 
+0100
@@ -4,7 +4,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(ksystemstats)
-set(PROJECT_VERSION "5.23.3")
+set(PROJECT_VERSION "5.23.4")
 
 set(QT_MIN_VERSION "5.15.0")
 set(KF5_MIN_VERSION "5.86")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemstats-5.23.3/plugins/disks/disks.cpp 
new/ksystemstats-5.23.4/plugins/disks/disks.cpp
--- old/ksystemstats-5.23.3/plugins/disks/disks.cpp     2021-11-09 
13:31:33.000000000 +0100
+++ new/ksystemstats-5.23.4/plugins/disks/disks.cpp     2021-11-30 
13:56:15.000000000 +0100
@@ -280,9 +280,18 @@
 
 void DisksPlugin::update()
 {
+    bool anySubscribed = false;
     for (auto volume : m_volumesByDevice) {
-        volume->update();
+        if (volume->isSubscribed()) {
+            anySubscribed = true;
+            volume->update();
+        }
     }
+
+    if (!anySubscribed) {
+        return;
+    }
+
     qint64 elapsed = 0;
     if (m_elapsedTimer.isValid()) {
         elapsed = m_elapsedTimer.restart();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemstats-5.23.3/po/fi/ksystemstats_plugins.po 
new/ksystemstats-5.23.4/po/fi/ksystemstats_plugins.po
--- old/ksystemstats-5.23.3/po/fi/ksystemstats_plugins.po       2021-11-09 
13:31:39.000000000 +0100
+++ new/ksystemstats-5.23.4/po/fi/ksystemstats_plugins.po       2021-11-30 
13:56:21.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: ksysguard\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-04 00:18+0000\n"
-"PO-Revision-Date: 2021-07-02 13:25+0300\n"
+"PO-Revision-Date: 2021-11-10 18:49+0200\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
 "Language: fi\n"
@@ -171,61 +171,61 @@
 #, kde-format
 msgctxt "@title"
 msgid "Load Averages"
-msgstr ""
+msgstr "Keskiarvokuorma"
 
 #: cpu/loadaverages.cpp:13
 #, kde-format
 msgctxt "@title"
 msgid "Load average (1 minute)"
-msgstr ""
+msgstr "Keskiarvokuorma (1 min)"
 
 #: cpu/loadaverages.cpp:14
 #, kde-format
 msgctxt "@title"
 msgid "Load average (5 minutes)"
-msgstr ""
+msgstr "Keskiarvokuorma (5 min)"
 
 #: cpu/loadaverages.cpp:15
 #, kde-format
 msgctxt "@title"
 msgid "Load average (15 minute)"
-msgstr ""
+msgstr "Keskiarvokuorma (15 min)"
 
 #: cpu/loadaverages.cpp:17
 #, kde-format
 msgctxt "@title,  Short for 'Load average (1 minute)"
 msgid "Load average (1m)"
-msgstr ""
+msgstr "Keskiarvokuorma (1 min)"
 
 #: cpu/loadaverages.cpp:18
 #, kde-format
 msgctxt "@title,  Short for 'Load average (5 minutes)"
 msgid "Load average (5m)"
-msgstr ""
+msgstr "Keskiarvokuorma (5 min)"
 
 #: cpu/loadaverages.cpp:19
 #, kde-format
 msgctxt "@title,  Short for 'Load average (15 minutes)"
 msgid "Load average (15m)"
-msgstr ""
+msgstr "Keskiarvokuorma (15 min)"
 
 #: cpu/loadaverages.cpp:21
 #, kde-format
 msgctxt "@info"
 msgid "Number of jobs in the run queue averaged over 1 minute"
-msgstr ""
+msgstr "Suoritusjonojen t??iden m????r?? 1 min ajalle keskiarvoistettuna"
 
 #: cpu/loadaverages.cpp:22
 #, kde-format
 msgctxt "@info"
 msgid "Number of jobs in the run queue averaged over 5 minutes"
-msgstr ""
+msgstr "Suoritusjonojen t??iden m????r?? 5 min ajalle keskiarvoistettuna"
 
 #: cpu/loadaverages.cpp:23
 #, kde-format
 msgctxt "@info"
 msgid "Number of jobs in the run queue averaged over 15 minutes"
-msgstr ""
+msgstr "Suoritusjonojen t??iden m????r?? 15 min ajalle keskiarvoistettuna"
 
 #: disks/disks.cpp:72 disks/disks.cpp:235
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemstats-5.23.3/po/sk/ksystemstats_plugins.po 
new/ksystemstats-5.23.4/po/sk/ksystemstats_plugins.po
--- old/ksystemstats-5.23.3/po/sk/ksystemstats_plugins.po       2021-11-09 
13:31:50.000000000 +0100
+++ new/ksystemstats-5.23.4/po/sk/ksystemstats_plugins.po       2021-11-30 
13:56:31.000000000 +0100
@@ -6,14 +6,14 @@
 "Project-Id-Version: ksysguard_plugins_global\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-04 00:18+0000\n"
-"PO-Revision-Date: 2021-05-29 19:44+0200\n"
-"Last-Translator: Matej Mrenica <matejm98m...@gmail.com>\n"
+"PO-Revision-Date: 2021-11-19 15:11+0100\n"
+"Last-Translator: Du??an Kazik <prescot...@gmail.com>\n"
 "Language-Team: Slovak <kde-i18n-...@kde.org>\n"
 "Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 21.04.1\n"
+"X-Generator: Poedit 3.0\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #: cpu/cpu.cpp:22 disks/disks.cpp:68 disks/disks.cpp:69 gpu/GpuDevice.cpp:20
@@ -87,7 +87,7 @@
 #, kde-format
 msgctxt "@info"
 msgid "Current frequency of the CPU"
-msgstr "Aktu??lna frekvencia CPU"
+msgstr "Aktu??lna frekvencia procesora"
 
 #: cpu/cpu.cpp:86
 #, kde-format
@@ -111,7 +111,7 @@
 #, kde-format
 msgctxt "@title"
 msgid "Number of CPUs"
-msgstr "Po??et CPU"
+msgstr "Po??et procesorov"
 
 #: cpu/cpu.cpp:116
 #, kde-format
@@ -123,7 +123,7 @@
 #, kde-format
 msgctxt "@info"
 msgid "Number of physical CPUs installed in the system"
-msgstr "Po??et fyzick??ch CPU nain??talovan??ch v syst??me"
+msgstr "Po??et fyzick??ch procesorov nain??talovan??ch v syst??me"
 
 #: cpu/cpu.cpp:119
 #, kde-format
@@ -141,7 +141,7 @@
 #, kde-format
 msgctxt "@info"
 msgid "Number of CPU cores across all physical CPUS"
-msgstr "Po??et CPU jadier spolu na v??etk??ch fyzick??ch CPU"
+msgstr "Po??et jadier procesorov vo v??etk??ch fyzick??ch procesoroch"
 
 #: cpu/cpuplugin.cpp:19
 #, kde-format
@@ -152,19 +152,19 @@
 #, kde-format
 msgctxt "@title"
 msgid "CPU %1"
-msgstr "CPU %1"
+msgstr "Procesor ??. %1"
 
 #: cpu/linuxcpuplugin.cpp:73
 #, kde-format
 msgctxt "@title"
 msgid "CPU %1 Core %2"
-msgstr "CPU %1 Jadro %2"
+msgstr "Procesor ??. %1 jadro %2"
 
 #: cpu/linuxcpuplugin.cpp:74
 #, kde-format
 msgctxt "@title"
 msgid "Core %1"
-msgstr "Jadro %1"
+msgstr "Jadro ??. %1"
 
 #: cpu/loadaverages.cpp:12
 #, kde-format
@@ -230,7 +230,7 @@
 #, kde-format
 msgctxt "@title"
 msgid "Total Space"
-msgstr "Celkov?? kapacita"
+msgstr "Celkov?? miesto"
 
 #: disks/disks.cpp:74 disks/disks.cpp:236
 #, kde-format
@@ -242,19 +242,19 @@
 #, kde-format
 msgctxt "@title"
 msgid "Used Space"
-msgstr "Vyu??it?? kapacita"
+msgstr "Vyu??it?? miesto"
 
 #: disks/disks.cpp:80 disks/disks.cpp:249
 #, kde-format
 msgctxt "@title Short for 'Used Space'"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: disks/disks.cpp:85 disks/disks.cpp:241
 #, kde-format
 msgctxt "@title"
 msgid "Free Space"
-msgstr "Vo??n?? kapacita"
+msgstr "Vo??n?? miesto"
 
 #: disks/disks.cpp:87 disks/disks.cpp:242
 #, kde-format
@@ -290,13 +290,13 @@
 #, kde-format
 msgctxt "@title"
 msgid "Percentage Used"
-msgstr "Percento vyu??it??"
+msgstr "Percento vyu??it??ho"
 
 #: disks/disks.cpp:108 disks/disks.cpp:267
 #, kde-format
 msgctxt "@title"
 msgid "Percentage Free"
-msgstr "Percento vo??n??"
+msgstr "Percento vo??n??ho"
 
 #: disks/disks.cpp:141
 #, kde-format
@@ -319,7 +319,7 @@
 #, kde-format
 msgctxt "@title, Short for `Percentage Used"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: gpu/AllGpus.cpp:14
 #, kde-format
@@ -361,7 +361,7 @@
 #, kde-format
 msgctxt "@title Short for 'All GPUs Used Memory'"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: gpu/GpuDevice.cpp:24
 #, kde-format
@@ -391,7 +391,7 @@
 #, kde-format
 msgctxt "@title Short for Video Memory Used"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: gpu/GpuDevice.cpp:41
 #, kde-format
@@ -462,7 +462,7 @@
 #, kde-format
 msgctxt "@title, Short for 'Used Physical Memory'"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: memory/backend.cpp:49
 #, kde-format
@@ -510,7 +510,7 @@
 #, kde-format
 msgctxt "@title"
 msgid "Cache Memory"
-msgstr "Do??asn?? pam????"
+msgstr "Vyrovn??vacia pam????"
 
 #: memory/backend.cpp:72
 #, kde-format
@@ -522,7 +522,7 @@
 #, kde-format
 msgctxt "@title"
 msgid "Cache Memory Percentage"
-msgstr "Percento pam??te cache"
+msgstr "Percento vyrovn??vacej pam??te"
 
 #: memory/backend.cpp:80
 #, kde-format
@@ -570,7 +570,7 @@
 #, kde-format
 msgctxt "@title, Short for 'Used Swap Memory'"
 msgid "Used"
-msgstr "Pou??it??"
+msgstr "Vyu??it??"
 
 #: memory/backend.cpp:100
 #, kde-format
@@ -720,19 +720,19 @@
 #, kde-format
 msgctxt "@title"
 msgid "Kernel"
-msgstr "Kernel"
+msgstr "Jadro"
 
 #: osinfo/osinfo.cpp:109
 #, kde-format
 msgctxt "@title"
 msgid "Kernel Name"
-msgstr "N??zov kernelu"
+msgstr "N??zov jadra"
 
 #: osinfo/osinfo.cpp:110
 #, kde-format
 msgctxt "@title"
 msgid "Kernel Version"
-msgstr "Verzia kernelu"
+msgstr "Verzia jadra"
 
 #: osinfo/osinfo.cpp:111
 #, kde-format
@@ -744,7 +744,7 @@
 #, kde-format
 msgctxt "@title Kernel Name and Version"
 msgid "Kernel"
-msgstr "Kernel"
+msgstr "Jadro"
 
 #: osinfo/osinfo.cpp:114
 #, kde-format
@@ -756,7 +756,7 @@
 #, kde-format
 msgctxt "@title"
 msgid "Hostname"
-msgstr "Meno hos??a"
+msgstr "N??zov hostite??a"
 
 #: osinfo/osinfo.cpp:116
 #, kde-format
@@ -861,7 +861,7 @@
 #: power/power.cpp:65
 #, kde-format
 msgid "Percentage of the design capacity that the battery can hold"
-msgstr "Percento energie z p??vodnej kapacity, ktor?? dok????e bat??ria 
udr??a??."
+msgstr "Percento energie z p??vodnej kapacity, ktor?? dok????e bat??ria 
udr??a??"
 
 #: power/power.cpp:71
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksystemstats-5.23.3/po/zh_CN/ksystemstats_plugins.po 
new/ksystemstats-5.23.4/po/zh_CN/ksystemstats_plugins.po
--- old/ksystemstats-5.23.3/po/zh_CN/ksystemstats_plugins.po    2021-11-09 
13:31:54.000000000 +0100
+++ new/ksystemstats-5.23.4/po/zh_CN/ksystemstats_plugins.po    2021-11-30 
13:56:34.000000000 +0100
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-09-04 00:18+0000\n"
-"PO-Revision-Date: 2021-11-08 12:08\n"
+"PO-Revision-Date: 2021-11-23 14:32\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"

Reply via email to