Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cinnamon-desktop for openSUSE:Factory checked in at 2023-04-16 19:35:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cinnamon-desktop (Old) and /work/SRC/openSUSE:Factory/.cinnamon-desktop.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cinnamon-desktop" Sun Apr 16 19:35:54 2023 rev:26 rq:1079768 version:5.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/cinnamon-desktop/cinnamon-desktop.changes 2023-01-28 21:16:32.080969965 +0100 +++ /work/SRC/openSUSE:Factory/.cinnamon-desktop.new.19717/cinnamon-desktop.changes 2023-04-16 19:35:55.673266204 +0200 @@ -1,0 +2,9 @@ +Sun Apr 16 16:07:10 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 5.6.2: + * gnome-desktop-thumbnail.c: Use g_get_user_cache_dir() for + thumbnail permission checks. + * gnome-desktop-thumbnailer.c: Only attempt to thumbnail + internally if gdk-pixbuf actually supports the mime_type. + +------------------------------------------------------------------- Old: ---- cinnamon-desktop-5.6.1.tar.gz New: ---- cinnamon-desktop-5.6.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cinnamon-desktop.spec ++++++ --- /var/tmp/diff_new_pack.1oNDGk/_old 2023-04-16 19:35:56.381270296 +0200 +++ /var/tmp/diff_new_pack.1oNDGk/_new 2023-04-16 19:35:56.385270319 +0200 @@ -23,7 +23,7 @@ %define typelib typelib-1_0-CinnamonDesktop-3_0 %define typelib_cvc typelib-1_0-Cvc-1_0 Name: cinnamon-desktop -Version: 5.6.1 +Version: 5.6.2 Release: 0 Summary: Libcinnamon-desktop API License: GPL-2.0-or-later AND MIT ++++++ cinnamon-desktop-5.6.1.tar.gz -> cinnamon-desktop-5.6.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cinnamon-desktop-5.6.1/debian/changelog new/cinnamon-desktop-5.6.2/debian/changelog --- old/cinnamon-desktop-5.6.1/debian/changelog 2023-01-07 17:00:25.000000000 +0100 +++ new/cinnamon-desktop-5.6.2/debian/changelog 2023-04-03 15:10:30.000000000 +0200 @@ -1,3 +1,11 @@ +cinnamon-desktop (5.6.2) vera; urgency=medium + + [ Michael Webster ] + * gnome-desktop-thumbnail.c: Use g_get_user_cache_dir() for thumbnail permission checks. + * gnome-desktop-thumbnailer.c: Only attempt to thumbnail internally if gdk-pixbuf actually supports the mime_type. + + -- Clement Lefebvre <r...@linuxmint.com> Mon, 03 Apr 2023 14:10:14 +0100 + cinnamon-desktop (5.6.1) vera; urgency=medium [ Michael Webster ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cinnamon-desktop-5.6.1/libcinnamon-desktop/gnome-desktop-thumbnail.c new/cinnamon-desktop-5.6.2/libcinnamon-desktop/gnome-desktop-thumbnail.c --- old/cinnamon-desktop-5.6.1/libcinnamon-desktop/gnome-desktop-thumbnail.c 2023-01-07 17:00:25.000000000 +0100 +++ new/cinnamon-desktop-5.6.2/libcinnamon-desktop/gnome-desktop-thumbnail.c 2023-04-03 15:10:30.000000000 +0200 @@ -1260,7 +1260,7 @@ } /* Fall back to gdk-pixbuf */ - if (pixbuf == NULL && !disabled) + if (!disabled && pixbuf == NULL && mimetype_supported_by_gdk_pixbuf (mime_type)) { pixbuf = _gdk_pixbuf_new_from_uri_at_scale (uri, size, size, TRUE); @@ -1869,7 +1869,7 @@ pwent = gnome_desktop_get_session_user_pwent (); - gchar *cache_dir = g_build_filename (pwent->pw_dir, ".cache", "thumbnails", NULL); + gchar *cache_dir = g_build_filename (g_get_user_cache_dir (), "thumbnails", NULL); if (!access_ok (cache_dir, pwent->pw_uid, pwent->pw_gid)) fix_owner (cache_dir, pwent->pw_uid, pwent->pw_gid); @@ -1905,8 +1905,7 @@ struct passwd *pwent; pwent = gnome_desktop_get_session_user_pwent (); - - gchar *cache_dir = g_build_filename (pwent->pw_dir, ".cache", "thumbnails", NULL); + gchar *cache_dir = g_build_filename (g_get_user_cache_dir(), "thumbnails", NULL); if (!access_ok (cache_dir, pwent->pw_uid, pwent->pw_gid)) { checks_out = FALSE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cinnamon-desktop-5.6.1/meson.build new/cinnamon-desktop-5.6.2/meson.build --- old/cinnamon-desktop-5.6.1/meson.build 2023-01-07 17:00:25.000000000 +0100 +++ new/cinnamon-desktop-5.6.2/meson.build 2023-04-03 15:10:30.000000000 +0200 @@ -1,7 +1,7 @@ # Meson build file # https://github.com/linuxmint/cinnamon-desktop -project('cinnamon-desktop', 'c', version: '5.6.1', +project('cinnamon-desktop', 'c', version: '5.6.2', meson_version: '>=0.50.0' )