Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package plasma-framework for
openSUSE:Factory checked in at 2022-11-18 15:43:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma-framework (Old)
and /work/SRC/openSUSE:Factory/.plasma-framework.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-framework"
Fri Nov 18 15:43:14 2022 rev:132 rq:1036486 version:5.100.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma-framework/plasma-framework.changes
2022-11-15 13:20:28.620506979 +0100
+++
/work/SRC/openSUSE:Factory/.plasma-framework.new.1597/plasma-framework.changes
2022-11-18 15:43:43.234611500 +0100
@@ -1,0 +2,6 @@
+Thu Nov 17 13:15:20 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.100.1. Hotfix release:
+ * svgitem: do not upscale svg when using fractional scaling
+
+-------------------------------------------------------------------
Old:
----
plasma-framework-5.100.0.tar.xz
plasma-framework-5.100.0.tar.xz.sig
New:
----
plasma-framework-5.100.1.tar.xz
plasma-framework-5.100.1.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma-framework.spec ++++++
--- /var/tmp/diff_new_pack.hpY7hu/_old 2022-11-18 15:43:43.814614048 +0100
+++ /var/tmp/diff_new_pack.hpY7hu/_new 2022-11-18 15:43:43.818614066 +0100
@@ -24,7 +24,7 @@
%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} |
awk -F. '{print $1"."$2}')}
%bcond_without released
Name: plasma-framework
-Version: 5.100.0
+Version: 5.100.1
Release: 0
Summary: Plasma library and runtime components based upon KF5 and Qt5
License: GPL-2.0-or-later AND LGPL-2.0-or-later
++++++ plasma-framework-5.100.0.tar.xz -> plasma-framework-5.100.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-framework-5.100.0/src/declarativeimports/core/svgitem.cpp
new/plasma-framework-5.100.1/src/declarativeimports/core/svgitem.cpp
--- old/plasma-framework-5.100.0/src/declarativeimports/core/svgitem.cpp
2022-11-05 13:33:40.000000000 +0100
+++ new/plasma-framework-5.100.1/src/declarativeimports/core/svgitem.cpp
2022-11-17 10:06:47.000000000 +0100
@@ -166,7 +166,7 @@
} else {
m_svg.data()->setDevicePixelRatio(qMax<qreal>(1.0,
std::ceil(qApp->devicePixelRatio())));
}
- m_svg.data()->setScaleFactor(qMax<qreal>(1.0,
std::ceil(Units::instance().devicePixelRatio())));
+ m_svg.data()->setScaleFactor(qMax<qreal>(1.0,
Units::instance().devicePixelRatio()));
}
}