Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package devhelp for openSUSE:Factory checked in at 2022-07-14 16:34:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/devhelp (Old) and /work/SRC/openSUSE:Factory/.devhelp.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "devhelp" Thu Jul 14 16:34:29 2022 rev:93 rq:989106 version:41.2 Changes: -------- --- /work/SRC/openSUSE:Factory/devhelp/devhelp.changes 2022-02-04 21:52:18.307189326 +0100 +++ /work/SRC/openSUSE:Factory/.devhelp.new.1523/devhelp.changes 2022-07-14 16:34:57.768668296 +0200 @@ -1,0 +2,6 @@ +Wed Jul 13 21:17:04 UTC 2022 - Atri Bhattacharya <badshah...@gmail.com> + +- Add e6c644683fbb34ac4ceb31150ef20a2536512149.patch -- Disable HW + acceleration to prevent blank pages (glgo#GNOME/devhelp#60). + +------------------------------------------------------------------- New: ---- e6c644683fbb34ac4ceb31150ef20a2536512149.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ devhelp.spec ++++++ --- /var/tmp/diff_new_pack.LEbI00/_old 2022-07-14 16:34:58.240668761 +0200 +++ /var/tmp/diff_new_pack.LEbI00/_new 2022-07-14 16:34:58.240668761 +0200 @@ -31,7 +31,8 @@ Patch0: https://gitlab.gnome.org/GNOME/devhelp/-/commit/281bade14c1925cf9e7329fa8e9cf2d82512c66f.patch # PATCH-FIX-UPSTREAM 03b9b6b55ab1e1376b314ac7f99693512e42d80b.patch -- Fix build with meson 0.61.0 and newer Patch1: https://gitlab.gnome.org/GNOME/devhelp/-/commit/03b9b6b55ab1e1376b314ac7f99693512e42d80b.patch - +# PATCH-FIX-UPSTREAM e6c644683fbb34ac4ceb31150ef20a2536512149.patch glgo#GNOME/devhelp#60 -- Disable HW acceleration to prevent blank pages +Patch2: https://gitlab.gnome.org/GNOME/devhelp/-/commit/e6c644683fbb34ac4ceb31150ef20a2536512149.patch BuildRequires: fdupes BuildRequires: gobject-introspection-devel >= 1.30.0 BuildRequires: itstool ++++++ e6c644683fbb34ac4ceb31150ef20a2536512149.patch ++++++ >From e6c644683fbb34ac4ceb31150ef20a2536512149 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi <eba...@gnome.org> Date: Wed, 13 Jul 2022 20:08:47 +0100 Subject: [PATCH] Disable hardware acceleration It seems to be broken with recent versions of WebKitGTK, especially on X11. Needs further testing and possibly a bug report against WebKit itself. Fixes: #60 --- devhelp/dh-web-view.c | 1 + 1 file changed, 1 insertion(+) diff --git a/devhelp/dh-web-view.c b/devhelp/dh-web-view.c index dcd5b95a..89871da4 100644 --- a/devhelp/dh-web-view.c +++ b/devhelp/dh-web-view.c @@ -484,6 +484,7 @@ dh_web_view_constructed (GObject *object) webkit_settings = webkit_web_view_get_settings (WEBKIT_WEB_VIEW (view)); webkit_settings_set_enable_back_forward_navigation_gestures (webkit_settings, TRUE); + webkit_settings_set_hardware_acceleration_policy (webkit_settings, WEBKIT_HARDWARE_ACCELERATION_POLICY_NEVER); /* Disable some things we have no need for. */ webkit_settings_set_enable_html5_database (webkit_settings, FALSE); -- GitLab