Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kactivitymanagerd for
openSUSE:Factory checked in at 2023-09-14 16:24:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivitymanagerd (Old)
and /work/SRC/openSUSE:Factory/.kactivitymanagerd.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kactivitymanagerd"
Thu Sep 14 16:24:24 2023 rev:137 rq:1110703 version:5.27.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivitymanagerd/kactivitymanagerd.changes
2023-08-02 16:49:03.416844127 +0200
+++
/work/SRC/openSUSE:Factory/.kactivitymanagerd.new.1766/kactivitymanagerd.changes
2023-09-14 16:24:41.456492915 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 11:22:20 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.27.8
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.27.8
+- Changes since 5.27.7:
+ * plugins/sqlite: Skipping insert/update when m_blockAll or
m_whatToRemember==NoApplications (kde#397487)
+
+-------------------------------------------------------------------
Old:
----
kactivitymanagerd-5.27.7.tar.xz
kactivitymanagerd-5.27.7.tar.xz.sig
New:
----
kactivitymanagerd-5.27.8.tar.xz
kactivitymanagerd-5.27.8.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kactivitymanagerd.spec ++++++
--- /var/tmp/diff_new_pack.dYnoPb/_old 2023-09-14 16:24:42.760539501 +0200
+++ /var/tmp/diff_new_pack.dYnoPb/_new 2023-09-14 16:24:42.760539501 +0200
@@ -21,7 +21,7 @@
%bcond_without released
Name: kactivitymanagerd
-Version: 5.27.7
+Version: 5.27.8
Release: 0
Summary: KDE Plasma Activities support
License: GPL-2.0-or-later
++++++ kactivitymanagerd-5.27.7.tar.xz -> kactivitymanagerd-5.27.8.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kactivitymanagerd-5.27.7/po/zh_CN/kactivities5.po
new/kactivitymanagerd-5.27.8/po/zh_CN/kactivities5.po
--- old/kactivitymanagerd-5.27.7/po/zh_CN/kactivities5.po 2023-08-01
11:24:46.000000000 +0200
+++ new/kactivitymanagerd-5.27.8/po/zh_CN/kactivities5.po 2023-09-12
12:30:28.000000000 +0200
@@ -3,7 +3,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2022-09-28 00:51+0000\n"
-"PO-Revision-Date: 2023-07-30 07:12\n"
+"PO-Revision-Date: 2023-09-02 02:59\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kactivitymanagerd-5.27.7/src/service/plugins/sqlite/StatsPlugin.cpp
new/kactivitymanagerd-5.27.8/src/service/plugins/sqlite/StatsPlugin.cpp
--- old/kactivitymanagerd-5.27.7/src/service/plugins/sqlite/StatsPlugin.cpp
2023-08-01 11:24:46.000000000 +0200
+++ new/kactivitymanagerd-5.27.8/src/service/plugins/sqlite/StatsPlugin.cpp
2023-09-12 12:30:28.000000000 +0200
@@ -243,6 +243,10 @@
void StatsPlugin::saveResourceTitle(const QString &uri, const QString &title,
bool autoTitle)
{
+ if (m_blockAll || m_whatToRemember == NoApplications) {
+ return;
+ }
+
insertResourceInfo(uri);
DATABASE_TRANSACTION(*resourcesDatabase());
@@ -268,6 +272,10 @@
void StatsPlugin::saveResourceMimetype(const QString &uri, const QString
&mimetype, bool autoMimetype)
{
+ if (m_blockAll || m_whatToRemember == NoApplications) {
+ return;
+ }
+
insertResourceInfo(uri);
DATABASE_TRANSACTION(*resourcesDatabase());