Hello community,
here is the log from the commit of package qqc2-desktop-style for
openSUSE:Leap:15.2 checked in at 2020-01-22 08:19:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/qqc2-desktop-style (Old)
and /work/SRC/openSUSE:Leap:15.2/.qqc2-desktop-style.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qqc2-desktop-style"
Wed Jan 22 08:19:19 2020 rev:38 rq:764688 version:5.66.0
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/qqc2-desktop-style/qqc2-desktop-style.changes
2020-01-15 15:55:16.599660953 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.qqc2-desktop-style.new.26092/qqc2-desktop-style.changes
2020-01-22 08:19:20.346178065 +0100
@@ -1,0 +2,11 @@
+Sun Jan 5 09:02:28 UTC 2020 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.66.0
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/kde-frameworks-5.66.0.php
+- Changes since 5.65.0:
+ * [ToolTip] Round position
+ * Update size hint when font changes
+
+-------------------------------------------------------------------
Old:
----
qqc2-desktop-style-5.65.0.tar.xz
qqc2-desktop-style-5.65.0.tar.xz.sig
New:
----
qqc2-desktop-style-5.66.0.tar.xz
qqc2-desktop-style-5.66.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ qqc2-desktop-style.spec ++++++
--- /var/tmp/diff_new_pack.BGD4va/_old 2020-01-22 08:19:20.806178313 +0100
+++ /var/tmp/diff_new_pack.BGD4va/_new 2020-01-22 08:19:20.810178315 +0100
@@ -1,7 +1,7 @@
#
# spec file for package qqc2-desktop-style
#
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,11 +16,11 @@
#
-%define _tar_path 5.65
+%define _tar_path 5.66
# Only needed for the package signature condition
%bcond_without lang
Name: qqc2-desktop-style
-Version: 5.65.0
+Version: 5.66.0
Release: 0
Summary: A Qt Quick Controls 2 Style for Desktop UIs
License: GPL-2.0-or-later
++++++ qqc2-desktop-style-5.65.0.tar.xz -> qqc2-desktop-style-5.66.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qqc2-desktop-style-5.65.0/CMakeLists.txt
new/qqc2-desktop-style-5.66.0/CMakeLists.txt
--- old/qqc2-desktop-style-5.65.0/CMakeLists.txt 2019-12-07
20:46:46.000000000 +0100
+++ new/qqc2-desktop-style-5.66.0/CMakeLists.txt 2020-01-04
00:15:37.000000000 +0100
@@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.5)
-set(KF5_VERSION "5.65.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.65.0") # handled by release scripts
+set(KF5_VERSION "5.66.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.66.0") # handled by release scripts
project(qqc2-desktop-style VERSION ${KF5_VERSION})
-set(REQUIRED_QT_VERSION 5.11.0)
+set(REQUIRED_QT_VERSION 5.12.0)
################# Disallow in-source build #################
@@ -21,7 +21,7 @@
################# set KDE specific information #################
-find_package(ECM 5.65.0 REQUIRED NO_MODULE)
+find_package(ECM 5.66.0 REQUIRED NO_MODULE)
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is
checked
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
@@ -110,7 +110,7 @@
#########################################################################
add_definitions(-DQT_NO_FOREACH)
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
-add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x053f00)
+add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054100)
add_subdirectory(plugin)
if (KF5IconThemes_FOUND AND KF5WidgetsAddons_FOUND)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-5.65.0/org.kde.desktop/ToolTip.qml
new/qqc2-desktop-style-5.66.0/org.kde.desktop/ToolTip.qml
--- old/qqc2-desktop-style-5.65.0/org.kde.desktop/ToolTip.qml 2019-12-07
20:46:46.000000000 +0100
+++ new/qqc2-desktop-style-5.66.0/org.kde.desktop/ToolTip.qml 2020-01-04
00:15:37.000000000 +0100
@@ -33,7 +33,7 @@
Kirigami.Theme.colorSet: Kirigami.Theme.Tooltip
Kirigami.Theme.inherit: false
- x: parent ? (parent.width - implicitWidth) / 2 : 0
+ x: parent ? Math.round((parent.width - implicitWidth) / 2) : 0
y: -implicitHeight - 3
// Always show the tooltip on top of everything else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qqc2-desktop-style-5.65.0/plugin/kquickstyleitem.cpp
new/qqc2-desktop-style-5.66.0/plugin/kquickstyleitem.cpp
--- old/qqc2-desktop-style-5.65.0/plugin/kquickstyleitem.cpp 2019-12-07
20:46:46.000000000 +0100
+++ new/qqc2-desktop-style-5.66.0/plugin/kquickstyleitem.cpp 2020-01-04
00:15:37.000000000 +0100
@@ -139,6 +139,8 @@
connect(this, &KQuickStyleItem::heightChanged, this,
&KQuickStyleItem::updateBaselineOffset);
connect(this, &KQuickStyleItem::contentHeightChanged, this,
&KQuickStyleItem::updateBaselineOffset);
+
+ connect(qApp, &QApplication::fontChanged, this,
&KQuickStyleItem::updateSizeHint, Qt::QueuedConnection);
}
KQuickStyleItem::~KQuickStyleItem()