Hello community, here is the log from the commit of package qqc2-desktop-style for openSUSE:Factory checked in at 2020-12-15 12:30:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qqc2-desktop-style (Old) and /work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.2328 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qqc2-desktop-style" Tue Dec 15 12:30:01 2020 rev:41 rq:855475 version:5.77.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qqc2-desktop-style/qqc2-desktop-style.changes 2020-11-23 10:47:31.958424769 +0100 +++ /work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.2328/qqc2-desktop-style.changes 2020-12-15 12:32:26.760099972 +0100 @@ -1,0 +2,15 @@ +Mon Dec 7 17:14:55 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.77.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.77.0 +- Changes since 5.76.0: + * button: rely on down, not pressed for styling + * Reduce the size of round buttons on mobile + * Remove debugging leftover + * fix mobile scrollbar in RTL mode + * fix progressbar in RTL mode + * fix RTL display for RangeSlider + +------------------------------------------------------------------- Old: ---- qqc2-desktop-style-5.76.0.tar.xz qqc2-desktop-style-5.76.0.tar.xz.sig New: ---- qqc2-desktop-style-5.77.0.tar.xz qqc2-desktop-style-5.77.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qqc2-desktop-style.spec ++++++ --- /var/tmp/diff_new_pack.9nq236/_old 2020-12-15 12:32:27.352100449 +0100 +++ /var/tmp/diff_new_pack.9nq236/_new 2020-12-15 12:32:27.356100452 +0100 @@ -16,11 +16,11 @@ # -%define _tar_path 5.76 +%define _tar_path 5.77 # Only needed for the package signature condition %bcond_without lang Name: qqc2-desktop-style -Version: 5.76.0 +Version: 5.77.0 Release: 0 Summary: A Qt Quick Controls 2 Style for Desktop UIs License: GPL-2.0-or-later ++++++ qqc2-desktop-style-5.76.0.tar.xz -> qqc2-desktop-style-5.77.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.76.0/CMakeLists.txt new/qqc2-desktop-style-5.77.0/CMakeLists.txt --- old/qqc2-desktop-style-5.76.0/CMakeLists.txt 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/CMakeLists.txt 2020-12-05 11:17:55.000000000 +0100 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.76.0") # handled by release scripts -set(KF5_DEP_VERSION "5.76.0") # handled by release scripts +set(KF5_VERSION "5.77.0") # handled by release scripts +set(KF5_DEP_VERSION "5.77.0") # handled by release scripts project(qqc2-desktop-style VERSION ${KF5_VERSION}) -set(REQUIRED_QT_VERSION 5.12.0) +set(REQUIRED_QT_VERSION 5.13.0) ################# Disallow in-source build ################# @@ -21,7 +21,7 @@ ################# set KDE specific information ################# -find_package(ECM 5.76.0 REQUIRED NO_MODULE) +find_package(ECM 5.77.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.76.0/org.kde.desktop/Button.qml new/qqc2-desktop-style-5.77.0/org.kde.desktop/Button.qml --- old/qqc2-desktop-style-5.76.0/org.kde.desktop/Button.qml 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/org.kde.desktop/Button.qml 2020-12-05 11:17:55.000000000 +0100 @@ -37,8 +37,8 @@ anchors.fill: parent control: controlRoot elementType: "button" - sunken: controlRoot.pressed || (controlRoot.checkable && controlRoot.checked) - raised: !(controlRoot.pressed || (controlRoot.checkable && controlRoot.checked)) + sunken: controlRoot.down || (controlRoot.checkable && controlRoot.checked) + raised: !(controlRoot.down || (controlRoot.checkable && controlRoot.checked)) hover: controlRoot.hovered text: controlRoot.Kirigami.MnemonicData.mnemonicLabel hasFocus: controlRoot.activeFocus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.76.0/org.kde.desktop/ProgressBar.qml new/qqc2-desktop-style-5.77.0/org.kde.desktop/ProgressBar.qml --- old/qqc2-desktop-style-5.76.0/org.kde.desktop/ProgressBar.qml 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/org.kde.desktop/ProgressBar.qml 2020-12-05 11:17:55.000000000 +0100 @@ -24,11 +24,10 @@ background: StylePrivate.StyleItem { elementType: "progressbar" - control: controlRoot maximum: indeterminate ? 0 : controlRoot.to*100 minimum: indeterminate ? 0 : controlRoot.from*100 - value: indeterminate ? 0 : ((!controlRoot.inverted ? controlRoot.visualPosition : 1 - controlRoot.visualPosition)*controlRoot.to*100) + value: indeterminate ? 0 : ((Qt.application.layoutDirection === Qt.LeftToRight ? controlRoot.visualPosition : 1 - controlRoot.visualPosition)*controlRoot.to*100) horizontal: true enabled: controlRoot.enabled Timer { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.76.0/org.kde.desktop/RangeSlider.qml new/qqc2-desktop-style-5.77.0/org.kde.desktop/RangeSlider.qml --- old/qqc2-desktop-style-5.76.0/org.kde.desktop/RangeSlider.qml 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/org.kde.desktop/RangeSlider.qml 2020-12-05 11:17:55.000000000 +0100 @@ -78,7 +78,11 @@ anchors.centerIn: parent Rectangle { - x: parent.horizontal ? control.first.position * parent.width : 0 + x: parent.horizontal + ? (LayoutMirroring.enabled + ? parent.width - width - control.first.position * parent.width + : control.first.position * parent.width) + : 0 y: parent.horizontal ? 0 : control.second.visualPosition * parent.height + 6 width: parent.horizontal ? control.second.position * parent.width - control.first.position * parent.width - 6 : 6 height: parent.horizontal ? 6 : control.second.position * parent.height - control.first.position * parent.height - 6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.76.0/org.kde.desktop/RoundButton.qml new/qqc2-desktop-style-5.77.0/org.kde.desktop/RoundButton.qml --- old/qqc2-desktop-style-5.76.0/org.kde.desktop/RoundButton.qml 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/org.kde.desktop/RoundButton.qml 2020-12-05 11:17:55.000000000 +0100 @@ -53,8 +53,8 @@ background: Rectangle { property color borderColor: Qt.tint(Kirigami.Theme.textColor, Qt.rgba(Kirigami.Theme.backgroundColor.r, Kirigami.Theme.backgroundColor.g, Kirigami.Theme.backgroundColor.b, 0.7)) - implicitWidth: Kirigami.Units.iconSizes.large - implicitHeight: Kirigami.Units.iconSizes.large + implicitWidth: Kirigami.Units.gridUnit * 2 + implicitHeight: Kirigami.Units.gridUnit * 2 radius: controlRoot.radius color: (controlRoot.activeFocus && (controlRoot.hovered || controlRoot.highlighted)) || controlRoot.down || controlRoot.checked ? Qt.lighter(borderColor, 1.1) : Kirigami.Theme.backgroundColor diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qqc2-desktop-style-5.76.0/org.kde.desktop/ScrollBar.qml new/qqc2-desktop-style-5.77.0/org.kde.desktop/ScrollBar.qml --- old/qqc2-desktop-style-5.76.0/org.kde.desktop/ScrollBar.qml 2020-11-07 12:47:00.000000000 +0100 +++ new/qqc2-desktop-style-5.77.0/org.kde.desktop/ScrollBar.qml 2020-12-05 11:17:55.000000000 +0100 @@ -37,7 +37,9 @@ property real handleState: 0 x: Math.round(controlRoot.orientation == Qt.Vertical - ? (parent.width - width) - (parent.width/2 - width/2) * handleState + ? (Qt.application.layoutDirection === Qt.LeftToRight + ? (parent.width - width) - (parent.width/2 - width/2) * handleState + : (parent.width/2 - width/2) * handleState) : 0) y: Math.round(controlRoot.orientation == Qt.Horizontal _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org