summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated Japanese translationTakayuki KUSANO2012-10-111-6/+4
|
* list-view: don't call parent when the row has been selectedCosimo Cecchi2012-10-101-1/+3
| | | | | | | | This is a regression from commit 0b9ddf8826d68325f3070723e73177f134bc8b1f, which broke dragging multiple rows. https://bugzilla.gnome.org/show_bug.cgi?id=683751
* pathbar: consistently use symbolic icons for root elements in pathbarCosimo Cecchi2012-10-101-53/+29
| | | | We were still using non-symbolic icons for mount roots.
* Fixed Russian translationYuri Myasoedov2012-10-091-2/+2
|
* l10n: Updated Persian translationArash Mousavi2012-10-071-2684/+3071
|
* Updated Czech translationMarek Černocký2012-10-071-385/+406
|
* Updated Hebrew translation.Yaron Shahrabani2012-10-051-560/+592
|
* canvas-container: remove NautilusCanvasLayoutModeCosimo Cecchi2012-10-045-268/+12
| | | | | | | | Since we use the vertical layout only for the desktop these days, remove NautilusCanvasLayoutMode completely, and just return TRUE from nautilus_canvas_container_layout_is_vertical() if we're a desktop container. This allows to remove a lot of unused layouting code.
* desktop-canvas-view: remove an obsolete hack for BonoboPlugCosimo Cecchi2012-10-041-15/+0
|
* desktop-canvas: set margins according to the primary workareaCosimo Cecchi2012-10-041-13/+13
| | | | | | | | | | | | | This ensures desktop icons are pinned to the primary monitor, instead of moving around when plugging in a new display. There's also a slight change in behavior introduced by this patch - that is for multihead configurations where the first monitor in visible order is not the primary one, it won't be possible to move desktop icons to monitors to the left, or to the top, of the primary monitor - in other words, desktop icons layout starts from the primary monitor and expands rightwards/downwards. https://bugzilla.gnome.org/show_bug.cgi?id=420624
* list-view: clear the renaming file when stopping cell editingCosimo Cecchi2012-10-021-0/+2
| | | | | | | If the renaming_file member sticks around, we will ignore activation of new files. Instead, make sure to clear it out when the model is cleared. https://bugzilla.gnome.org/show_bug.cgi?id=685109
* slot: refactor some codeCosimo Cecchi2012-10-021-37/+37
| | | | | Factor out two functions, to show and hide the query editor, and use them from nautilus_window_slot_set_query_editor_visible()
* slot: use the pending location when creating a query editor in loadingCosimo Cecchi2012-10-021-2/+15
| | | | | | Or we'll segfault calling nautilus_directory_get() on a NULL location. https://bugzilla.gnome.org/show_bug.cgi?id=685293
* slot: make sure we have signal handlers before disconnecting themCosimo Cecchi2012-10-021-6/+14
| | | | | This makes the code more robust in case it's called e.g. with visible = FALSE on a slot that already has the query editor hidden.
* application: display an error dialog when connecting to server failsCosimo Cecchi2012-10-021-2/+5
| | | | | | | | Since we always return TRUE from the nautilus_window_go_to_full() callback, we fail to show the error dialog in case connecting fails, and we print a warning to command line. In case there's an error, remove the warning and return FALSE instead, to report the error to the user.
* directory: simplify directory creation in a single placeCosimo Cecchi2012-10-023-21/+21
| | | | | | nautilus_directory_new() is now the only place that calls g_object_new() to create a new directory. Replace the _from_saved_search() constructor with a setter.
* file: remove unused NautilusSavedSearchFileCosimo Cecchi2012-10-024-115/+1
| | | | | Since we now always override the file type when creating the NautilusFile, there's no need for a separate, empty, subclass.
* file: always override file type for saved search filesCosimo Cecchi2012-10-021-4/+7
| | | | | | | And not only when first creating it from a GFileInfo, or we'll lose such information when e.g. browsing the history list. https://bugzilla.gnome.org/show_bug.cgi?id=685155
* search-directory: don't update the search file name for saved searchesCosimo Cecchi2012-10-021-2/+2
| | | | | | Since in that case we don't have a NautilusSearchDirectoryFile. https://bugzilla.gnome.org/show_bug.cgi?id=685155
* directory: make the location GFile a construct propertyCosimo Cecchi2012-10-022-10/+64
| | | | | | | | | Since nautilus_search_directory_new_from_saved_search() expects the location field to be already populated after g_object_new() is called (and it's a reasonable expectation), make it a construct only property. This will also allow further cleanups in the directory code later. https://bugzilla.gnome.org/show_bug.cgi?id=685155
* [l10n] Update Japanese translationYasumichi Akahoshi2012-10-021-3/+3
|
* image-properties: add a comment for translatorsCosimo Cecchi2012-10-021-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=685189
* Updated Belarusian translation.Ihar Hrachyshka2012-10-021-387/+458
|
* Updated Lithuanian translationŽygimantas Beručka2012-09-301-634/+885
|
* Updated Bulgarian translationAlexander Shopov2012-09-291-2548/+1816
|
* Updated Greek translationTom Tryfonidis2012-09-291-453/+484
|
* shell-provider: get a timestamp from X when activating the fileCosimo Cecchi2012-09-281-1/+58
| | | | | | | Since the WM itself spawns us, I think the API should pass the timestamp down; since it doesn't, get a timestamp ourselves. https://bugzilla.gnome.org/show_bug.cgi?id=674816
* Added Aragonese translationDaniel Martinez Cucalon2012-09-292-0/+5725
|
* application: don't open the default display when parsing optionsCosimo Cecchi2012-09-281-1/+1
| | | | | | | | | | | | | | | Opening the default display when parsing options means we'll do it in non-primary instances of the application. When the default display is opened, _gdk_x11_display_make_default() will be called, which reads and removed DESKTOP_STARTUP_ID from the environment - but we need to keep DESKTOP_STARTUP_ID around until add_platform_data() is called in the non-primary instance, which takes care of forwarding it to the primary instance. This fixes the busy spinning cursor being stuck when opening multiple Nautilus windows. https://bugzilla.gnome.org/show_bug.cgi?id=664147
* search-engine-tracker: complete search in idle if we got no connectionCosimo Cecchi2012-09-281-14/+21
| | | | | | | Instead of returning a NULL engine, which will cause criticals later, since NautilusSearchEngine will still try to call start() on it. https://bugzilla.gnome.org/show_bug.cgi?id=685014
* search: simplify setting NautilusQueryCosimo Cecchi2012-09-285-46/+11
| | | | | | Assume we have a valid query object passed to nautilus_search_engine_set_query(), as that is always true in the current code.
* search: factor out a common helper function and use itCosimo Cecchi2012-09-265-42/+31
|
* search-engine-model: normalize both strings before comparisonCosimo Cecchi2012-09-261-12/+22
| | | | | | Or the pattern matching will fail for non-ASCII characters. https://bugzilla.gnome.org/show_bug.cgi?id=684852
* search-directory: only set base model when it matches query locationCosimo Cecchi2012-09-261-0/+20
| | | | | | | Otherwise we'll return results from the wrong base directory for searches that are saved, or from the back/forward history. https://bugzilla.gnome.org/show_bug.cgi?id=684769
* Added uk translationDaniel Korostil2012-09-261-2/+1
|
* Added uk translationDaniel Korostil2012-09-261-1860/+1955
|
* po: fix POTFILES.inCosimo Cecchi2012-09-261-0/+1
|
* shell-search-provider: consolidate string matching for builtin placesCosimo Cecchi2012-09-261-75/+69
| | | | | | | Instead of immediately adding hits to the hash table for every type we're interested in, and loop through the terms array every time, first build a list of builtin match candidates, and then check in a single loop if they're valid search results.
* shell-search-provider: include Home and Trash among the resultsCosimo Cecchi2012-09-261-0/+37
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=684697
* bookmark: include icons for XDG special directories in NautilusBookmarkCosimo Cecchi2012-09-261-2/+39
| | | | | This ensures we also return the right icon in the shell search provider when an XDG directory is in the results.
* file-utilities: export special_directory_get_icon()Cosimo Cecchi2012-09-264-28/+52
| | | | Will be useful to get the icon for XDG bookmarks.
* Updated Latvian translationRūdolfs Mazurs2012-09-261-716/+468
|
* Updated Galician translationsFran Diéguez2012-09-251-4/+4
|
* Updated Portuguese translationDuarte Loreto2012-09-251-416/+440
|
* Updated Spanish translationDaniel Mustieles2012-09-251-467/+498
|
* Updated Galician translationsFran Diéguez2012-09-251-408/+441
|
* shell-search-provider: warn against NULL strings before normalizingCosimo Cecchi2012-09-251-0/+6
| | | | | | | | | Since g_mount_get_name() and nautilus_bookmark_get_name() can possibly return NULL, warn against it before normalizing the string and trying to compare it with the search terms. This fixes a crasher in the shell search provider. https://bugzilla.gnome.org/show_bug.cgi?id=684807
* Updated Slovenian translationMatej Urbančič2012-09-251-452/+485
|
* Use helper function to determine if file is rootWilliam Jon McCann2012-09-251-4/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=684354
* Add extra data to the image propertiesWilliam Jon McCann2012-09-251-0/+41
| | | | | | That includes PNG tEXt chunk information. https://bugzilla.gnome.org/show_bug.cgi?id=613288