Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-software for openSUSE:Factory checked in at 2022-11-01 13:40:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-software (Old) and /work/SRC/openSUSE:Factory/.gnome-software.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-software" Tue Nov 1 13:40:37 2022 rev:100 rq:1032384 version:43.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-software/gnome-software.changes 2022-10-27 13:52:43.488125524 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-software.new.2275/gnome-software.changes 2022-11-01 13:40:42.855304319 +0100 @@ -1,0 +2,6 @@ +Wed Oct 26 01:55:06 UTC 2022 - Jonathan Kang <songchuan.k...@suse.com> + +- Add gnome-software-disable-offline-update.patch: Disable offline + update in SLE and openSUSE Leap(bsc#944832). + +------------------------------------------------------------------- New: ---- gnome-software-disable-offline-update.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-software.spec ++++++ --- /var/tmp/diff_new_pack.z26Lpe/_old 2022-11-01 13:40:43.299306680 +0100 +++ /var/tmp/diff_new_pack.z26Lpe/_new 2022-11-01 13:40:43.303306701 +0100 @@ -29,6 +29,8 @@ %if 0%{?sle_version} # PATCH-FIX-OPENSUSE gnome-software-launch-gpk-update-viewer-for-updates.patch bsc#1077332 boo#1090042 sck...@suse.com -- Don't launch gnome-software when clicking the updates notification. Launch gpk-update-viewer instead. Patch0: gnome-software-launch-gpk-update-viewer-for-updates.patch +# PATCH-FIX-OPENSUSE gnome-software-disable-offline-update.patch bsc#944832 sck...@suse.com -- Disable offline update in SLE and openSUSE Leap +Patch1: gnome-software-disable-offline-update.patch %endif BuildRequires: gtk-doc ++++++ gnome-software-disable-offline-update.patch ++++++ Index: gnome-software-41.5/src/gs-updates-section.c =================================================================== --- gnome-software-41.5.orig/src/gs-updates-section.c +++ gnome-software-41.5/src/gs-updates-section.c @@ -739,7 +739,7 @@ gs_updates_section_app_state_changed_cb } } - gtk_widget_set_sensitive (self->button_update, busy < len); + gtk_widget_set_sensitive (self->button_update, FALSE); } static void @@ -760,6 +760,8 @@ gs_updates_section_init (GsUpdatesSectio gtk_list_box_set_sort_func (GTK_LIST_BOX (self->listbox), _list_sort_func, self, NULL); + + gtk_widget_set_sensitive (self->button_update, FALSE); } /** Index: gnome-software-41.5/src/gs-updates-section.ui =================================================================== --- gnome-software-41.5.orig/src/gs-updates-section.ui +++ gnome-software-41.5/src/gs-updates-section.ui @@ -34,6 +34,7 @@ <property name="visible">True</property> <property name="use_underline">True</property> <property name="label" translatable="yes">_Download</property> + <property name="tooltip-text" translatable="yes">Please use gpk-update-viewer to update the system</property> <signal name="clicked" handler="_button_download_clicked_cb" swapped="yes"/> <style> <class name="suggested-action"/> @@ -46,6 +47,7 @@ <child> <object class="GsProgressButton" id="button_update"> <property name="visible">True</property> + <property name="tooltip-text" translatable="yes">Please use gpk-update-viewer to update the system</property> <signal name="clicked" handler="_button_update_all_clicked_cb" swapped="yes"/> <style> <class name="suggested-action"/>