Comments

5 Comments

I have found that I am experiencing similar, if not the same, issues with suspend as nucleo described above.

System is a Lenovo IdeaPad 5 Pro 16ACH6, with an AMD Ryzen 7 5800H APU as mentioned in a previous comment.

Not certain how to report this and I doubt it would be considered any sort of blocker, but I am experiencing random and intermittent system-wide freezes/stutters that last a split second with all of the 6.1.x kernels up until this point (wasn't sure how to report that with ones that did not seem to be on Bodhi).

This may not be the best description; essentially, every so often and seemingly at random, the system will sort of near-freeze. If any audio is playing, it will noticeably cut out and stutter; if I am in any sort of game, it will slow to a crawl FPS wise for the same duration.

System is a Lenovo IdeaPad 5 Pro 16ACH6, with an AMD Ryzen 7 5800H and integrated graphics. If there's some way that I am unaware of that I can measure this properly to provide more information please let me know.

Actually, my apologies as 1.4.36 does not include a later MR which resolves the requirement in meson.build still being libsoup-2.4 despite the port to libsoup-3.0. So I suppose that would be necessary to include alongside that change in the spec file.

karma

Functions as expected, however this version switches to using libsoup-3.0 over libsoup-2.4 so the dependencies should also be updated accordingly.

QGnomePlatform seems to have a noticeable but simple to resolve issue with Qt5 patched for CSD shadows at the moment. The title bar does not extend to the edge of the window, seemingly due to not accounting for the additional margin added by the shadows. This patch resolves it:

--- a/src/decoration/qgnomeplatformdecoration.cpp
+++ b/src/decoration/qgnomeplatformdecoration.cpp
@@ -620,7 +620,7 @@ bool QGnomePlatformDecoration::handleTouch(QWaylandInputDevice *inputDevice,

 QRect QGnomePlatformDecoration::windowContentGeometry() const
 {
-#if QT_VERSION >= 0x060000
+#if DECORATION_SHADOWS_SUPPORT
     return waylandWindow()->windowContentGeometry() + margins(ShadowsOnly);
 #else
     return waylandWindow()->windowContentGeometry();