gnome-software:1910-software-fails-to-show-unhandled-error-from-fwupd-2

Last commit made on 2022-11-01
Get this branch:
git clone -b 1910-software-fails-to-show-unhandled-error-from-fwupd-2 https://git.launchpad.net/gnome-software

Branch merges

Branch information

Name:
1910-software-fails-to-show-unhandled-error-from-fwupd-2
Repository:
lp:gnome-software

Recent commits

36ccfef... by Milan Crha <email address hidden>

gs-shell: Change which errors are ignored for refresh and update non-interactive actions

Background refresh/update can fail with various errors, some might be important to the user
even for non-interactive updates, thus make such errors are shown in the GUI.

Closes https://gitlab.gnome.org/GNOME/gnome-software/-/issues/1910

3c87131... by Philip Withnall

Merge branch '1612-revisit-error-display' into 'main'

Resolve "Revisit error display"

Closes #1612

See merge request GNOME/gnome-software!1472

fe1df7c... by Philip Withnall

Merge branch 'update-aboutwindow' into 'main'

readme, about: Update information

See merge request GNOME/gnome-software!1534

fedf80d... by Philip Withnall

Merge branch 'wip/unneeded-continue' into 'main'

Minor coding fixes in gs_app_list_filter_duplicates()

See merge request GNOME/gnome-software!1536

87dce6d... by TheEvilSkeleton <email address hidden>

readme, about: Update information

1f7d3d1... by Milan Crha <email address hidden>

gs-app-list: Minor save of one indentation level by two `if`-s merge

Merge two `if`-s into one, to save one indentation level in
gs_app_list_filter_duplicates(), which can make it easier
to read the code.

5a1abba... by Milan Crha <email address hidden>

gs-app-list: Remove unneeded `continue` in gs_app_list_filter_duplicates()

It only adds to code complexity with no gain.

cd2c5eb... by Philip Withnall

Merge branch 'wip/misc-fixes' into 'main'

Miscellaneous fixes

See merge request GNOME/gnome-software!1532

84dc6e5... by Milan Crha <email address hidden>

gs-dbus-helper: Make sure non-NULL values are used for GVariant

It can happen some of the values passed to the install_resources()
are NULL, but passing such into g_variant_new_string() causes
a runtime warning, because the function does not accept NULL strings.

9d5f9b3... by Milan Crha <email address hidden>

gs-vendor: Ignore ENOENT for /etc/PackageKit/Vendor.conf file

The Vendor.conf might not exists on system without PackageKit, though
the sources can be compiled with the PackageKit support, thus instead
of claiming the file does not exists on every start of the gnome-software,
claim an error only if the file exists and it fails to read data from it.