Hello community,

here is the log from the commit of package kwindowsystem for openSUSE:Factory 
checked in at 2020-05-11 13:30:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kwindowsystem (Old)
 and      /work/SRC/openSUSE:Factory/.kwindowsystem.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kwindowsystem"

Mon May 11 13:30:34 2020 rev:82 rq:802120 version:5.70.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kwindowsystem/kwindowsystem.changes      
2020-04-15 20:04:52.394038925 +0200
+++ /work/SRC/openSUSE:Factory/.kwindowsystem.new.2738/kwindowsystem.changes    
2020-05-11 13:32:39.604024127 +0200
@@ -1,0 +2,10 @@
+Sun May  3 09:40:16 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- Changes since 5.69.0:
+  * Print meaningful warning when there is no QGuiApplication
+
+-------------------------------------------------------------------

Old:
----
  kwindowsystem-5.69.0.tar.xz
  kwindowsystem-5.69.0.tar.xz.sig

New:
----
  kwindowsystem-5.70.0.tar.xz
  kwindowsystem-5.70.0.tar.xz.sig

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

Other differences:
------------------
++++++ kwindowsystem.spec ++++++
--- /var/tmp/diff_new_pack.pUvMUT/_old  2020-05-11 13:32:41.596028303 +0200
+++ /var/tmp/diff_new_pack.pUvMUT/_new  2020-05-11 13:32:41.600028311 +0200
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5WindowSystem5
-%define _tar_path 5.69
+%define _tar_path 5.70
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           kwindowsystem
-Version:        5.69.0
+Version:        5.70.0
 Release:        0
 Summary:        KDE Access to window manager
 License:        LGPL-2.1-or-later


++++++ kwindowsystem-5.69.0.tar.xz -> kwindowsystem-5.70.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.69.0/CMakeLists.txt 
new/kwindowsystem-5.70.0/CMakeLists.txt
--- old/kwindowsystem-5.69.0/CMakeLists.txt     2020-04-05 01:06:07.000000000 
+0200
+++ new/kwindowsystem-5.70.0/CMakeLists.txt     2020-05-03 00:24:19.000000000 
+0200
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
 project(KWindowSystem VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.69.0  NO_MODULE)
+find_package(ECM 5.70.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/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/kwindowsystem-5.69.0/src/netwm_def.h 
new/kwindowsystem-5.70.0/src/netwm_def.h
--- old/kwindowsystem-5.69.0/src/netwm_def.h    2020-04-05 01:06:07.000000000 
+0200
+++ new/kwindowsystem-5.70.0/src/netwm_def.h    2020-05-03 00:24:19.000000000 
+0200
@@ -373,6 +373,7 @@
     /**
         Values for WindowType when they should be OR'ed together, e.g.
         for the properties argument of the NETRootInfo constructor.
+        @see WindowTypes
     **/
     enum WindowTypeMask {
         NormalMask   = 1u << 0, ///< @see Normal
@@ -395,6 +396,9 @@
         CriticalNotificationMask = 1u << 17, ///< NON STANDARD @see 
CriticalNotification @since 5.58
         AllTypesMask     = 0U - 1 ///< All window types.
     };
+    /**
+     * Stores a combination of #WindowTypeMask values.
+     */
     Q_DECLARE_FLAGS(WindowTypes, WindowTypeMask)
 
     /**
@@ -416,6 +420,8 @@
 
        Note that KeepAbove (StaysOnTop) and KeepBelow are meant as user 
preference and
        applications should avoid setting these states themselves.
+
+       @see States
     **/
 
     enum State {
@@ -499,6 +505,9 @@
          **/
         Focused = 1u << 13,
     };
+    /**
+     * Stores a combination of #State values.
+     */
     Q_DECLARE_FLAGS(States, State)
 
     /**
@@ -560,6 +569,7 @@
 
     /**
       Actions that can be done with a window (_NET_WM_ALLOWED_ACTIONS).
+      @see Actions
     **/
     enum Action {
         ActionMove           = 1u << 0,
@@ -574,6 +584,9 @@
         ActionChangeDesktop  = 1u << 8,
         ActionClose          = 1u << 9
     };
+    /**
+     * Stores a combination of #Action values.
+     */
     Q_DECLARE_FLAGS(Actions, Action)
 
     /**
@@ -619,6 +632,7 @@
 
        @li XAWMState
 
+       @see Properties
     **/
 
     enum Property {
@@ -660,6 +674,9 @@
         WMGeometry            = 1u << 31,
         WMAllProperties       = ~0u
     };
+    /**
+     * Stores a combination of #Property values.
+     */
     Q_DECLARE_FLAGS(Properties, Property)
 
     /**
@@ -693,6 +710,8 @@
         @li WM2OpaqueRegion
         @li WM2DesktopFileName the base name of the desktop file name or the 
full path to the desktop file
         @li WM2GTKFrameExtents extents of the shadow drawn by the client
+
+        @see Properties2
     **/
     enum Property2 {
         WM2UserTime            = 1u << 0,
@@ -728,6 +747,9 @@
         WM2AppMenuObjectPath   = 1u << 29, // NOT STANDARD @since 5.69
         WM2AllProperties       = ~0u
     };
+    /**
+     * Stores a combination of #Property2 values.
+     */
     Q_DECLARE_FLAGS(Properties2, Property2)
 
     /**
@@ -777,6 +799,7 @@
      * Protocols supported by the client.
      * See ICCCM 4.1.2.7.
      *
+     * @see Protocols
      * @since 5.3
      **/
     enum Protocol {
@@ -787,6 +810,9 @@
         SyncRequestProtocol = 1 << 3, ///< _NET_WM_SYNC_REQUEST from EWMH
         ContextHelpProtocol = 1 << 4 ///< _NET_WM_CONTEXT_HELP, NON STANDARD!
     };
+    /**
+     * Stores a combination of #Protocol values.
+     */
     Q_DECLARE_FLAGS(Protocols, Protocol)
 
     /**
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kwindowsystem-5.69.0/src/pluginwrapper.cpp 
new/kwindowsystem-5.70.0/src/pluginwrapper.cpp
--- old/kwindowsystem-5.69.0/src/pluginwrapper.cpp      2020-04-05 
01:06:07.000000000 +0200
+++ new/kwindowsystem-5.70.0/src/pluginwrapper.cpp      2020-05-03 
00:24:19.000000000 +0200
@@ -40,6 +40,11 @@
 
 static KWindowSystemPluginInterface *loadPlugin()
 {
+    if (!qobject_cast<QGuiApplication *>(QCoreApplication::instance())) {
+        qCWarning(LOG_KWINDOWSYSTEM) << "Cannot use KWindowSystem without a 
QGuiApplication";
+        return nullptr;
+    }
+
     QString platformName = QGuiApplication::platformName();
     if (platformName == QLatin1String("flatpak")) {
         // here we cannot know what is the actual windowing system, let's try 
it's env variable


Reply via email to