summaryrefslogtreecommitdiff
path: root/src/file-manager
AgeCommit message (Collapse)AuthorFilesLines
2014-01-27Add option to show file sizes with IEC units instead of SI unitsStefano Karapetsas2-6/+19
Contains also a typo fix for the previous commit Closes #203 https://github.com/mate-desktop/caja/issues/203
2014-01-27Add "Open parent location" in menu if we are in search viewStefano Karapetsas1-0/+94
It is shown if only one file is selected, and if it isn't a directory
2013-12-22Update help uri to the correct locationinfirit2-2/+2
2013-10-19Rename INCLUDES to AM_CPPFLAGS in MakefileStefano Karapetsas1-1/+1
2013-10-06Properly free GHashTable in properties windowStefano Karapetsas1-1/+1
Closes #178 https://github.com/mate-desktop/mate-file-manager/issues/178 I had to recover two functions previously removed in eel-glib-extensions.
2013-09-19Possible fix for crash during file rename in external devicesStefano Karapetsas1-2/+1
Bug report: https://bugzilla.redhat.com/show_bug.cgi?id=1005660 Solution from: https://git.gnome.org/browse/nautilus/commit/src/nautilus-icon-view.c?h=gnome-3-2&id=a67212a
2013-09-18Possible fix for crash during audio previewStefano Karapetsas1-0/+2
See https://bugzilla.redhat.com/show_bug.cgi?id=959444
2013-09-01Fix spatial mode crash and shift+double clickinfirit1-1/+1
Fixes issues: https://github.com/mate-desktop/mate-file-manager/issues/120 https://github.com/mate-desktop/mate-file-manager/issues/161
2013-08-01Replace ghelp: with help: for user-guideinfirit2-2/+2
2013-07-25src: Add GTK3/GDK3 supportStefano Karapetsas1-0/+16
2013-07-25Fixes for GTK3 supportStefano Karapetsas1-0/+7
2013-07-24Update for mate-desktop changesStefano Karapetsas1-1/+1
2012-12-22[all] silence warnings from GCC 4.6Jasmine Hassan6-35/+6
GCC 4.6 introduced a new warning about variables declared and initialized, but not really used in the function body. Remove all of these occurrences to build cleanly. http://git.gnome.org/browse/nautilus/commit/?id=d4230de8667764e02dbb966b5d806ff78ced2fd5
2012-12-22[desktop-icon-view] don't use eel helper to set adjustment valuesJasmine Hassan1-2/+2
http://git.gnome.org/browse/nautilus/commit/?id=8b4271f5ad62d00b76d7e34a594c9b1819eb495e
2012-12-03[directory-bg] rewrite/refactor, untangle directory & desktop bg-setting codeJasmine Hassan1-5/+2
- Fixes crashes when resizing a VM window in VirtualBox. - Adds a method to allow handling desktop reset.
2012-11-23[src] fix some incompatible pointer type warningsJasmine Hassan2-2/+2
including a silly mistake in caja-window where destroy function's return type was accidently ommitted during the addition of gtk version checks.
2012-11-23[all] include src/glibcompat.h & use g_list_free_full() where neededJasmine Hassan6-66/+44
Also fixes a double-free regression in lc-p/caja-query from 7a42b9b0
2012-11-23[directory-view] fix double-free regression from 7a42b9b0Jasmine Hassan1-2/+0
2012-11-16[all] use g_list_free() and g_strcmp0 instead of eel functionsJasmine Hassan6-39/+66
Was: general: use g_list_free_full() instead of eel functions http://git.gnome.org/browse/nautilus/commit/?id=5e669515fd7f760382e6b7aa1449734a35a2d7f4 . Instead of g_list_free_full(), we use g_list_foreach and g_list_free() to avoid unnecessary glib dependency bump to 2.28
2012-11-16[general] use new GtkScrollable interfaceJasmine Hassan1-2/+8
http://git.gnome.org/browse/nautilus/commit/?id=d811553a4e74106efdf8bf6c91c6d29944ed6df7 canvas: use GTK_LAYOUT casts instead of going through the parent struct http://git.gnome.org/browse/nautilus/commit/?id=2260005986d8c620669e56c4b9f2fba12e8e0625
2012-11-16[src] replace deprecated GtkComboBox text APIs with GtkComboBoxTextJasmine Hassan1-5/+5
[src] don't use GtkComboBox text APIs (#632651) They got replaced by GtkComboBoxText. Thanks to Mathias Clasen and Flo Gravo. http://git.gnome.org/browse/nautilus/commit/?id=f123f99bee1005cd279783f9d441f538fcf85542
2012-11-16[icon-view] if possible, use the local path for the previewJasmine Hassan1-1/+17
This solves issues where the audio previewer is not capable of understanding some GVfs URIs. (#624841) http://git.gnome.org/browse/nautilus/commit/?id=ebcbb167876f8b4491af0bc86bc29015c211b3af
2012-11-16[properties-window] split some long linesJasmine Hassan1-8/+32
http://git.gnome.org/browse/nautilus/commit/?id=64819695a13eb636df535e08e0eed6e896a8821c
2012-11-16[properties-window] don't use expose-event to draw the pie chartJasmine Hassan1-12/+50
Use GtkWidget::draw instead http://git.gnome.org/browse/nautilus/commit/?id=5ece5d67163e30a91e600d2f2bcf0d657d365dc4
2012-11-16[desktop-icon-view] don't use gdk_drawable_get_screen()Jasmine Hassan1-1/+1
http://git.gnome.org/browse/nautilus/commit/?id=b1aac113ef867846fb39ee4187378c6f1a13f33e
2012-11-16[src] don't use GtkObject (GTK3)Jasmine Hassan4-17/+48
the ::destroy signal of GtkObject has only been moved to GtkWidget in GTK3 (after GtkObject removal): http://developer.gnome.org/gtk3/3.0/ch25s02.html So we use conditionals in this case, to keep it working with GTK2. A tad similar: http://git.gnome.org/browse/nautilus/commit/?id=cc6cb51e827c0b15d4ef09f12d37b9f331ddcef8
2012-11-16[icon-view] Don't use GtkObject nor eel-gtk-macrosJasmine Hassan1-32/+12
Similar to the commit linked below, but without moving background-setting code to FMDesktopIconView http://git.gnome.org/browse/nautilus/commit/?id=ab0616de55f6f817a745caac26fd2b38ae41b71b
2012-11-16[build] don't include marshals we don't ownJasmine Hassan1-1/+0
http://git.gnome.org/browse/nautilus/commit/?id=8d07a73b28767b7c866fe403e9ac706b8affb8a2
2012-11-16[src] convert to new GDK_KEY prefixJasmine Hassan3-12/+12
http://git.gnome.org/browse/nautilus/commit/?id=71fa1a50145a6f06da3b805a29e75c1295fd546b Also, make sure we use GDK_KEY prefix in places-sidebar where this patch was previously applied to Caja but with old prefix: places-sidebar: allow keyboard navigation with Enter/Space (#637768) http://git.gnome.org/browse/nautilus/commit/?id=fd03c910a73ba18459e68baaf15e8dd295acd5c1
2012-11-16[all] Don't use gtk_dialog_set_has_separator()Jasmine Hassan2-4/+2
http://git.gnome.org/browse/nautilus/commit/?id=73e2941f9b837d5d0326e6e88caa7a1e3fdcabeb
2012-11-16[lc-p/fm] Replace deprecated GDK_DISPLAY with GDK_DISPLAY_XDISPLAYJasmine Hassan1-2/+2
Don't use GDK_DISPLAY () http://git.gnome.org/browse/nautilus/commit/?id=b66ce0fd23500f9727c1aac93366430285575697
2012-11-16[all] use GtkMessageDialog instead of EelAlertDialog (going away)Jasmine Hassan1-1/+0
This covers 4 commits: file-operations: use GtkMessageDialog http://git.gnome.org/browse/nautilus/commit/?id=51ec5861ca0697e802e8c003053211ac12f2fd54 mime-actions: use GtkMessageDialog http://git.gnome.org/browse/nautilus/commit/?id=7a3dcdd4bf667aac271be74988770e18575a7df2 tree-view: don't include eel-alert-dialog.h http://git.gnome.org/browse/nautilus/commit/?id=930af7f3058eed256a42c0c1558c7307bb93f411 [eel] use GtkMessageDialog for stock dialogs http://git.gnome.org/browse/nautilus/commit/?id=82c5b6c0d82ebd8a705d542fcc9aa58e6e9b0da4
2012-11-16[file-manager] autogenerate marshallersJasmine Hassan2-7/+42
http://git.gnome.org/browse/nautilus/commit/?id=21e75511d2466bd814a31031472323d3cd8ae6c1
2012-11-16[tree-model] ony display the first emblemJasmine Hassan1-17/+12
Only display the first emblem we can render. http://git.gnome.org/browse/nautilus/commit/?id=1d660252b408f3628a2d3d5943abcf6bfdd9091b
2012-11-14[tree-view] don't use NautilusCellRendererPixbufEmblemJasmine Hassan1-3/+1
http://git.gnome.org/browse/nautilus/commit/?id=d2cbf993766d7b63f50431ab483035d01c267cdb
2012-11-14[tree-model] use GEmblemedIcon to render emblems.Jasmine Hassan2-87/+49
Use GEmblemedIcon instead of a separate column to render emblems. http://git.gnome.org/browse/nautilus/commit/?id=1694d7141bbe4a29e54cff77def697a6c9b4e118
2012-11-14[list-view] don't use NautilusCellRendererPixbufEmblemJasmine Hassan1-6/+2
http://git.gnome.org/browse/nautilus/commit/?id=69740a3c7fd3a2e1cea99c0dc61b3c735993e4bb
2012-11-14[list-model] use GEmblemedIcon to render emblemsJasmine Hassan2-109/+49
Use GEmblemedIcon instead of other columns to render emblems. http://git.gnome.org/browse/nautilus/commit/?id=a187f8a4cdcc46f56c0cb03c31b9b7c92c747a88&context=6
2012-11-13[src] remove 2 unused includesJasmine Hassan1-1/+0
2012-09-06remove old undo codeStefano Karapetsas1-23/+0
2012-09-05convert disable-command-line lockdown to gsettingsStefano Karapetsas2-44/+14
2012-09-05remove latest mateconf stuffStefano Karapetsas1-1/+0
2012-09-05convert last eel_preference users to raw mateconfStefano Karapetsas2-15/+31
from nautilus patch: This is moslty the lockdown stuff, but we also access the background setting. This should be converted to use the new gsettings when they land.
2012-09-05remove old file-limit preferenceStefano Karapetsas2-56/+0
2012-09-05fix conversion of enable-deleteStefano Karapetsas1-4/+5
2012-09-05move desktop-font preference to desktop settingsStefano Karapetsas1-2/+2
2012-09-05convert list-view preferences to gsettingsStefano Karapetsas2-98/+75
also move the sort order prefs from view-specific to common prefs we already only have one UI setting that controls both, so it makes no sense to have two settings. (from nautilus 3.0)
2012-09-05convert compact view prefs to gsettingsStefano Karapetsas1-10/+19
2012-09-05convert tree sidebar prefs to gsettingsStefano Karapetsas1-4/+8
2012-09-05fix desktop-font gsettings conversionStefano Karapetsas1-3/+8