~linuxmint-daily-build-team/linuxmint/+git/nemo:5.8-maintenance

Last commit made on 2023-09-22
Get this branch:
git clone -b 5.8-maintenance https://git.launchpad.net/~linuxmint-daily-build-team/linuxmint/+git/nemo

Branch merges

Branch information

Name:
5.8-maintenance
Repository:
lp:~linuxmint-daily-build-team/linuxmint/+git/nemo

Recent commits

a3acf1f... by Clement Lefebvre <email address hidden>

5.8.5

8439d67... by Lars Mueller

Fix thumbnail creation for local files

This fixes a regression by https://github.com/linuxmint/nemo/commit/1c526f6b829091e3121b58a321f9b956674a9d6e that causes thumbnails for local files to not be created because the thumbnailer didn't get an uri.

87b4a4d... by Edgar <email address hidden>

Fix issue when generating video thumbnails from network shares (#3265)

82fa60b... by Michael Webster

nemo-window-slot.c: Disable drop bar, until circular reference can
be resolved.

The dnd proxy info won't be destroyed (including an extra ref on
the target slot) until the slot is destroyed (via set_data_full),
but the slot will linger and leak because of the extra ref.

1507860... by marcus125 <email address hidden>

nemo-file.c: Update hard-coded value for size of thumbnails. (#3278)

This reflects a change in nemo-thumbnails.c,
which now uses GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE
instead of GNOME_DESKTOP_THUMBNAIL_SIZE_NORMAL,
and so thumbnails are now 256px, not 128px.

Fixes #3268

039b333... by Michael Webster

search: Relax folder restrictions to allow gvfs locations.

The real path for gvfs mounts is /run/user/nnnn/gvfs/*, so remove
the /run path from the skip list - in hindsight there may be more
users here than assumed (see Warpinator link).

The zero-size file check was originally intended to catch /proc
files without having to check each folder's filesystem type, but
since we're skipping /proc explicitly, it's not necessary, and
smb folders (and probably others) report 0 size.

Fixes #3273

linuxmint/warpinator@1c502dcd0e590953f7

bfcd819... by Giulio Lettieri

Use `activation_uri` as a second choice in `nemo_file_get_local_uri` (#3269)

Using `activation_uri` can be problematic with links.

688ecf1... by Clement Lefebvre <email address hidden>

5.8.4

06ff292... by Michael Webster

nemo-file-utilities.c: Simplify symbolic device icon lookup.

Gvfs/udisks get too creative with icon names - we were only allowing
the first GThemed icon name to be used before giving up. Check them
all now, and only use if they're part of the theme. Add guaranteed
fallback generic symbolic icons as a last resort.

ref: linuxmint/mint21.2-beta#39

e341401... by Michael Webster

nemo-places-sidebar.c: Remove extra reference to selected sidebar
file when using the popup menu.

- Remove leftover reference in get_icon_name()
- Remove leftover location and parent ref in
  bookmarks_check_popup_sensitivity.

Ejecting a mounted location using the eject button would fully
dispose of the related NemoFile.

Right-clicking and unmounting from the popup menu would succeed,
but the extra reference here would prevent it from being disposed
of properly, and prevent attempts to remount it later.

ref #2411 - this issue can still occur but is reduced to a single
reproducible case.