Hello community,

here is the log from the commit of package kactivities5 for openSUSE:Factory 
checked in at 2017-08-24 17:53:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities5 (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities5"

Thu Aug 24 17:53:23 2017 rev:44 rq:516654 version:5.37.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities5/kactivities5.changes        
2017-07-17 10:22:34.544272157 +0200
+++ /work/SRC/openSUSE:Factory/.kactivities5.new/kactivities5.changes   
2017-08-24 17:55:39.584867665 +0200
@@ -1,0 +2,10 @@
+Sat Aug 12 09:23:15 UTC 2017 - [email protected]
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * emit runningActivityListChanged on activity creation
+
+-------------------------------------------------------------------

Old:
----
  kactivities-5.36.0.tar.xz

New:
----
  kactivities-5.37.0.tar.xz

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

Other differences:
------------------
++++++ kactivities5.spec ++++++
--- /var/tmp/diff_new_pack.H14Ovx/_old  2017-08-24 17:55:40.084797250 +0200
+++ /var/tmp/diff_new_pack.H14Ovx/_new  2017-08-24 17:55:40.088796687 +0200
@@ -17,9 +17,9 @@
 
 
 %define lname   libKF5Activities5
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:           kactivities5
-Version:        5.36.0
+Version:        5.37.0
 Release:        0
 %define kf5_version %{version}
 Summary:        KDE Plasma Activities support

++++++ kactivities-5.36.0.tar.xz -> kactivities-5.37.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.36.0/CMakeLists.txt 
new/kactivities-5.37.0/CMakeLists.txt
--- old/kactivities-5.36.0/CMakeLists.txt       2017-06-30 12:16:27.000000000 
+0200
+++ new/kactivities-5.37.0/CMakeLists.txt       2017-08-06 18:26:14.000000000 
+0200
@@ -3,14 +3,14 @@
 cmake_minimum_required(VERSION 3.0)
 
 # KDE Frameworks
-set(KF5_VERSION "5.36.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.36.0") # handled by release scripts
+set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.37.0") # handled by release scripts
 project (KActivities VERSION ${KF5_VERSION})
 
 option (KACTIVITIES_LIBRARY_ONLY "If true, compiles only the KActivities 
library, without the QML imports." OFF)
 option (KACTIVITIES_ENABLE_EXCEPTIONS "If you have Boost 1.53, you need to 
build KActivities with exceptions enabled. This is UNTESTED and EXPERIMENTAL!" 
OFF)
 
-set (REQUIRED_QT_VERSION 5.6.0)
+set (REQUIRED_QT_VERSION 5.7.0)
 
 # We don't build in-source
 if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
@@ -24,7 +24,7 @@
 
 # Extra CMake stuff
 include(FeatureSummary)
-find_package(ECM 5.36.0  NO_MODULE)
+find_package(ECM 5.37.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-5.36.0/src/lib/activitiescache_p.cpp 
new/kactivities-5.37.0/src/lib/activitiescache_p.cpp
--- old/kactivities-5.36.0/src/lib/activitiescache_p.cpp        2017-06-30 
12:16:27.000000000 +0200
+++ new/kactivities-5.37.0/src/lib/activitiescache_p.cpp        2017-08-06 
18:26:14.000000000 +0200
@@ -239,10 +239,11 @@
     // Are we updating an existing activity, or adding a new one?
     const auto iter = find(info.id);
     const auto present = iter != m_activities.end();
-
+    bool runningChanged = true;
     // If there is an activity with the specified id,
     // we are going to remove it, temporarily.
     if (present) {
+        runningChanged = (*iter).state != info.state;
         m_activities.erase(iter);
     }
 
@@ -257,6 +258,9 @@
     } else {
         emit activityAdded(info.id);
         emit activityListChanged();
+        if (runningChanged) {
+            emit runningActivityListChanged();
+        }
     }
 }
 


Reply via email to