summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* release: prepare for 3.4.23.4.2Cosimo Cecchi2012-05-142-1/+11
|
* Updated Telugu TranslationsPraveen Illa2012-05-141-18/+18
|
* window-manage-views: don't call methods on a NULL NautilusFileCosimo Cecchi2012-05-081-3/+6
| | | | | | | | | In got_file_info_for_view_selection_callback(), we unconditionally try to fetch information for the parent directory in case the selection is a regular file, but we should avoid doing that when the file has no parent, such as when it's the root of a web server. https://bugzilla.gnome.org/show_bug.cgi?id=675259
* x-content-bar: pack the media label in the content areaCosimo Cecchi2012-05-071-2/+4
| | | | | | | Instead of just packing it into the GtkInfoBar's box, since that will put it after the buttons of the action area. https://bugzilla.gnome.org/show_bug.cgi?id=670129
* places-sidebar: disallow context menus for sidebar headingsCosimo Cecchi2012-05-071-1/+8
| | | | | | | We already make them non-selectable - there's no point in having a menu for headings here. https://bugzilla.redhat.com/show_bug.cgi?id=819404
* places-sidebar: don't double unref GMount objectsCosimo Cecchi2012-05-041-2/+1
| | | | | | Fixes a lot of reported crashers with NFS/Samba volumes. https://bugzilla.gnome.org/show_bug.cgi?id=674659
* Added Norwegian bokmål translationKjartan Maraas2012-04-301-279/+279
|
* Updated Norwegian Nynorsk translationÅsmund Skjæveland2012-04-291-4/+2
|
* update ZERO_OR_THREE_DIGITS define to work as intendedSebastien Bacher2012-04-271-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674924
* editable-label: fix selection color in backdrop stateCosimo Cecchi2012-04-241-3/+2
| | | | | Don't set the ACTIVE flag if we don't have focus, it just doesn't make sense.
* Fixed a string in Brazilian Portuguese translationDjavan Fagundes2012-04-231-1/+1
|
* Updated Russian translationYuri Myasoedov2012-04-231-1/+1
|
* link: plug a memory leakCharles Kerr2012-04-181-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674087
* desktop-metadata: plug some memory leaksCharles Kerr2012-04-181-0/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=674086
* list-view: don't treat clicks as on an empty area if the row is selectedCosimo Cecchi2012-04-181-1/+3
| | | | | | | | When the row is selected, and we right click on it, make sure we popup its context menu and not its parent's, since the selection is a stronger indication of intent. https://bugzilla.gnome.org/show_bug.cgi?id=674245
* Updated German translation (Bug #674093)Christian Kirbach2012-04-181-33/+33
|
* release: prepare for 3.4.13.4.1Cosimo Cecchi2012-04-162-1/+8
|
* undo: use g_file_info_get_attribute_byte_string for trash::orig-pathCosimo Cecchi2012-04-131-3/+2
| | | | | | Since that's what GVfs sets. https://bugzilla.gnome.org/show_bug.cgi?id=673776
* [l10n] Updated Italian translationMilo Casagrande2012-04-061-905/+891
|
* file-operations: don't mix character and byte lengthsAbderrahim Kitouni2012-04-061-2/+2
| | | | | | | Otherwise untitled files end up with a (possibly) corrupt part of the name appended. https://bugzilla.gnome.org/show_bug.cgi?id=672761
* NautilusFile: keep free space information directlyRyan Lortie2012-04-054-27/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were previously some tricks in nautilus to this effect: - when you call nautilus_file_get_volume_free_space() on a NautilusFile, the return result is NULL at first and later you get a "changed" signal on the file after the value is filled in - the value is being stored inside the NautilusDirectory equivalent for the file that is created when the call is first performed and kept around until after the change signal fires (so that the person receiving the change signal can still get the data). This is done to save space by not expanding NautilusFile. The NautilusDirectory is then dropped after the change signal is done firing. - the nautilus properties window has a 200ms timeout after changes to files being reported before it re-queries the properties The end result is that the NautilusDirectory (which holds the information about the free space) is already freed by the time the properties window tries to update the free space display. This results in the directory being recreated and the process starting over again. The end result is that we never get the free space shown in the dialog and instead we have an infinite loop of CPU usage (fortunately repeating only every 200ms, so you get ~5% CPU usage instead of 100%). We can solve the problem by just storing the free space information directly in the NautilusFile details structure and dropping the dance with NautilusDirectory; nothing in NautilusDirectory is actually using that information anyway. https://bugzilla.gnome.org/show_bug.cgi?id=673550
* Updated Telugu TranslationPraveen Illa2012-04-051-183/+183
|
* list-view: don't handle extra mouse buttons eventsNelson Benitez Leon2012-04-041-0/+5
| | | | | | | | | | Don't handle extra mouse button events so they can bubble up through GtkTreeview till NautilusWindow where they are handled to navigate the view forward and backward. Part of bug 660006 Signed-off-by: Nelson Benitez Leon <nbenitezl@gmail.com>
* eel-canvas: ignore extra mouse button eventsNelson Benitez Leon2012-04-041-0/+4
| | | | | | | | | | Ignore button press/release events for mouse buttons greater than 5 so allowing forward and backward mouse buttons to work over icons. Part of bug 660006 Signed-off-by: Nelson Benitez Leon <nbenitezl@gmail.com>
* file-operations: fix off-by-one error in copied files countCosimo Cecchi2012-04-021-4/+4
| | | | | | | TransferInfo->num_files counts from zero, so we have to increment it by one when formatting it into a string. https://bugzilla.gnome.org/show_bug.cgi?id=673345
* link: remove unused codeCosimo Cecchi2012-04-012-26/+0
| | | | nautilus_link_local_get_additional_text() is now unused.
* icon-container: don't show comment field for desktop filesCosimo Cecchi2012-04-011-19/+4
| | | | | | | This fixes a regression introduced in commit 5a47a484e45218e83202c508b421b1a2707af270 https://bugzilla.gnome.org/show_bug.cgi?id=673316
* Updated Bulgarian translationAlexander Shopov2012-04-011-842/+845
|
* Updated Polish translationPiotr Drąg2012-03-311-232/+233
|
* Added Tibetan translation to LINGUASPiotr Drąg2012-03-291-1/+2
|
* Added Tibetan translationtennom YK2012-03-291-0/+7500
|
* Updated Spanish translationDaniel Mustieles2012-03-271-30/+13
|
* Updated Lithuanian translationMantas Kriaučiūnas2012-03-261-1538/+1941
|
* release: prepare for 3.4.03.4.0Cosimo Cecchi2012-03-262-1/+5
|
* view: ensure we show "Open with..." entries for foldersCosimo Cecchi2012-03-261-2/+3
| | | | | | | This is a regression from commit b9c51fd4eb84a9f52ee4be1bf183fc516984130b https://bugzilla.gnome.org/show_bug.cgi?id=672809
* Updated Crimean Tatar (Crimean Turkish) translationReşat SABIQ2012-03-261-6144/+6367
|
* Updated Japanese translation.Jiro Matsuzawa2012-03-251-632/+540
|
* Malayalam translation updated by AslamPraveen Arimbrathodiyil2012-03-241-5058/+5272
|
* Updated Telugu translationSasi Bhushan2012-03-241-123/+83
|
* hindi translation by Chandan KumarRajesh Ranjan2012-03-231-5040/+5746
|
* Updated Finnish translation by Jiri GrönroosTimo Jyrinki2012-03-231-658/+1189
|
* Updated Telugu TranslationPraveen Illa2012-03-231-1589/+2222
|
* Updated Esperanto translationKristjan SCHMIDT2012-03-221-131/+111
|
* Updated Arabic translationIbrahim Saed2012-03-211-448/+434
|
* Updated Portuguese translationDuarte Loreto2012-03-211-1672/+2026
|
* Update Simplified Chinese translation.Automatic Mirroring2012-03-211-25/+7
|
* update Simplified Chinese (zh_CN) translationYunQiang Su2012-03-211-1414/+1844
|
* release: prepare for 3.3.923.3.92Cosimo Cecchi2012-03-192-1/+15
|
* places-sidebar: add support for the "network" volume class identifierCosimo Cecchi2012-03-191-3/+47
| | | | | | If a GVolume has a class identifier of "network", put it (and its mount) in the Network section. This fixes e.g. NFS mounts showing in the wrong section.
* places-sidebar: focus the first non-heading row on focus-inCosimo Cecchi2012-03-191-0/+25
| | | | | | | Instead of giving the focus to the heading, which would end up in getting stuck there, since headings are not supposed to be actionable. https://bugzilla.gnome.org/show_bug.cgi?id=672002