Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-boxes for openSUSE:Factory checked in at 2021-07-20 15:39:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-boxes (Old) and /work/SRC/openSUSE:Factory/.gnome-boxes.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-boxes" Tue Jul 20 15:39:04 2021 rev:81 rq:907075 version:40.3 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-boxes/gnome-boxes.changes 2021-07-16 22:13:27.250528323 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-boxes.new.2632/gnome-boxes.changes 2021-07-20 15:39:42.505498598 +0200 @@ -1,0 +2,6 @@ +Sat Jul 10 16:38:00 UTC 2021 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 40.3: + + Fix run-in-background functionaly for non-flatpak builds. + +------------------------------------------------------------------- Old: ---- gnome-boxes-40.2.tar.xz New: ---- gnome-boxes-40.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-boxes.spec ++++++ --- /var/tmp/diff_new_pack.HMpuwn/_old 2021-07-20 15:39:43.121499700 +0200 +++ /var/tmp/diff_new_pack.HMpuwn/_new 2021-07-20 15:39:43.125499707 +0200 @@ -22,7 +22,7 @@ %define govf_sover 0.1 %define gfrdp_sover 0.1 Name: gnome-boxes -Version: 40.2 +Version: 40.3 Release: 0 Summary: A GNOME 3 application to access remote or virtual systems License: LGPL-2.0-or-later ++++++ gnome-boxes-40.2.tar.xz -> gnome-boxes-40.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-boxes-40.2/NEWS new/gnome-boxes-40.3/NEWS --- old/gnome-boxes-40.2/NEWS 2021-06-04 14:09:47.957527000 +0200 +++ new/gnome-boxes-40.3/NEWS 2021-07-09 14:57:12.593046700 +0200 @@ -1,5 +1,18 @@ +40.3 - Jul 09, 2021 +=================== + +Changes since 40.2 + + - fix run-in-background functionaly for non-flatpak builds + +All contributors to this release: + +Felipe Borges <felipebor...@gnome.org> + +40.2 - Jun 23, 2021 +=================== + Changes since 40.1 -================== - recommended-downloads: Update to latest releases - unattended-installer: Avoid accessing non-existant gvariant child diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-boxes-40.2/data/org.gnome.Boxes.appdata.xml.in new/gnome-boxes-40.3/data/org.gnome.Boxes.appdata.xml.in --- old/gnome-boxes-40.2/data/org.gnome.Boxes.appdata.xml.in 2021-06-04 14:09:48.001527000 +0200 +++ new/gnome-boxes-40.3/data/org.gnome.Boxes.appdata.xml.in 2021-07-09 14:57:12.726047000 +0200 @@ -38,8 +38,8 @@ </screenshot> </screenshots> <releases> - <release version="40.2" date="2021-06-04"> - <p>GNOME Boxes 40.2 culminates six months of feature development, bugfixes, and performance improvements.</p> + <release version="40.3" date="2021-07-09"> + <p>GNOME Boxes 40.3 culminates six months of feature development, bugfixes, and performance improvements.</p> </release> </releases> <kudos> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-boxes-40.2/meson.build new/gnome-boxes-40.3/meson.build --- old/gnome-boxes-40.2/meson.build 2021-06-04 14:09:48.064527000 +0200 +++ new/gnome-boxes-40.3/meson.build 2021-07-09 14:57:12.968047600 +0200 @@ -1,6 +1,6 @@ project ('gnome-boxes', ['vala', 'c'], - version: '40.2', + version: '40.3', license: 'LGPLv2+', meson_version: '>= 0.50.0', ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-boxes-40.2/src/app.vala new/gnome-boxes-40.3/src/app.vala --- old/gnome-boxes-40.2/src/app.vala 2021-06-04 14:09:48.114527200 +0200 +++ new/gnome-boxes-40.3/src/app.vala 2021-07-09 14:57:13.025047500 +0200 @@ -289,8 +289,10 @@ display.flush (); keep_on_running_on_background (); +#if FLATPAK if (run_in_bg) return true; +#endif Idle.add (() => { quit (); @@ -302,6 +304,9 @@ } public override void shutdown () { +#if !FLATPAK + base.shutdown (); +#else if (!run_in_bg) { base.shutdown (); @@ -311,6 +316,7 @@ } else { this.hold (); } +#endif foreach (var window in windows) { window.notificationbar.dismiss_all ();