Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sushi for openSUSE:Factory checked in at 2022-04-08 22:46:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sushi (Old) and /work/SRC/openSUSE:Factory/.sushi.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sushi" Fri Apr 8 22:46:16 2022 rev:51 rq:967857 version:41.2 Changes: -------- --- /work/SRC/openSUSE:Factory/sushi/sushi.changes 2022-04-01 21:37:35.816515902 +0200 +++ /work/SRC/openSUSE:Factory/.sushi.new.1900/sushi.changes 2022-04-08 22:46:40.310504424 +0200 @@ -1,0 +2,6 @@ +Tue Apr 5 13:54:00 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 41.2: + + Enable web process sandbox (webkitgtk). + +------------------------------------------------------------------- Old: ---- sushi-41.1.tar.xz New: ---- sushi-41.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sushi.spec ++++++ --- /var/tmp/diff_new_pack.JQnjBa/_old 2022-04-08 22:46:40.766499363 +0200 +++ /var/tmp/diff_new_pack.JQnjBa/_new 2022-04-08 22:46:40.774499274 +0200 @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(LOKDocView\\) Name: sushi -Version: 41.1 +Version: 41.2 Release: 0 Summary: Quick Previewer for Nautilus License: SUSE-GPL-2.0-with-plugin-exception ++++++ sushi-41.1.tar.xz -> sushi-41.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sushi-41.1/NEWS new/sushi-41.2/NEWS --- old/sushi-41.1/NEWS 2022-04-01 11:02:54.000000000 +0200 +++ new/sushi-41.2/NEWS 2022-04-05 15:16:58.000000000 +0200 @@ -1,3 +1,8 @@ +41.2 +==== + +- Enable web process sandbox (webkitgtk) + 41.1 ==== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sushi-41.1/data/org.gnome.NautilusPreviewer.appdata.xml.in new/sushi-41.2/data/org.gnome.NautilusPreviewer.appdata.xml.in --- old/sushi-41.1/data/org.gnome.NautilusPreviewer.appdata.xml.in 2022-04-01 11:02:54.000000000 +0200 +++ new/sushi-41.2/data/org.gnome.NautilusPreviewer.appdata.xml.in 2022-04-05 15:16:58.000000000 +0200 @@ -22,9 +22,9 @@ <keyword>preview</keyword> </keywords> <releases> - <release version="41.1" date="2022-04-01"> + <release version="41.2" date="2022-04-05"> <description> - <p>Sushi 41.1 is the latest stable version of GNOME Sushi, and it contains all + <p>Sushi 41.2 is the latest stable version of GNOME Sushi, and it contains all features and bugfixes introduced since our last release.</p> </description> </release> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sushi-41.1/meson.build new/sushi-41.2/meson.build --- old/sushi-41.1/meson.build 2022-04-01 11:02:54.000000000 +0200 +++ new/sushi-41.2/meson.build 2022-04-05 15:16:58.000000000 +0200 @@ -1,7 +1,7 @@ project( 'sushi', 'c', - version: '41.1', + version: '41.2', meson_version: '>=0.47.0' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sushi-41.1/src/ui/application.js new/sushi-41.2/src/ui/application.js --- old/sushi-41.1/src/ui/application.js 2022-04-01 11:02:54.000000000 +0200 +++ new/sushi-41.2/src/ui/application.js 2022-04-05 15:16:58.000000000 +0200 @@ -85,6 +85,9 @@ vfunc_startup() { super.vfunc_startup(); + // Enable web process sandbox + WebKit2.WebContext.get_default().set_sandbox_enabled(true); + this._defineStyleAndThemes(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sushi-41.1/src/viewers/html.js new/sushi-41.2/src/viewers/html.js --- old/sushi-41.1/src/viewers/html.js 2022-04-01 11:02:54.000000000 +0200 +++ new/sushi-41.2/src/viewers/html.js 2022-04-05 15:16:58.000000000 +0200 @@ -60,10 +60,6 @@ this.isReady(); } - static { - WebKit2.WebContext.get_default().set_sandbox_enabled(true); - } - get moveOnClick() { return false; }