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 2021-07-16 00:00:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qqc2-desktop-style (Old)
 and      /work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qqc2-desktop-style"

Fri Jul 16 00:00:13 2021 rev:48 rq:905541 version:5.84.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/qqc2-desktop-style/qqc2-desktop-style.changes    
2021-06-16 20:36:05.863248862 +0200
+++ 
/work/SRC/openSUSE:Factory/.qqc2-desktop-style.new.2625/qqc2-desktop-style.changes
  2021-07-16 00:02:09.148756265 +0200
@@ -1,0 +2,12 @@
+Sun Jul  4 07:45:58 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.84.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.84.0
+- Changes since 5.83.0:
+  * Bind default font of Label (kde#438436)
+  * kirigami-integration: use default font size for smallText on Windows
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  qqc2-desktop-style-5.83.0.tar.xz
  qqc2-desktop-style-5.83.0.tar.xz.sig

New:
----
  qqc2-desktop-style-5.84.0.tar.xz
  qqc2-desktop-style-5.84.0.tar.xz.sig

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

Other differences:
------------------
++++++ qqc2-desktop-style.spec ++++++
--- /var/tmp/diff_new_pack.A7b9rX/_old  2021-07-16 00:02:09.652754479 +0200
+++ /var/tmp/diff_new_pack.A7b9rX/_new  2021-07-16 00:02:09.672754408 +0200
@@ -16,11 +16,11 @@
 #
 
 
-%define _tar_path 5.83
+%define _tar_path 5.84
 # Only needed for the package signature condition
 %bcond_without lang
 Name:           qqc2-desktop-style
-Version:        5.83.0
+Version:        5.84.0
 Release:        0
 Summary:        A Qt Quick Controls 2 Style for Desktop UIs
 License:        GPL-2.0-or-later
@@ -92,7 +92,6 @@
 %{_kf5_qmldir}/org/kde/qqc2desktopstyle/
 
 %files devel
-%license LICENSES/*
 %{_kf5_libdir}/cmake/KF5QQC2DesktopStyle/
 # Legacy alias with typo...
 %{_kf5_libdir}/cmake/KF5QQC2DeskopStyle/


++++++ qqc2-desktop-style-5.83.0.tar.xz -> qqc2-desktop-style-5.84.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqc2-desktop-style-5.83.0/CMakeLists.txt 
new/qqc2-desktop-style-5.84.0/CMakeLists.txt
--- old/qqc2-desktop-style-5.83.0/CMakeLists.txt        2021-06-08 
12:40:09.000000000 +0200
+++ new/qqc2-desktop-style-5.84.0/CMakeLists.txt        2021-07-01 
16:26:47.000000000 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.83.0") # handled by release scripts
-set(KF_DEP_VERSION "5.83.0") # handled by release scripts
+set(KF_VERSION "5.84.0") # handled by release scripts
+set(KF_DEP_VERSION "5.84.0") # handled by release scripts
 
 project(qqc2-desktop-style VERSION ${KF_VERSION})
 
@@ -21,7 +21,7 @@
 
 ################# set KDE specific information #################
 
-find_package(ECM 5.83.0 REQUIRED NO_MODULE)
+find_package(ECM 5.84.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.83.0/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
 
new/qqc2-desktop-style-5.84.0/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
--- 
old/qqc2-desktop-style-5.83.0/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
     2021-06-08 12:40:09.000000000 +0200
+++ 
new/qqc2-desktop-style-5.84.0/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
     2021-07-01 16:26:47.000000000 +0200
@@ -222,11 +222,13 @@
     KConfigGroup general(ptr->group("general"));
     setSmallFont(general.readEntry("smallestReadableFont", []() {
         auto smallFont = qApp->font();
+#ifndef Q_OS_WIN
         if (smallFont.pixelSize() != -1) {
             smallFont.setPixelSize(smallFont.pixelSize() - 2);
         } else {
             smallFont.setPointSize(smallFont.pointSize() - 2);
         }
+#endif
         return smallFont;
     }()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqc2-desktop-style-5.83.0/org.kde.desktop/Label.qml 
new/qqc2-desktop-style-5.84.0/org.kde.desktop/Label.qml
--- old/qqc2-desktop-style-5.83.0/org.kde.desktop/Label.qml     2021-06-08 
12:40:09.000000000 +0200
+++ new/qqc2-desktop-style-5.84.0/org.kde.desktop/Label.qml     2021-07-01 
16:26:47.000000000 +0200
@@ -27,4 +27,5 @@
 
     color: Kirigami.Theme.textColor
     linkColor: Kirigami.Theme.linkColor
+    font: Kirigami.Theme.defaultFont
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qqc2-desktop-style-5.83.0/org.kde.desktop/ToolButton.qml 
new/qqc2-desktop-style-5.84.0/org.kde.desktop/ToolButton.qml
--- old/qqc2-desktop-style-5.83.0/org.kde.desktop/ToolButton.qml        
2021-06-08 12:40:09.000000000 +0200
+++ new/qqc2-desktop-style-5.84.0/org.kde.desktop/ToolButton.qml        
2021-07-01 16:26:47.000000000 +0200
@@ -28,6 +28,10 @@
     Kirigami.MnemonicData.enabled: controlRoot.enabled && controlRoot.visible
     Kirigami.MnemonicData.controlType: Kirigami.MnemonicData.SecondaryControl
     Kirigami.MnemonicData.label: controlRoot.text
+
+    // KF6 TODO: investigate setting this by default
+    // focusPolicy: Qt.TabFocus
+
     Shortcut {
         //in case of explicit & the button manages it by itself
         enabled: !(RegExp(/\&[^\&]/).test(controlRoot.text))

Reply via email to