summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update zh_CN translationgnome-3-16Dz Chen2016-10-311-41/+39
|
* desktop-canvas-view: scale desktop workareaAndrea Azzarone2016-08-011-4/+8
| | | | | | | | | | The problem is that in the function canvas_container_set_workarea the screen width and height are in "application pixels" while the workarea ones are in "device pixels" so when the scaling is > 1, the margins are not properly setted. We need to scale-down the workarea geometries to "application pixels". https://bugzilla.gnome.org/show_bug.cgi?id=769302
* Updated Indonesian translationAndika Triwidada2016-06-061-2426/+1117
|
* thumbnails: avoid crash with jp2 imagesCarlos Soriano2016-01-111-3/+0
| | | | | | | | | | | | | | | | | | | | | | | When thumbnailing a directory with jp2 some times nautilus was crashing. However tests on gdk_pixbuf were successful and gnome-desktop-thumbnails generation tests were also working. Also, nautilus is using raw pthreads in the thumbnail generation code, and seems the crash was actually only happening when inside the pthread and when using gdk-pixbuf, not only the gnome-desktop-thumbnail. Looking at the implementation of glib in threads and nautilus, one of the differences is that nautilus sets a stack size. The crash is happening because, unluckely, libjasper with some big images is using more stack size than the one nautilus is setting, which leads to a crash in libjasper. To fix it, remove the stack size set by nautilus, similarly to what glib does, not setting an actual stack size. Obviously the right thing to do is rewrite nautilus code to use the glib threads, but I want to let that as a newcomer bug to do.
* Update zh_CN translationAron Xu2015-12-231-6/+6
|
* Updated Icelandic translationSveinn í Felli2015-12-051-142/+131
|
* release: prepare for 3.16.33.16.3Carlos Soriano2015-12-022-1/+6
|
* Revert "nautilus-bookmark: don't crash if file is gone"Carlos Soriano2015-12-021-8/+1
| | | | | | This was a wrong fix and it's only needed on 3.14 This reverts commit 4c56f31c0ad6c94a5851ef8b9f0142acfdabf4ad.
* Update zh_CN translationsAron Xu2015-11-121-1940/+1619
|
* nautilus_file_peek_display_name: Don't return NULLIain Lane2015-10-201-2/+3
| | | | | | | | | If the name is the empty string then nautilus_file_set_display_name won't actually set the display name. In this case we were returning NULL from nautilus_file_peek_display_name, which some of our callers weren't prepared to handle. This led to crashes. https://bugzilla.gnome.org/show_bug.cgi?id=700507
* Updated German translationChristian Kirbach2015-10-121-15/+10
|
* application-actions: use valid window listCarlos Soriano2015-10-061-0/+5
| | | | | | | | | | | | We were using the internal list of the application to iterate through the windows and closing them. Problem is that when closing one window, the list is modified, so next time accessing the list we are accessing the "old" list, which is invalid and makes nautilus crash. To fix it make a copy of the list to preserve the consistency. https://bugzilla.gnome.org/show_bug.cgi?id=755803
* Updated Finnish translationJiri Grönroos2015-10-051-105/+106
|
* Fix #746638Petr Kovar2015-09-281-1/+1
|
* Updated Portuguese translationPedro Albuquerque2015-07-271-62/+12
|
* Updated Portuguese translationPedro Albuquerque2015-07-271-2374/+2138
|
* Updated German translationBernd Homuth2015-07-241-38/+44
|
* Updated Brazilian Portuguese translationFelipe Braga2015-07-241-418/+375
|
* Updated Czech translationMarek Černocký2015-07-181-101/+105
|
* Updated Hungarian translationBalázs Úr2015-07-171-101/+105
|
* Updated Russian translationStas Solovey2015-07-171-106/+107
|
* Updated Swedish translationAnders Jonsson2015-07-161-106/+158
|
* Updated Slovak translationDušan Kazik2015-07-101-61/+65
|
* Updated Lithuanian translationAurimas Černius2015-07-101-103/+107
|
* Updated Slovenian translationMatej Urbančič2015-07-081-101/+105
|
* Updated Polish translationPiotr Drąg2015-07-031-109/+109
|
* Updated Italian translationMilo Casagrande2015-07-031-833/+341
|
* Updated Galician translationsFran Dieguez2015-07-021-101/+105
|
* toolbar: show modified time for all places except RecentCarlos Soriano2015-07-013-8/+35
| | | | | | | | | | | | | | | We changed to only show access time for sorting in the sort menu in 3.16 to avoid having both sorting options always present. But for folders like Downloads, the most useful sorting criteria is actually modified time, since it orders the files in downloading order. Actually modified time is more useful than access time is all cases except in "Recent", which what we actually want is the most recent accessed or modified file. For that, show only Modified Time sorting menu item in all places except in "Recent", where we will show only Access Time. https://bugzilla.gnome.org/show_bug.cgi?id=748185
* Updated Occitan translationCédric Valmary2015-05-231-6201/+4260
|
* nautilus-bookmark: don't crash if file is goneCarlos Soriano2015-05-141-1/+8
| | | | | | | | | | | | | Sometimes the file can be gone without even noticing when changing the location (and therefore creating the attached bookmark to that new location). In bookmark_changed we just disconnected the file if that happened, so we where failing graciously. But that was not the case when just changing the location, where we were asserting that the file is not gone and therefore crashing in such case. Instead of that, do something similar as bookmark_changed and just clean up some of the bookmark objects and hope for the best.
* release: prepare for 3.16.23.16.2Carlos Soriano2015-05-132-1/+7
|
* nautilus-view: allow F5 and ctrl+r for reloadCarlos Soriano2015-05-131-1/+9
| | | | | | | | After back and forward on this, users used both, and most of them didn't know about the other shortcut, which makes trying to use only one shortcut for this action too controversial for what it worth. So allow both shortcuts for this specific case.
* window: fix style tag outside <object>Carlos Soriano2015-05-131-3/+3
| | | | The style tag needs to be inside the <object> scope
* nautilus-view: allow folders to be opened in other appCarlos Soriano2015-05-131-1/+3
| | | | | | | | So the user can open a folder in a different app. This is useful in cases like IDEs or text editors for entire projects. https://bugzilla.gnome.org/show_bug.cgi?id=691479
* window: don't always make sidebar visible on new windowsAntónio Fernandes2015-05-132-5/+1
| | | | | | | | | | | | | | We are setting the sidebar as visible in the ui definition and binding this visibility to the disabled-chrome property (inversely) to prevent the sidebar from being visible in the desktop. But this also makes the sidebar visible in all new windows, ignoring both the state of the "Sidebar" toggle in the app menu and the start-with-sidebar setting. Fix this by setting the sidebar as not visible in the ui definition and removing the binding. The sidebar will be made visible if appropriate in the nautilus-window-initialize-actions function. Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=746217
* Update German translation (Bug 748229)Christian Kirbach2015-04-301-86/+85
|
* Updated Icelandic translationSveinn í Felli2015-04-281-7/+10
|
* view: allow open with another app for multiple filesCarlos Soriano2015-04-271-35/+22
| | | | | | As we allow to open them with the default app, but in this case we have to ensure all selected files can be opened by a single app.
* window: use F5 for refresh viewCarlos Soriano2015-04-271-1/+1
| | | | Seems people were used to it instead of the ctr+r shortcut.
* TypoKhaled Hosny2015-04-261-1/+1
|
* prepare for 3.16.13.16.1Carlos Soriano2015-04-152-1/+5
|
* Revert "nautilus-file: fix test for distcheck"Carlos Soriano2015-04-151-1/+1
| | | | | This reverts commit 7d2d1215f38b2febf02bf8831f365530a578efcc. Was my fault for not having gvfs in the prefix
* list-view: decrease small zooming paddingCarlos Soriano2015-04-151-1/+3
|
* Updated Slovak translationDušan Kazik2015-04-151-37/+37
|
* Update Arabic translationKhaled Hosny2015-04-121-1964/+1651
|
* Mark time format with xgettext:no-c-formatKhaled Hosny2015-04-121-0/+1
|
* Updated Icelandic translationSveinn í Felli2015-04-091-325/+465
|
* Revert "view: show "New Folder" dialog"Carlos Soriano2015-04-084-123/+49
| | | | This reverts commit 6f4fc647917364e0b86e6f485efca9d70bbe21f2.
* window: fix xf86-favorites shortcutCarlos Soriano2015-04-081-1/+1
| | | | | | It was using the previous action name before the gaction port https://bugzilla.gnome.org/show_bug.cgi?id=747485