Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kf6-kirigami for openSUSE:Factory checked in at 2024-05-14 13:37:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kirigami (Old) and /work/SRC/openSUSE:Factory/.kf6-kirigami.new.1880 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kirigami" Tue May 14 13:37:20 2024 rev:4 rq:1173578 version:6.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kirigami/kf6-kirigami.changes 2024-05-11 18:23:01.782216275 +0200 +++ /work/SRC/openSUSE:Factory/.kf6-kirigami.new.1880/kf6-kirigami.changes 2024-05-14 13:38:04.713967348 +0200 @@ -1,0 +2,8 @@ +Mon May 13 06:56:10 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 6.2.1 + * New bugfix release +- Changes since 6.2.0: + * Revert "Dialog: Always use an overlay as visual parent" + +------------------------------------------------------------------- Old: ---- kirigami-6.2.0.tar.xz kirigami-6.2.0.tar.xz.sig New: ---- kirigami-6.2.1.tar.xz kirigami-6.2.1.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kirigami.spec ++++++ --- /var/tmp/diff_new_pack.HvAZxR/_old 2024-05-14 13:38:05.678002503 +0200 +++ /var/tmp/diff_new_pack.HvAZxR/_new 2024-05-14 13:38:05.678002503 +0200 @@ -25,7 +25,7 @@ %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-kirigami -Version: 6.2.0 +Version: 6.2.1 Release: 0 Summary: Set of QtQuick components License: LGPL-2.1-or-later ++++++ kirigami-6.2.0.tar.xz -> kirigami-6.2.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami-6.2.0/CMakeLists.txt new/kirigami-6.2.1/CMakeLists.txt --- old/kirigami-6.2.0/CMakeLists.txt 2024-05-03 14:25:30.000000000 +0200 +++ new/kirigami-6.2.1/CMakeLists.txt 2024-05-12 13:37:39.000000000 +0200 @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.2.0") # handled by release scripts +set(KF_VERSION "6.2.1") # handled by release scripts set(KF_DEP_VERSION "6.2.0") # handled by release scripts project(kirigami2 VERSION ${KF_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kirigami-6.2.0/src/controls/Dialog.qml new/kirigami-6.2.1/src/controls/Dialog.qml --- old/kirigami-6.2.0/src/controls/Dialog.qml 2024-05-03 14:25:30.000000000 +0200 +++ new/kirigami-6.2.1/src/controls/Dialog.qml 2024-05-12 13:37:39.000000000 +0200 @@ -133,7 +133,7 @@ * This is the window height, subtracted by largeSpacing on both the top * and bottom. */ - readonly property real absoluteMaximumHeight: parent ? (parent.height - Kirigami.Units.largeSpacing * 2) : 0 + readonly property real absoluteMaximumHeight: parent.height - Kirigami.Units.largeSpacing * 2 /** * @brief This property holds the absolute maximum width the dialog can have. @@ -141,7 +141,7 @@ * By default, it is the window width, subtracted by largeSpacing on both * the top and bottom. */ - readonly property real absoluteMaximumWidth: parent ? (parent.width - Kirigami.Units.largeSpacing * 2) : 0 + readonly property real absoluteMaximumWidth: parent.width - Kirigami.Units.largeSpacing * 2 /** * @brief This property holds the maximum height the dialog can have @@ -285,7 +285,6 @@ // determine parent so that popup knows which window to popup in // we want to open the dialog in the center of the window, if possible - parent: QQC2.Overlay.overlay Component.onCompleted: { if (typeof applicationWindow !== "undefined") { parent = applicationWindow().overlay; @@ -293,8 +292,8 @@ } // center dialog - x: parent ? Math.round((parent.width - width) / 2) : 0 - y: parent ? Math.round((parent.height - height) / 2) + Kirigami.Units.gridUnit * 2 * (1 - opacity) : 0 // move animation + x: Math.round((parent.width - width) / 2) + y: Math.round((parent.height - height) / 2) + Kirigami.Units.gridUnit * 2 * (1 - opacity) // move animation // dialog enter and exit transitions enter: Transition {