Hello community, here is the log from the commit of package caja for openSUSE:Factory checked in at 2017-11-15 17:00:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/caja (Old) and /work/SRC/openSUSE:Factory/.caja.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "caja" Wed Nov 15 17:00:22 2017 rev:27 rq:541798 version:1.18.5 Changes: -------- --- /work/SRC/openSUSE:Factory/caja/caja.changes 2017-09-04 12:33:32.263006502 +0200 +++ /work/SRC/openSUSE:Factory/.caja.new/caja.changes 2017-11-15 17:00:25.482266396 +0100 @@ -1,0 +2,16 @@ +Tue Nov 14 12:10:18 UTC 2017 - [email protected] + +- Update to version 1.18.5: + * Fix wrong behaviour with the "enter" key when renaming files in + list view. + * Open a directory in new window: [ctrl] + [shift] + [w]. + * zoom-control: Change zoom with mousewheel scroll over button. + * View -> Visible Columns: Fix vertical expand of dialogue + content. + * Fix wrong <Shift+Del> behaviour when renaming files. + * Fix high cpu when loading background image. + * icon-dnd: Remove a hardcoded highlight frame. + * list view: Fix large icon margins on zooming out. + * Remove a weird +x attribute from a source file. + +------------------------------------------------------------------- Old: ---- caja-1.18.4.tar.xz New: ---- caja-1.18.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ caja.spec ++++++ --- /var/tmp/diff_new_pack.3x784G/_old 2017-11-15 17:00:26.250238276 +0100 +++ /var/tmp/diff_new_pack.3x784G/_new 2017-11-15 17:00:26.254238130 +0100 @@ -20,10 +20,10 @@ %define typelib typelib-1_0-Caja-2_0 %define _version 1.18 Name: caja -Version: 1.18.4 +Version: 1.18.5 Release: 0 Summary: File manager for the MATE desktop -License: GPL-2.0 and LGPL-2.0 +License: GPL-2.0 AND LGPL-2.0 Group: System/GUI/Other Url: https://mate-desktop.org/ Source: http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz @@ -144,28 +144,29 @@ %suse_update_desktop_file caja %suse_update_desktop_file mate-network-scheme +%post -n %{lname} -p /sbin/ldconfig + +%postun -n %{lname} -p /sbin/ldconfig + +%if 0%{?suse_version} <= 1320 %post %desktop_database_post -%mime_database_post %icon_theme_cache_post +%mime_database_post %postun %desktop_database_postun -%mime_database_postun %icon_theme_cache_postun - -%post -n %{lname} -p /sbin/ldconfig - -%postun -n %{lname} -p /sbin/ldconfig +%mime_database_postun %post gschemas %glib2_gsettings_schema_post %postun gschemas %glib2_gsettings_schema_postun +%endif %files -%defattr(-,root,root) %doc AUTHORS COPYING COPYING.EXTENSIONS COPYING.LIB NEWS %{_bindir}/caja %{_bindir}/caja-autorun-software @@ -194,22 +195,17 @@ %dir %{_datadir}/caja-extensions/ %files lang -f caja.lang -%defattr(-,root,root) %files -n %{typelib} -%defattr(-,root,root) %{_libdir}/girepository-1.0/Caja-2.0.typelib %files -n %{lname} -%defattr(-,root,root) %{_libdir}/*.so.* %files gschemas -%defattr(-,root,root) %{_datadir}/glib-2.0/schemas/*.xml %files devel -%defattr(-,root,root) %{_datadir}/gtk-doc/html/libcaja-extension/ %{_includedir}/caja/ %{_libdir}/*.so ++++++ caja-1.18.4.tar.xz -> caja-1.18.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/ChangeLog new/caja-1.18.5/ChangeLog --- old/caja-1.18.4/ChangeLog 2017-08-26 14:04:56.000000000 +0200 +++ new/caja-1.18.5/ChangeLog 2017-11-13 11:37:34.000000000 +0100 @@ -1,3 +1,129 @@ +commit 645f14c58d5e04b90fb2480d8a0eaaeced28dfc2 +Author: raveit65 <[email protected]> +Date: Mon Nov 13 11:30:53 2017 +0100 + + release 1.18.5 + + NEWS | 12 ++++++++++++ + configure.ac | 2 +- + 2 files changed, 13 insertions(+), 1 deletion(-) + +commit 188233e09c64f73238d165e90c72e3e658c547ce +Author: Pablo Barciela <[email protected]> +Date: Sat Nov 4 03:48:05 2017 +0100 + + Fix: wrong behavior with key "enter" while renaming files in list view + + Fixes https://github.com/mate-desktop/caja/issues/698 + + src/file-manager/fm-list-view.c | 31 +++++++++++++++++++++---------- + 1 file changed, 21 insertions(+), 10 deletions(-) + +commit e83410a4fc27b60f5146ea67037c627ef5168654 +Author: Pablo Barciela <[email protected]> +Date: Sun Nov 5 01:45:33 2017 +0100 + + open folder in new window: [ctrl] + [shift] + [w] + + Fixes https://github.com/mate-desktop/caja/issues/859 + + src/file-manager/fm-directory-view.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 4e22e482dbbf62ca5527fa808dc7c2eb86b117be +Author: monsta <[email protected]> +Date: Thu Nov 2 17:39:50 2017 +0300 + + zoom-control: change zoom with mousewheel scroll over button + + like it was with GTK+2 + + src/caja-zoom-control.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +commit 38c2adfad1bba14a2b16f51bbd8de3d252877e10 +Author: monsta <[email protected]> +Date: Tue Oct 10 12:55:40 2017 +0300 + + View -> Visible Columns: fix vertical expand of dialog content + + this menu item is only visible when list view is selected, + so I'm not surprised we missed it + + src/file-manager/fm-list-view.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 6ccc50855059b7fd7551b1df94cc4acc1df0c4bc +Author: Pablo Barciela <[email protected]> +Date: Sat Sep 23 20:28:05 2017 +0200 + + Fix: wrong <Shift+Del> behavior while renaming files + + Fixes https://github.com/mate-desktop/caja/issues/509 + + src/file-manager/fm-directory-view.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +commit 343bcfe83b307e9fa5365c9337f62263d021046d +Author: ZenWalker <[email protected]> +Date: Fri Sep 1 02:25:53 2017 +0200 + + Fix: high cpu while loading background image + + Fixes #606 + + eel/eel-background.c | 8 ++++++++ + 1 file changed, 8 insertions(+) + +commit 1a8648b9fe64c194d39360fa05fc106ee210a554 +Author: Cosimo Cecchi <[email protected]> +Date: Wed Sep 7 21:16:14 2011 -0400 + + icon-dnd: remove hardcoded highlight frame + + The call to gtk_render_frame() should be enough; + Now the .dnd style class setting from themes are used. + Fixes https://github.com/mate-desktop/mate-themes/issues/194 + + origin commit: + https://git.gnome.org/browse/nautilus/commit/?id=8d8979f + + libcaja-private/caja-icon-dnd.c | 7 +------ + 1 file changed, 1 insertion(+), 6 deletions(-) + +commit cb8e3930d44bbbbc6d3faf78f7826be467978825 +Author: monsta <[email protected]> +Date: Mon Aug 28 14:17:18 2017 +0300 + + list view: fix large icon margins on zooming out + + ported from: + https://git.gnome.org/browse/nautilus/commit/?id=4f17fb7db7b8736ebb4fe82ddb1c279777847730 + https://git.gnome.org/browse/nautilus/commit/?id=41de4e52b43c8ed5c9118860dac7caa303ebbc5b + + src/file-manager/fm-list-view.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit 6ace67d382e7a138e86a5677dc4a999853d3ecdc +Author: monsta <[email protected]> +Date: Thu Aug 31 16:28:21 2017 +0300 + + Revert "Adds columns autosizing" + + This reverts commit ee0de1a5e74cbed5cf49517ea82a73e52dd6424a. + + src/file-manager/fm-list-view.c | 2 -- + 1 file changed, 2 deletions(-) + +commit b986edf1c3e909d7e1b7a3f0f52d80d2b4312707 +Author: monsta <[email protected]> +Date: Mon Aug 28 13:40:28 2017 +0300 + + remove weird +x attribute from a source file + + src/file-manager/fm-list-view.c | 0 + 1 file changed, 0 insertions(+), 0 deletions(-) + commit b959b45afd4c131dc4b761f3c262227b22aa1734 Author: raveit65 <[email protected]> Date: Sat Aug 26 14:02:24 2017 +0200 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/NEWS new/caja-1.18.5/NEWS --- old/caja-1.18.4/NEWS 2017-08-26 14:01:31.000000000 +0200 +++ new/caja-1.18.5/NEWS 2017-11-13 11:30:27.000000000 +0100 @@ -1,3 +1,15 @@ +### caja 1.18.5 + + Fix: wrong behavior with key "enter" while renaming files in list view + open folder in new window: [ctrl] + [shift] + [w] + zoom-control: change zoom with mousewheel scroll over button + View -> Visible Columns: fix vertical expand of dialog content + Fix: wrong <Shift+Del> behavior while renaming files + Fix: high cpu while loading background image + icon-dnd: remove hardcoded highlight frame + list view: fix large icon margins on zooming out + remove weird +x attribute from a source file + ### caja 1.18.4 Fix zoom in list-view diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/configure new/caja-1.18.5/configure --- old/caja-1.18.4/configure 2017-08-26 14:02:59.000000000 +0200 +++ new/caja-1.18.5/configure 2017-11-13 11:34:04.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for caja 1.18.4. +# Generated by GNU Autoconf 2.69 for caja 1.18.5. # # Report bugs to <http://www.mate-desktop.org>. # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='caja' PACKAGE_TARNAME='caja' -PACKAGE_VERSION='1.18.4' -PACKAGE_STRING='caja 1.18.4' +PACKAGE_VERSION='1.18.5' +PACKAGE_STRING='caja 1.18.5' PACKAGE_BUGREPORT='http://www.mate-desktop.org' PACKAGE_URL='' @@ -1469,7 +1469,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures caja 1.18.4 to adapt to many kinds of systems. +\`configure' configures caja 1.18.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1539,7 +1539,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of caja 1.18.4:";; + short | recursive ) echo "Configuration of caja 1.18.5:";; esac cat <<\_ACEOF @@ -1688,7 +1688,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -caja configure 1.18.4 +caja configure 1.18.5 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2057,7 +2057,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by caja $as_me 1.18.4, which was +It was created by caja $as_me 1.18.5, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2927,7 +2927,7 @@ # Define the identity of the package. PACKAGE='caja' - VERSION='1.18.4' + VERSION='1.18.5' cat >>confdefs.h <<_ACEOF @@ -17453,7 +17453,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by caja $as_me 1.18.4, which was +This file was extended by caja $as_me 1.18.5, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17519,7 +17519,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -caja config.status 1.18.4 +caja config.status 1.18.5 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/configure.ac new/caja-1.18.5/configure.ac --- old/caja-1.18.4/configure.ac 2017-08-26 13:58:12.000000000 +0200 +++ new/caja-1.18.5/configure.ac 2017-11-13 11:28:49.000000000 +0100 @@ -20,7 +20,7 @@ m4_define(caja_extension_current, 5) m4_define(caja_extension_revision, 0) -AC_INIT([caja], [1.18.4], [http://www.mate-desktop.org]) +AC_INIT([caja], [1.18.5], [http://www.mate-desktop.org]) dnl --------------------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja-autorun-software.desktop.in new/caja-1.18.5/data/caja-autorun-software.desktop.in --- old/caja-1.18.4/data/caja-autorun-software.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja-autorun-software.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -11,4 +11,4 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja-browser.desktop.in new/caja-1.18.5/data/caja-browser.desktop.in --- old/caja-1.18.4/data/caja-browser.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja-browser.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -14,4 +14,4 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja-computer.desktop.in new/caja-1.18.5/data/caja-computer.desktop.in --- old/caja-1.18.4/data/caja-computer.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja-computer.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -14,4 +14,4 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja-file-management-properties.desktop.in new/caja-1.18.5/data/caja-file-management-properties.desktop.in --- old/caja-1.18.4/data/caja-file-management-properties.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja-file-management-properties.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -12,4 +12,4 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=Preferences -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja-folder-handler.desktop.in new/caja-1.18.5/data/caja-folder-handler.desktop.in --- old/caja-1.18.4/data/caja-folder-handler.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja-folder-handler.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -13,4 +13,4 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja.desktop new/caja-1.18.5/data/caja.desktop --- old/caja-1.18.4/data/caja.desktop 2017-08-26 14:04:34.000000000 +0200 +++ new/caja-1.18.5/data/caja.desktop 2017-11-13 11:37:05.000000000 +0100 @@ -221,7 +221,7 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 X-MATE-Autostart-Phase=Desktop X-MATE-Autostart-Notify=true X-MATE-AutoRestart=true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/data/caja.desktop.in new/caja-1.18.5/data/caja.desktop.in --- old/caja-1.18.4/data/caja.desktop.in 2017-08-26 14:03:06.000000000 +0200 +++ new/caja-1.18.5/data/caja.desktop.in 2017-11-13 11:34:12.000000000 +0100 @@ -11,7 +11,7 @@ X-MATE-Bugzilla-Bugzilla=MATE X-MATE-Bugzilla-Product=caja X-MATE-Bugzilla-Component=general -X-MATE-Bugzilla-Version=1.18.4 +X-MATE-Bugzilla-Version=1.18.5 X-MATE-Autostart-Phase=Desktop X-MATE-Autostart-Notify=true X-MATE-AutoRestart=true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/docs/reference/libcaja-extension/html/ix01.html new/caja-1.18.5/docs/reference/libcaja-extension/html/ix01.html --- old/caja-1.18.4/docs/reference/libcaja-extension/html/ix01.html 2017-08-26 14:05:01.000000000 +0200 +++ new/caja-1.18.5/docs/reference/libcaja-extension/html/ix01.html 2017-11-13 11:37:44.000000000 +0100 @@ -24,189 +24,189 @@ <div xmlns:xlink="http://www.w3.org/1999/xlink" class="index"><div class="indexdiv"> <h3>C</h3> <dl> -<dt id="ientry-idm139665387499424">CajaColumn, <a class="indexterm" href="CajaColumn.html#CajaColumn-struct">struct CajaColumn</a> +<dt id="ientry-idm140399429992176">CajaColumn, <a class="indexterm" href="CajaColumn.html#CajaColumn-struct">struct CajaColumn</a> </dt> -<dt id="ientry-idm139665387493504">CajaColumn:attribute, <a class="indexterm" href="CajaColumn.html#CajaColumn--attribute">The “attribute” property</a> +<dt id="ientry-idm140399429986256">CajaColumn:attribute, <a class="indexterm" href="CajaColumn.html#CajaColumn--attribute">The “attribute” property</a> </dt> -<dt id="ientry-idm139665387487616">CajaColumn:attribute-q, <a class="indexterm" href="CajaColumn.html#CajaColumn--attribute-q">The “attribute-q” property</a> +<dt id="ientry-idm140399429980368">CajaColumn:attribute-q, <a class="indexterm" href="CajaColumn.html#CajaColumn--attribute-q">The “attribute-q” property</a> </dt> -<dt id="ientry-idm139665387481888">CajaColumn:description, <a class="indexterm" href="CajaColumn.html#CajaColumn--description">The “description” property</a> +<dt id="ientry-idm140399429974640">CajaColumn:description, <a class="indexterm" href="CajaColumn.html#CajaColumn--description">The “description” property</a> </dt> -<dt id="ientry-idm139665387476000">CajaColumn:label, <a class="indexterm" href="CajaColumn.html#CajaColumn--label">The “label” property</a> +<dt id="ientry-idm140399429968752">CajaColumn:label, <a class="indexterm" href="CajaColumn.html#CajaColumn--label">The “label” property</a> </dt> -<dt id="ientry-idm139665387470064">CajaColumn:name, <a class="indexterm" href="CajaColumn.html#CajaColumn--name">The “name” property</a> +<dt id="ientry-idm140399429962816">CajaColumn:name, <a class="indexterm" href="CajaColumn.html#CajaColumn--name">The “name” property</a> </dt> -<dt id="ientry-idm139665387464128">CajaColumn:xalign, <a class="indexterm" href="CajaColumn.html#CajaColumn--xalign">The “xalign” property</a> +<dt id="ientry-idm140399429956880">CajaColumn:xalign, <a class="indexterm" href="CajaColumn.html#CajaColumn--xalign">The “xalign” property</a> </dt> -<dt id="ientry-idm139665389266656">CajaColumnProvider, <a class="indexterm" href="CajaColumnProvider.html#CajaColumnProvider-struct">CajaColumnProvider</a> +<dt id="ientry-idm140399428833632">CajaColumnProvider, <a class="indexterm" href="CajaColumnProvider.html#CajaColumnProvider-struct">CajaColumnProvider</a> </dt> -<dt id="ientry-idm139665389263120">CajaColumnProviderIface, <a class="indexterm" href="CajaColumnProvider.html#CajaColumnProviderIface">struct CajaColumnProviderIface</a> +<dt id="ientry-idm140399428830208">CajaColumnProviderIface, <a class="indexterm" href="CajaColumnProvider.html#CajaColumnProviderIface">struct CajaColumnProviderIface</a> </dt> -<dt id="ientry-idm139665385310288">CajaFile, <a class="indexterm" href="CajaFileInfo.html#CajaFile">CajaFile</a> +<dt id="ientry-idm140399425462976">CajaFile, <a class="indexterm" href="CajaFileInfo.html#CajaFile">CajaFile</a> </dt> -<dt id="ientry-idm139665385307184">CajaFileInfo, <a class="indexterm" href="CajaFileInfo.html">CajaFileInfo</a> +<dt id="ientry-idm140399425459872">CajaFileInfo, <a class="indexterm" href="CajaFileInfo.html">CajaFileInfo</a> </dt> -<dt id="ientry-idm139665385304080">CajaFileInfoIface, <a class="indexterm" href="CajaFileInfo.html#CajaFileInfoIface">struct CajaFileInfoIface</a> +<dt id="ientry-idm140399425456768">CajaFileInfoIface, <a class="indexterm" href="CajaFileInfo.html#CajaFileInfoIface">struct CajaFileInfoIface</a> </dt> -<dt id="ientry-idm139665386331728">CajaInfoProvider, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProvider-struct">CajaInfoProvider</a> +<dt id="ientry-idm140399425639824">CajaInfoProvider, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProvider-struct">CajaInfoProvider</a> </dt> -<dt id="ientry-idm139665386328208">CajaInfoProviderIface, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProviderIface">struct CajaInfoProviderIface</a> +<dt id="ientry-idm140399425636304">CajaInfoProviderIface, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProviderIface">struct CajaInfoProviderIface</a> </dt> -<dt id="ientry-idm139665386543408">CajaInfoProviderUpdateComplete, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProviderUpdateComplete">CajaInfoProviderUpdateComplete ()</a> +<dt id="ientry-idm140399425574096">CajaInfoProviderUpdateComplete, <a class="indexterm" href="CajaInfoProvider.html#CajaInfoProviderUpdateComplete">CajaInfoProviderUpdateComplete ()</a> </dt> -<dt id="ientry-idm139665386151648">CajaLocationWidgetProvider, <a class="indexterm" href="CajaLocationWidgetProvider.html#CajaLocationWidgetProvider-struct">CajaLocationWidgetProvider</a> +<dt id="ientry-idm140399425870560">CajaLocationWidgetProvider, <a class="indexterm" href="CajaLocationWidgetProvider.html#CajaLocationWidgetProvider-struct">CajaLocationWidgetProvider</a> </dt> -<dt id="ientry-idm139665386148016">CajaLocationWidgetProviderIface, <a class="indexterm" href="CajaLocationWidgetProvider.html#CajaLocationWidgetProviderIface">struct CajaLocationWidgetProviderIface</a> +<dt id="ientry-idm140399425866928">CajaLocationWidgetProviderIface, <a class="indexterm" href="CajaLocationWidgetProvider.html#CajaLocationWidgetProviderIface">struct CajaLocationWidgetProviderIface</a> </dt> -<dt id="ientry-idm139665385864448">CajaMenu, <a class="indexterm" href="CajaMenu.html#CajaMenu-struct">struct CajaMenu</a> +<dt id="ientry-idm140399425761552">CajaMenu, <a class="indexterm" href="CajaMenu.html#CajaMenu-struct">struct CajaMenu</a> </dt> -<dt id="ientry-idm139665385764272">CajaMenuItem, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem-struct">struct CajaMenuItem</a> +<dt id="ientry-idm140399425140816">CajaMenuItem, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem-struct">struct CajaMenuItem</a> </dt> -<dt id="ientry-idm139665385715888">CajaMenuItem::activate, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem-activate">The “activate” signal</a> +<dt id="ientry-idm140399425092432">CajaMenuItem::activate, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem-activate">The “activate” signal</a> </dt> -<dt id="ientry-idm139665385758352">CajaMenuItem:icon, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--icon">The “icon” property</a> +<dt id="ientry-idm140399425134896">CajaMenuItem:icon, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--icon">The “icon” property</a> </dt> -<dt id="ientry-idm139665385752512">CajaMenuItem:label, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--label">The “label” property</a> +<dt id="ientry-idm140399425129056">CajaMenuItem:label, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--label">The “label” property</a> </dt> -<dt id="ientry-idm139665385746576">CajaMenuItem:menu, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--menu">The “menu” property</a> +<dt id="ientry-idm140399425123120">CajaMenuItem:menu, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--menu">The “menu” property</a> </dt> -<dt id="ientry-idm139665385741136">CajaMenuItem:name, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--name">The “name” property</a> +<dt id="ientry-idm140399425117680">CajaMenuItem:name, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--name">The “name” property</a> </dt> -<dt id="ientry-idm139665385735200">CajaMenuItem:priority, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--priority">The “priority” property</a> +<dt id="ientry-idm140399425111744">CajaMenuItem:priority, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--priority">The “priority” property</a> </dt> -<dt id="ientry-idm139665385729424">CajaMenuItem:sensitive, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--sensitive">The “sensitive” property</a> +<dt id="ientry-idm140399425105968">CajaMenuItem:sensitive, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--sensitive">The “sensitive” property</a> </dt> -<dt id="ientry-idm139665385723648">CajaMenuItem:tip, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--tip">The “tip” property</a> +<dt id="ientry-idm140399425100192">CajaMenuItem:tip, <a class="indexterm" href="CajaMenuItem.html#CajaMenuItem--tip">The “tip” property</a> </dt> -<dt id="ientry-idm139665385868000">CajaMenuPrivate, <a class="indexterm" href="CajaMenu.html#CajaMenuPrivate">CajaMenuPrivate</a> +<dt id="ientry-idm140399425765104">CajaMenuPrivate, <a class="indexterm" href="CajaMenu.html#CajaMenuPrivate">CajaMenuPrivate</a> </dt> -<dt id="ientry-idm139665385922544">CajaMenuProvider, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProvider-struct">CajaMenuProvider</a> +<dt id="ientry-idm140399425279136">CajaMenuProvider, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProvider-struct">CajaMenuProvider</a> </dt> -<dt id="ientry-idm139665385887296">CajaMenuProvider::items-updated, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProvider-items-updated">The “items-updated” signal</a> +<dt id="ientry-idm140399425243888">CajaMenuProvider::items-updated, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProvider-items-updated">The “items-updated” signal</a> </dt> -<dt id="ientry-idm139665385919024">CajaMenuProviderIface, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProviderIface">struct CajaMenuProviderIface</a> +<dt id="ientry-idm140399425275616">CajaMenuProviderIface, <a class="indexterm" href="CajaMenuProvider.html#CajaMenuProviderIface">struct CajaMenuProviderIface</a> </dt> -<dt id="ientry-idm139665386734480">CajaOperationHandle, <a class="indexterm" href="libcaja-extension-CajaModule.html#CajaOperationHandle">CajaOperationHandle</a> +<dt id="ientry-idm140399430836592">CajaOperationHandle, <a class="indexterm" href="libcaja-extension-CajaModule.html#CajaOperationHandle">CajaOperationHandle</a> </dt> -<dt id="ientry-idm139665386730304">CajaOperationResult, <a class="indexterm" href="libcaja-extension-CajaModule.html#CajaOperationResult">enum CajaOperationResult</a> +<dt id="ientry-idm140399430832416">CajaOperationResult, <a class="indexterm" href="libcaja-extension-CajaModule.html#CajaOperationResult">enum CajaOperationResult</a> </dt> -<dt id="ientry-idm139665385195376">CajaPropertyPage, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage-struct">struct CajaPropertyPage</a> +<dt id="ientry-idm140399424873696">CajaPropertyPage, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage-struct">struct CajaPropertyPage</a> </dt> -<dt id="ientry-idm139665385189440">CajaPropertyPage:label, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--label">The “label” property</a> +<dt id="ientry-idm140399424867760">CajaPropertyPage:label, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--label">The “label” property</a> </dt> -<dt id="ientry-idm139665385184048">CajaPropertyPage:name, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--name">The “name” property</a> +<dt id="ientry-idm140399424862288">CajaPropertyPage:name, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--name">The “name” property</a> </dt> -<dt id="ientry-idm139665385178112">CajaPropertyPage:page, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--page">The “page” property</a> +<dt id="ientry-idm140399424857152">CajaPropertyPage:page, <a class="indexterm" href="CajaPropertyPage.html#CajaPropertyPage--page">The “page” property</a> </dt> -<dt id="ientry-idm139665386991360">CajaPropertyPageProvider, <a class="indexterm" href="CajaPropertyPageProvider.html#CajaPropertyPageProvider-struct">CajaPropertyPageProvider</a> +<dt id="ientry-idm140399424991248">CajaPropertyPageProvider, <a class="indexterm" href="CajaPropertyPageProvider.html#CajaPropertyPageProvider-struct">CajaPropertyPageProvider</a> </dt> -<dt id="ientry-idm139665386987728">CajaPropertyPageProviderIface, <a class="indexterm" href="CajaPropertyPageProvider.html#CajaPropertyPageProviderIface">struct CajaPropertyPageProviderIface</a> +<dt id="ientry-idm140399424987616">CajaPropertyPageProviderIface, <a class="indexterm" href="CajaPropertyPageProvider.html#CajaPropertyPageProviderIface">struct CajaPropertyPageProviderIface</a> </dt> -<dt id="ientry-idm139665387529824">caja_column_new, <a class="indexterm" href="CajaColumn.html#caja-column-new">caja_column_new ()</a> +<dt id="ientry-idm140399430022528">caja_column_new, <a class="indexterm" href="CajaColumn.html#caja-column-new">caja_column_new ()</a> </dt> -<dt id="ientry-idm139665395927008">caja_column_provider_get_columns, <a class="indexterm" href="CajaColumnProvider.html#caja-column-provider-get-columns">caja_column_provider_get_columns ()</a> +<dt id="ientry-idm140399435663776">caja_column_provider_get_columns, <a class="indexterm" href="CajaColumnProvider.html#caja-column-provider-get-columns">caja_column_provider_get_columns ()</a> </dt> -<dt id="ientry-idm139665385313392">CAJA_FILE_DEFINED, <a class="indexterm" href="CajaFileInfo.html#CAJA-FILE-DEFINED:CAPS">CAJA_FILE_DEFINED</a> +<dt id="ientry-idm140399425466080">CAJA_FILE_DEFINED, <a class="indexterm" href="CajaFileInfo.html#CAJA-FILE-DEFINED:CAPS">CAJA_FILE_DEFINED</a> </dt> -<dt id="ientry-idm139665385340288">caja_file_info_add_emblem, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-add-emblem">caja_file_info_add_emblem ()</a> +<dt id="ientry-idm140399425492976">caja_file_info_add_emblem, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-add-emblem">caja_file_info_add_emblem ()</a> </dt> -<dt id="ientry-idm139665385327584">caja_file_info_add_string_attribute, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-add-string-attribute">caja_file_info_add_string_attribute ()</a> +<dt id="ientry-idm140399425480272">caja_file_info_add_string_attribute, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-add-string-attribute">caja_file_info_add_string_attribute ()</a> </dt> -<dt id="ientry-idm139665385345264">caja_file_info_can_write, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-can-write">caja_file_info_can_write ()</a> +<dt id="ientry-idm140399425497952">caja_file_info_can_write, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-can-write">caja_file_info_can_write ()</a> </dt> -<dt id="ientry-idm139665390825216">caja_file_info_create, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-create">caja_file_info_create ()</a> +<dt id="ientry-idm140399426175648">caja_file_info_create, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-create">caja_file_info_create ()</a> </dt> -<dt id="ientry-idm139665390807504">caja_file_info_create_for_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-create-for-uri">caja_file_info_create_for_uri ()</a> +<dt id="ientry-idm140399426157936">caja_file_info_create_for_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-create-for-uri">caja_file_info_create_for_uri ()</a> </dt> -<dt id="ientry-idm139665390789680">caja_file_info_getter, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-getter">caja_file_info_getter ()</a> +<dt id="ientry-idm140399426140112">caja_file_info_getter, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-getter">caja_file_info_getter ()</a> </dt> -<dt id="ientry-idm139665390667776">caja_file_info_get_activation_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-activation-uri">caja_file_info_get_activation_uri ()</a> +<dt id="ientry-idm140399426018208">caja_file_info_get_activation_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-activation-uri">caja_file_info_get_activation_uri ()</a> </dt> -<dt id="ientry-idm139665390704160">caja_file_info_get_file_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-file-type">caja_file_info_get_file_type ()</a> +<dt id="ientry-idm140399426054592">caja_file_info_get_file_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-file-type">caja_file_info_get_file_type ()</a> </dt> -<dt id="ientry-idm139665390698384">caja_file_info_get_location, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-location">caja_file_info_get_location ()</a> +<dt id="ientry-idm140399426048816">caja_file_info_get_location, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-location">caja_file_info_get_location ()</a> </dt> -<dt id="ientry-idm139665385361568">caja_file_info_get_mime_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-mime-type">caja_file_info_get_mime_type ()</a> +<dt id="ientry-idm140399425514256">caja_file_info_get_mime_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-mime-type">caja_file_info_get_mime_type ()</a> </dt> -<dt id="ientry-idm139665385403920">caja_file_info_get_mount, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-mount">caja_file_info_get_mount ()</a> +<dt id="ientry-idm140399425556608">caja_file_info_get_mount, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-mount">caja_file_info_get_mount ()</a> </dt> -<dt id="ientry-idm139665390679232">caja_file_info_get_name, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-name">caja_file_info_get_name ()</a> +<dt id="ientry-idm140399426029664">caja_file_info_get_name, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-name">caja_file_info_get_name ()</a> </dt> -<dt id="ientry-idm139665385380256">caja_file_info_get_parent_info, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-info">caja_file_info_get_parent_info ()</a> +<dt id="ientry-idm140399425532944">caja_file_info_get_parent_info, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-info">caja_file_info_get_parent_info ()</a> </dt> -<dt id="ientry-idm139665390662000">caja_file_info_get_parent_location, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-location">caja_file_info_get_parent_location ()</a> +<dt id="ientry-idm140399426012432">caja_file_info_get_parent_location, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-location">caja_file_info_get_parent_location ()</a> </dt> -<dt id="ientry-idm139665385408896">caja_file_info_get_parent_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-uri">caja_file_info_get_parent_uri ()</a> +<dt id="ientry-idm140399425561584">caja_file_info_get_parent_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-parent-uri">caja_file_info_get_parent_uri ()</a> </dt> -<dt id="ientry-idm139665385333936">caja_file_info_get_string_attribute, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-string-attribute">caja_file_info_get_string_attribute ()</a> +<dt id="ientry-idm140399425486624">caja_file_info_get_string_attribute, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-string-attribute">caja_file_info_get_string_attribute ()</a> </dt> -<dt id="ientry-idm139665390673520">caja_file_info_get_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-uri">caja_file_info_get_uri ()</a> +<dt id="ientry-idm140399426023952">caja_file_info_get_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-uri">caja_file_info_get_uri ()</a> </dt> -<dt id="ientry-idm139665385385232">caja_file_info_get_uri_scheme, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-uri-scheme">caja_file_info_get_uri_scheme ()</a> +<dt id="ientry-idm140399425537920">caja_file_info_get_uri_scheme, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-get-uri-scheme">caja_file_info_get_uri_scheme ()</a> </dt> -<dt id="ientry-idm139665385319856">caja_file_info_invalidate_extension_info, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-invalidate-extension-info">caja_file_info_invalidate_extension_info ()</a> +<dt id="ientry-idm140399425472544">caja_file_info_invalidate_extension_info, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-invalidate-extension-info">caja_file_info_invalidate_extension_info ()</a> </dt> -<dt id="ientry-idm139665385350240">caja_file_info_is_directory, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-directory">caja_file_info_is_directory ()</a> +<dt id="ientry-idm140399425502928">caja_file_info_is_directory, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-directory">caja_file_info_is_directory ()</a> </dt> -<dt id="ientry-idm139665390709904">caja_file_info_is_gone, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-gone">caja_file_info_is_gone ()</a> +<dt id="ientry-idm140399426060336">caja_file_info_is_gone, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-gone">caja_file_info_is_gone ()</a> </dt> -<dt id="ientry-idm139665385356592">caja_file_info_is_mime_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-mime-type">caja_file_info_is_mime_type ()</a> +<dt id="ientry-idm140399425509280">caja_file_info_is_mime_type, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-is-mime-type">caja_file_info_is_mime_type ()</a> </dt> -<dt id="ientry-idm139665390781088">caja_file_info_list_copy, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-list-copy">caja_file_info_list_copy ()</a> +<dt id="ientry-idm140399426131520">caja_file_info_list_copy, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-list-copy">caja_file_info_list_copy ()</a> </dt> -<dt id="ientry-idm139665390761136">caja_file_info_list_free, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-list-free">caja_file_info_list_free ()</a> +<dt id="ientry-idm140399426111568">caja_file_info_list_free, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-list-free">caja_file_info_list_free ()</a> </dt> -<dt id="ientry-idm139665390745440">caja_file_info_lookup, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-lookup">caja_file_info_lookup ()</a> +<dt id="ientry-idm140399426095872">caja_file_info_lookup, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-lookup">caja_file_info_lookup ()</a> </dt> -<dt id="ientry-idm139665390727728">caja_file_info_lookup_for_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-lookup-for-uri">caja_file_info_lookup_for_uri ()</a> +<dt id="ientry-idm140399426078160">caja_file_info_lookup_for_uri, <a class="indexterm" href="CajaFileInfo.html#caja-file-info-lookup-for-uri">caja_file_info_lookup_for_uri ()</a> </dt> -<dt id="ientry-idm139665386350464">caja_info_provider_cancel_update, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-cancel-update">caja_info_provider_cancel_update ()</a> +<dt id="ientry-idm140399430136032">caja_info_provider_cancel_update, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-cancel-update">caja_info_provider_cancel_update ()</a> </dt> -<dt id="ientry-idm139665386343408">caja_info_provider_update_complete_invoke, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-update-complete-invoke">caja_info_provider_update_complete_invoke ()</a> +<dt id="ientry-idm140399425651504">caja_info_provider_update_complete_invoke, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-update-complete-invoke">caja_info_provider_update_complete_invoke ()</a> </dt> -<dt id="ientry-idm139665386360512">caja_info_provider_update_file_info, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-update-file-info">caja_info_provider_update_file_info ()</a> +<dt id="ientry-idm140399430146080">caja_info_provider_update_file_info, <a class="indexterm" href="CajaInfoProvider.html#caja-info-provider-update-file-info">caja_info_provider_update_file_info ()</a> </dt> -<dt id="ientry-idm139665389460640">caja_location_widget_provider_get_widget, <a class="indexterm" href="CajaLocationWidgetProvider.html#caja-location-widget-provider-get-widget">caja_location_widget_provider_get_widget ()</a> +<dt id="ientry-idm140399427214848">caja_location_widget_provider_get_widget, <a class="indexterm" href="CajaLocationWidgetProvider.html#caja-location-widget-provider-get-widget">caja_location_widget_provider_get_widget ()</a> </dt> -<dt id="ientry-idm139665389115696">caja_menu_append_item, <a class="indexterm" href="CajaMenu.html#caja-menu-append-item">caja_menu_append_item ()</a> +<dt id="ientry-idm140399425911712">caja_menu_append_item, <a class="indexterm" href="CajaMenu.html#caja-menu-append-item">caja_menu_append_item ()</a> </dt> -<dt id="ientry-idm139665386061120">caja_menu_get_items, <a class="indexterm" href="CajaMenu.html#caja-menu-get-items">caja_menu_get_items ()</a> +<dt id="ientry-idm140399425801424">caja_menu_get_items, <a class="indexterm" href="CajaMenu.html#caja-menu-get-items">caja_menu_get_items ()</a> </dt> -<dt id="ientry-idm139665385801520">caja_menu_item_activate, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-activate">caja_menu_item_activate ()</a> +<dt id="ientry-idm140399425178064">caja_menu_item_activate, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-activate">caja_menu_item_activate ()</a> </dt> -<dt id="ientry-idm139665385835360">caja_menu_item_get_type, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-get-type">caja_menu_item_get_type ()</a> +<dt id="ientry-idm140399425211904">caja_menu_item_get_type, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-get-type">caja_menu_item_get_type ()</a> </dt> -<dt id="ientry-idm139665386042240">caja_menu_item_list_free, <a class="indexterm" href="CajaMenu.html#caja-menu-item-list-free">caja_menu_item_list_free ()</a> +<dt id="ientry-idm140399425782544">caja_menu_item_list_free, <a class="indexterm" href="CajaMenu.html#caja-menu-item-list-free">caja_menu_item_list_free ()</a> </dt> -<dt id="ientry-idm139665385830224">caja_menu_item_new, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-new">caja_menu_item_new ()</a> +<dt id="ientry-idm140399425206768">caja_menu_item_new, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-new">caja_menu_item_new ()</a> </dt> -<dt id="ientry-idm139665385786560">caja_menu_item_set_submenu, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-set-submenu">caja_menu_item_set_submenu ()</a> +<dt id="ientry-idm140399425163104">caja_menu_item_set_submenu, <a class="indexterm" href="CajaMenuItem.html#caja-menu-item-set-submenu">caja_menu_item_set_submenu ()</a> </dt> -<dt id="ientry-idm139665389120784">caja_menu_new, <a class="indexterm" href="CajaMenu.html#caja-menu-new">caja_menu_new ()</a> +<dt id="ientry-idm140399425916800">caja_menu_new, <a class="indexterm" href="CajaMenu.html#caja-menu-new">caja_menu_new ()</a> </dt> -<dt id="ientry-idm139665385929952">caja_menu_provider_emit_items_updated_signal, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-emit-items-updated-signal">caja_menu_provider_emit_items_updated_signal ()</a> +<dt id="ientry-idm140399425286544">caja_menu_provider_emit_items_updated_signal, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-emit-items-updated-signal">caja_menu_provider_emit_items_updated_signal ()</a> </dt> -<dt id="ientry-idm139665385983824">caja_menu_provider_get_background_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-background-items">caja_menu_provider_get_background_items ()</a> +<dt id="ientry-idm140399425340416">caja_menu_provider_get_background_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-background-items">caja_menu_provider_get_background_items ()</a> </dt> -<dt id="ientry-idm139665386567136">caja_menu_provider_get_file_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-file-items">caja_menu_provider_get_file_items ()</a> +<dt id="ientry-idm140399426249552">caja_menu_provider_get_file_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-file-items">caja_menu_provider_get_file_items ()</a> </dt> -<dt id="ientry-idm139665385956768">caja_menu_provider_get_toolbar_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-toolbar-items">caja_menu_provider_get_toolbar_items ()</a> +<dt id="ientry-idm140399425313360">caja_menu_provider_get_toolbar_items, <a class="indexterm" href="CajaMenuProvider.html#caja-menu-provider-get-toolbar-items">caja_menu_provider_get_toolbar_items ()</a> </dt> -<dt id="ientry-idm139665388626064">caja_module_initialize, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-initialize">caja_module_initialize ()</a> +<dt id="ientry-idm140399427800048">caja_module_initialize, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-initialize">caja_module_initialize ()</a> </dt> -<dt id="ientry-idm139665386745520">caja_module_list_pyfiles, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-list-pyfiles">caja_module_list_pyfiles ()</a> +<dt id="ientry-idm140399430847632">caja_module_list_pyfiles, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-list-pyfiles">caja_module_list_pyfiles ()</a> </dt> -<dt id="ientry-idm139665388615216">caja_module_list_types, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-list-types">caja_module_list_types ()</a> +<dt id="ientry-idm140399430854960">caja_module_list_types, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-list-types">caja_module_list_types ()</a> </dt> -<dt id="ientry-idm139665388620352">caja_module_shutdown, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-shutdown">caja_module_shutdown ()</a> +<dt id="ientry-idm140399430860096">caja_module_shutdown, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-module-shutdown">caja_module_shutdown ()</a> </dt> -<dt id="ientry-idm139665388786704">caja_operation_result_get_type, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-operation-result-get-type">caja_operation_result_get_type ()</a> +<dt id="ientry-idm140399427805232">caja_operation_result_get_type, <a class="indexterm" href="libcaja-extension-CajaModule.html#caja-operation-result-get-type">caja_operation_result_get_type ()</a> </dt> -<dt id="ientry-idm139665386110224">caja_property_page_new, <a class="indexterm" href="CajaPropertyPage.html#caja-property-page-new">caja_property_page_new ()</a> +<dt id="ientry-idm140399427052720">caja_property_page_new, <a class="indexterm" href="CajaPropertyPage.html#caja-property-page-new">caja_property_page_new ()</a> </dt> -<dt id="ientry-idm139665385428544">caja_property_page_provider_get_pages, <a class="indexterm" href="CajaPropertyPageProvider.html#caja-property-page-provider-get-pages">caja_property_page_provider_get_pages ()</a> +<dt id="ientry-idm140399427145760">caja_property_page_provider_get_pages, <a class="indexterm" href="CajaPropertyPageProvider.html#caja-property-page-provider-get-pages">caja_property_page_provider_get_pages ()</a> </dt> -<dt id="ientry-idm139665386738064">CAJA_TYPE_OPERATION_RESULT, <a class="indexterm" href="libcaja-extension-CajaModule.html#CAJA-TYPE-OPERATION-RESULT:CAPS">CAJA_TYPE_OPERATION_RESULT</a> +<dt id="ientry-idm140399430840176">CAJA_TYPE_OPERATION_RESULT, <a class="indexterm" href="libcaja-extension-CajaModule.html#CAJA-TYPE-OPERATION-RESULT:CAPS">CAJA_TYPE_OPERATION_RESULT</a> </dt> </dl> </div></div> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/eel/eel-background.c new/caja-1.18.5/eel/eel-background.c --- old/caja-1.18.4/eel/eel-background.c 2017-08-26 11:10:04.000000000 +0200 +++ new/caja-1.18.5/eel/eel-background.c 2017-11-13 10:37:38.000000000 +0100 @@ -1033,6 +1033,14 @@ eel_bg_load_from_gsettings (EelBackground *self, GSettings *settings) { + char *keyfile = g_settings_get_string (settings, MATE_BG_KEY_PICTURE_FILENAME); + + if (!g_file_test (keyfile, G_FILE_TEST_EXISTS) && (*keyfile != '\0')) + { + *keyfile = '\0'; + g_settings_set_string (settings, MATE_BG_KEY_PICTURE_FILENAME, keyfile); + } + if (self->details->bg) mate_bg_load_from_gsettings (self->details->bg, settings); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/libcaja-private/caja-icon-dnd.c new/caja-1.18.5/libcaja-private/caja-icon-dnd.c --- old/caja-1.18.4/libcaja-private/caja-icon-dnd.c 2017-08-26 11:10:05.000000000 +0200 +++ new/caja-1.18.5/libcaja-private/caja-icon-dnd.c 2017-11-13 10:37:40.000000000 +0100 @@ -1573,7 +1573,7 @@ style = gtk_widget_get_style_context (widget); gtk_style_context_save (style); - gtk_style_context_add_class (style, "dnd"); + gtk_style_context_add_class (style, GTK_STYLE_CLASS_DND); gtk_style_context_set_state (style, GTK_STATE_FLAG_FOCUSED); gtk_render_frame (style, @@ -1582,11 +1582,6 @@ gtk_style_context_restore (style); - cairo_set_line_width (cr, 1.0); - cairo_set_source_rgb (cr, 0, 0, 0); - cairo_rectangle (cr, 0.5, 0.5, width - 1, height - 1); - - cairo_stroke (cr); return FALSE; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/src/caja-zoom-control.c new/caja-1.18.5/src/caja-zoom-control.c --- old/caja-1.18.4/src/caja-zoom-control.c 2017-08-26 11:10:07.000000000 +0200 +++ new/caja-1.18.5/src/caja-zoom-control.c 2017-11-13 10:37:41.000000000 +0100 @@ -344,7 +344,8 @@ gtk_widget_add_events (GTK_WIDGET (zoom_control->details->zoom_button), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - | GDK_POINTER_MOTION_MASK); + | GDK_POINTER_MOTION_MASK + | GDK_SCROLL_MASK); g_signal_connect (G_OBJECT (zoom_control->details->zoom_button), "button-press-event", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/src/file-manager/fm-directory-view.c new/caja-1.18.5/src/file-manager/fm-directory-view.c --- old/caja-1.18.4/src/file-manager/fm-directory-view.c 2017-08-26 11:10:07.000000000 +0200 +++ new/caja-1.18.5/src/file-manager/fm-directory-view.c 2017-11-13 10:37:41.000000000 +0100 @@ -1063,7 +1063,7 @@ GtkAction *action; action = gtk_action_group_get_action (view->details->dir_action_group, - FM_ACTION_DELETE); + FM_ACTION_TRASH); if (gtk_action_get_sensitive (action) && gtk_action_get_visible (action)) { delete_selected_files (view); @@ -7288,7 +7288,7 @@ /* tooltip */ NULL, G_CALLBACK (action_open_callback) }, /* name, stock id */ { "OpenAlternate", NULL, - /* label, accelerator */ N_("Open in Navigation Window"), "<control><shift>o", + /* label, accelerator */ N_("Open in Navigation Window"), "<control><shift>w", /* tooltip */ N_("Open each selected item in a navigation window"), G_CALLBACK (action_open_alternate_callback) }, /* name, stock id */ { "OpenInNewTab", NULL, @@ -7368,7 +7368,7 @@ /* tooltip */ N_("Move each selected item to the Trash"), G_CALLBACK (action_trash_callback) }, /* name, stock id */ { "Delete", NULL, - /* label, accelerator */ N_("_Delete"), "<shift>Delete", + /* label, accelerator */ N_("_Delete"), NULL, /* tooltip */ N_("Delete each selected item, without moving to the Trash"), G_CALLBACK (action_delete_callback) }, /* name, stock id */ { "Restore From Trash", NULL, @@ -11074,6 +11074,8 @@ "trash", 0); gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Delete, 0, "trash", 0); + gtk_binding_entry_add_signal (binding_set, GDK_KEY_Delete, GDK_SHIFT_MASK, + "delete", 0); gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Delete, GDK_SHIFT_MASK, "delete", 0); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/caja-1.18.4/src/file-manager/fm-list-view.c new/caja-1.18.5/src/file-manager/fm-list-view.c --- old/caja-1.18.4/src/file-manager/fm-list-view.c 2017-08-26 11:34:58.000000000 +0200 +++ new/caja-1.18.5/src/file-manager/fm-list-view.c 2017-11-13 10:38:06.000000000 +0100 @@ -1099,6 +1099,7 @@ key_press_callback (GtkWidget *widget, GdkEventKey *event, gpointer callback_data) { FMDirectoryView *view; + FMListView *listview; GdkEventButton button_event = { 0 }; gboolean handled; GtkTreeView *tree_view; @@ -1107,6 +1108,7 @@ tree_view = GTK_TREE_VIEW (widget); view = FM_DIRECTORY_VIEW (callback_data); + listview = FM_LIST_VIEW (view); handled = FALSE; switch (event->keyval) @@ -1167,17 +1169,26 @@ break; case GDK_KEY_Return: case GDK_KEY_KP_Enter: - if ((event->state & GDK_SHIFT_MASK) != 0) - { - activate_selected_items_alternate (FM_LIST_VIEW (view), NULL, TRUE); - } - else - { - activate_selected_items (FM_LIST_VIEW (view)); - } - handled = TRUE; + if (GTK_IS_CELL_EDITABLE (listview->details->editable_widget) && + ((event->state & GDK_SHIFT_MASK) || (event->state & GDK_CONTROL_MASK))) + { + event->state = 0; + handled = FALSE; + } + else + { + if ((event->state & GDK_SHIFT_MASK) != 0) + { + activate_selected_items_alternate (FM_LIST_VIEW (view), NULL, TRUE); + } + else + { + activate_selected_items (FM_LIST_VIEW (view)); + } + handled = TRUE; + } break; - case GDK_KEY_v: + case GDK_KEY_v: /* Eat Control + v to not enable type ahead */ if ((event->state & GDK_CONTROL_MASK) != 0) { @@ -1765,7 +1776,6 @@ gtk_tree_view_column_set_sort_column_id (view->details->file_name_column, column_num); gtk_tree_view_column_set_title (view->details->file_name_column, _("Name")); gtk_tree_view_column_set_resizable (view->details->file_name_column, TRUE); - gtk_tree_view_column_set_sizing(view->details->file_name_column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_pack_start (view->details->file_name_column, cell, FALSE); gtk_tree_view_column_set_attributes (view->details->file_name_column, @@ -1805,7 +1815,6 @@ column); gtk_tree_view_column_set_resizable (column, TRUE); - gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); } g_free (name); g_free (label); @@ -2535,7 +2544,7 @@ box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); gtk_container_set_border_width (GTK_CONTAINER (box), 12); gtk_widget_show (box); - gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (window))), box); + gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (window))), box, TRUE, TRUE, 0); label_text = _("Choose the order of information to appear in this folder:"); str = g_strconcat ("<b>", label_text, "</b>", NULL); @@ -2778,6 +2787,9 @@ gtk_cell_renderer_set_fixed_size (GTK_CELL_RENDERER (view->details->pixbuf_cell), -1, icon_size); + /* FIXME: https://bugzilla.gnome.org/show_bug.cgi?id=641518 */ + gtk_tree_view_columns_autosize (view->details->tree_view); + fm_directory_view_update_menus (FM_DIRECTORY_VIEW (view)); gtk_tree_model_foreach (GTK_TREE_MODEL (view->details->model), list_view_changed_foreach, NULL);
