Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qqc2-desktop-style for openSUSE:Factory checked in at 2022-11-15 13:17:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qqc2-desktop-style (Old) and /work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qqc2-desktop-style" Tue Nov 15 13:17:58 2022 rev:64 rq:1035436 version:5.100.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qqc2-desktop-style/qqc2-desktop-style.changes 2022-10-11 18:02:46.645815904 +0200 +++ /work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.1597/qqc2-desktop-style.changes 2022-11-15 13:20:31.684522796 +0100 @@ -1,0 +2,13 @@ +Tue Nov 8 08:35:34 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.100.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.100.0 +- Changes since 5.99.0: + * Never time out tooltip while its control is still hovered + * TextField: Use effectiveHorizontalAlignment without extra mirroring + for placeholder + * Add Qt6 windows CI support + +------------------------------------------------------------------- Old: ---- qqc2-desktop-style-5.99.0.tar.xz qqc2-desktop-style-5.99.0.tar.xz.sig New: ---- qqc2-desktop-style-5.100.0.tar.xz qqc2-desktop-style-5.100.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qqc2-desktop-style.spec ++++++ --- /var/tmp/diff_new_pack.7xqRNi/_old 2022-11-15 13:20:32.100524944 +0100 +++ /var/tmp/diff_new_pack.7xqRNi/_new 2022-11-15 13:20:32.104524965 +0100 @@ -16,11 +16,11 @@ # -%define _tar_path 5.99 +%define _tar_path 5.100 # Only needed for the package signature condition %bcond_without released Name: qqc2-desktop-style -Version: 5.99.0 +Version: 5.100.0 Release: 0 Summary: A Qt Quick Controls 2 Style for Desktop UIs License: GPL-2.0-or-later ++++++ qqc2-desktop-style-5.99.0.tar.xz -> qqc2-desktop-style-5.100.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.99.0/.gitlab-ci.yml new/qqc2-desktop-style-5.100.0/.gitlab-ci.yml --- old/qqc2-desktop-style-5.99.0/.gitlab-ci.yml 2022-10-01 15:23:43.000000000 +0200 +++ new/qqc2-desktop-style-5.100.0/.gitlab-ci.yml 2022-11-05 13:34:08.000000000 +0100 @@ -7,3 +7,4 @@ - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/linux-qt6.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows.yml - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/freebsd-qt6.yml + - https://invent.kde.org/sysadmin/ci-utilities/raw/master/gitlab-templates/windows-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.99.0/CMakeLists.txt new/qqc2-desktop-style-5.100.0/CMakeLists.txt --- old/qqc2-desktop-style-5.99.0/CMakeLists.txt 2022-10-01 15:23:43.000000000 +0200 +++ new/qqc2-desktop-style-5.100.0/CMakeLists.txt 2022-11-05 13:34:08.000000000 +0100 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.99.0") # handled by release scripts -set(KF_DEP_VERSION "5.99.0") # handled by release scripts +set(KF_VERSION "5.100.0") # handled by release scripts +set(KF_DEP_VERSION "5.100.0") # handled by release scripts project(qqc2-desktop-style VERSION ${KF_VERSION}) @@ -21,7 +21,7 @@ ################# set KDE specific information ################# -find_package(ECM 5.99.0 REQUIRED NO_MODULE) +find_package(ECM 5.100.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}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.99.0/org.kde.desktop/TextField.qml new/qqc2-desktop-style-5.100.0/org.kde.desktop/TextField.qml --- old/qqc2-desktop-style-5.99.0/org.kde.desktop/TextField.qml 2022-10-01 15:23:43.000000000 +0200 +++ new/qqc2-desktop-style-5.100.0/org.kde.desktop/TextField.qml 2022-11-05 13:34:08.000000000 +0100 @@ -98,8 +98,8 @@ id: placeholder x: controlRoot.leftPadding y: controlRoot.topPadding - width: controlRoot.width - (controlRoot.leftPadding + controlRoot.rightPadding) - height: controlRoot.height - (controlRoot.topPadding + controlRoot.bottomPadding) + width: controlRoot.width - controlRoot.leftPadding - controlRoot.rightPadding + height: controlRoot.height - controlRoot.topPadding - controlRoot.bottomPadding // Work around Qt bug where NativeRendering breaks for non-integer scale factors // https://bugreports.qt.io/browse/QTBUG-67007 @@ -108,7 +108,8 @@ text: controlRoot.placeholderText font: controlRoot.font color: controlRoot.placeholderTextColor - horizontalAlignment: controlRoot.horizontalAlignment + LayoutMirroring.enabled: false + horizontalAlignment: controlRoot.effectiveHorizontalAlignment verticalAlignment: controlRoot.verticalAlignment visible: !controlRoot.length && !controlRoot.preeditText && (!controlRoot.activeFocus || controlRoot.horizontalAlignment !== Qt.AlignHCenter) elide: Text.ElideRight diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.99.0/org.kde.desktop/ToolTip.qml new/qqc2-desktop-style-5.100.0/org.kde.desktop/ToolTip.qml --- old/qqc2-desktop-style-5.99.0/org.kde.desktop/ToolTip.qml 2022-10-01 15:23:43.000000000 +0200 +++ new/qqc2-desktop-style-5.100.0/org.kde.desktop/ToolTip.qml 2022-11-05 13:34:08.000000000 +0100 @@ -34,8 +34,8 @@ visible: parent && (Kirigami.Settings.tabletMode ? parent.pressed : (parent.hasOwnProperty("hovered") ? parent.hovered : parent.hasOwnProperty("containsMouse") && parent.containsMouse)) delay: Kirigami.Settings.tabletMode ? Qt.styleHints.mousePressAndHoldInterval : Kirigami.Units.toolTipDelay - // Timeout based on text length, from QTipLabel::restartExpireTimer - timeout: 10000 + 40 * Math.max(0, text.length - 100) + // Never time out while being hovered; it's annoying + timeout: -1 closePolicy: T.Popup.CloseOnEscape | T.Popup.CloseOnPressOutsideParent | T.Popup.CloseOnReleaseOutsideParent