Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qqc2-breeze-style for 
openSUSE:Factory checked in at 2023-04-05 21:27:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qqc2-breeze-style (Old)
 and      /work/SRC/openSUSE:Factory/.qqc2-breeze-style.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qqc2-breeze-style"

Wed Apr  5 21:27:14 2023 rev:41 rq:1077309 version:5.27.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/qqc2-breeze-style/qqc2-breeze-style.changes      
2023-03-17 17:03:31.829450305 +0100
+++ 
/work/SRC/openSUSE:Factory/.qqc2-breeze-style.new.19717/qqc2-breeze-style.changes
   2023-04-05 21:35:13.402420629 +0200
@@ -1,0 +2,10 @@
+Tue Apr  4 15:05:45 UTC 2023 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.27.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma/5/5.27.4
+- Changes since 5.27.3:
+  * Fix font rendering on android
+
+-------------------------------------------------------------------

Old:
----
  qqc2-breeze-style-5.27.3.tar.xz
  qqc2-breeze-style-5.27.3.tar.xz.sig

New:
----
  qqc2-breeze-style-5.27.4.tar.xz
  qqc2-breeze-style-5.27.4.tar.xz.sig

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

Other differences:
------------------
++++++ qqc2-breeze-style.spec ++++++
--- /var/tmp/diff_new_pack.OC9OGS/_old  2023-04-05 21:35:13.834423094 +0200
+++ /var/tmp/diff_new_pack.OC9OGS/_new  2023-04-05 21:35:13.838423117 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without released
 Name:           qqc2-breeze-style
-Version:        5.27.3
+Version:        5.27.4
 Release:        0
 Summary:        Breeze Style for Qt Quick Controls 2
 License:        LGPL-2.1-only OR LGPL-3.0-only


++++++ qqc2-breeze-style-5.27.3.tar.xz -> qqc2-breeze-style-5.27.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qqc2-breeze-style-5.27.3/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
 
new/qqc2-breeze-style-5.27.4/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
--- 
old/qqc2-breeze-style-5.27.3/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
      2023-03-14 13:33:14.000000000 +0100
+++ 
new/qqc2-breeze-style-5.27.4/kirigami-plasmadesktop-integration/plasmadesktoptheme.cpp
      2023-04-04 12:46:27.000000000 +0200
@@ -68,6 +68,7 @@
          * reproduce issues with all fractional scale factors.
          */
         qreal devicePixelRatio = qGuiApp->devicePixelRatio();
+#ifndef Q_OS_ANDROID
         QQuickWindow::TextRenderType defaultTextRenderType = 
(int(devicePixelRatio) == devicePixelRatio //
                                                                   ? 
QQuickWindow::NativeTextRendering
                                                                   : 
QQuickWindow::QtTextRendering);
@@ -84,6 +85,11 @@
         }
 
         QQuickWindow::setTextRenderType(defaultTextRenderType);
+#else
+        // Native rendering on android is broken, so prefer Qt rendering in
+        // this case.
+        QQuickWindow::setTextRenderType(QQuickWindow::QtTextRendering);
+#endif
 
         smallFont = loadSmallFont();
     }

Reply via email to