summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* file-operations: zero-initialize pointerErnestas Kulik2016-08-221-1/+1
| | | | | | | | The file_info autoptr in transfer_add_file_to_count() is not zero-initialized and the function conditionally returns early, which could result in a crash. This commit fixes that. https://bugzilla.gnome.org/show_bug.cgi?id=769383
* Updated French translationClaude Paroz2016-08-221-1834/+1903
|
* Updated Polish translationPiotr Drąg2016-08-221-2032/+2029
|
* nautilus-desktop: initialize composited to TRUEAlberts Muktupāvels2016-08-221-2/+1
| | | | | | | | | | | | nautilus_desktop_window_composited_changed function will do nothing if we use initial value from GdkScreen because of early return: if (window->details->composited == composited) return; Change back initial value to TRUE to make sure that background will be setup if screen is not composited. https://bugzilla.gnome.org/show_bug.cgi?id=769360
* Updated Indonesian translationAndika Triwidada2016-08-221-899/+899
|
* file-operations: rename calls to transfer_file_add_to_countErnestas Kulik2016-08-221-4/+4
| | | | | | The function was renamed without renaming the calls to it. https://bugzilla.gnome.org/show_bug.cgi?id=769383
* file-operations: update progress on skipErnestas Kulik2016-08-221-0/+42
| | | | | | | | | | Currently, the transfer info of an operation is only modified if it is successful, resulting in a confusing reflection in the UI. Treating skipped operations as completed and displaying them as such feels more natural, as they are technically completed (i.e. nothing has been done). This commit changes the behavior as such. https://bugzilla.gnome.org/show_bug.cgi?id=769383
* Updated German translationFlo H2016-08-211-1795/+1776
|
* file-operations: fix duplication status stringErnestas Kulik2016-08-211-2/+2
| | | | | | | | | | | | | | | | There are a couple of problems with the status string during file duplication: 1. The status string is constructed by calling ngettext() with the index of the file plus one. 2. nautilus_progress_info_take_status() is called with the total count of files plus one. These two combined result in funky status strings (e.g. “duplicating 3 file in X”). This commit fixes both of those problems. https://bugzilla.gnome.org/show_bug.cgi?id=769997
* files-view: use GFile utilitiesErnestas Kulik2016-08-211-32/+60
| | | | | | | | set_up_scripts_directory_global() currently uses the POSIX file interface, which is inconsistent with the rest of the code. This commit rewrites the parts of the function to use the GFile API. https://bugzilla.gnome.org/show_bug.cgi?id=769602
* files-view: free file lists after useErnestas Kulik2016-08-211-5/+11
| | | | | | | Some functions acquire file lists, but do not free them after use or erroneously acquire them twice. This commit plugs the leaks. https://bugzilla.gnome.org/show_bug.cgi?id=769808
* Updated Slovak translationDušan Kazik2016-08-211-909/+928
|
* Updated Czech translationMarek Černocký2016-08-211-135/+125
|
* Updated Finnish translationJiri Grönroos2016-08-201-1925/+1918
|
* Updated Hungarian translationBalázs Úr2016-08-201-2996/+1847
|
* file-operations: refactor deleting operationRazvan Chitu2016-08-201-340/+223
| | | | | | | | | | | | | Both the delete and copy operations in Nautilus deal with deleting files recursively. Each operation has its own implementation of the same functionality, mixed with specific logic, like error reporting through dialogs. In order to remove duplicated code, extract delete logic to a separate function which can be used by both operations. Implement a function for deleting files recursively which reports errors and success through an user provided callback. https://bugzilla.gnome.org/show_bug.cgi?id=770109
* Updated Friulian translationFabio Tomat2016-08-201-1752/+1715
|
* Updated Czech translationMarek Černocký2016-08-191-750/+757
|
* data/icons/Makefile.am: include 256x256 iconErnestas Kulik2016-08-191-2/+7
| | | | | | | The Automake file for icons was missing the 256x256 icon. This commit includes it in the data file list. https://bugzilla.gnome.org/show_bug.cgi?id=770145
* Update POTFILES.inPiotr Drąg2016-08-191-24/+27
|
* files-view: correct method nameRazvan Chitu2016-08-194-8/+8
| | | | | | | The method 'compute_rename_popover_relative_to' has a misleading name because it actually computes the item that the popover will point to. https://bugzilla.gnome.org/show_bug.cgi?id=769336
* files-view: move file name widget logic to separate controllersRazvan Chitu2016-08-1910-415/+937
| | | | | | | | | | | | | | The rename file popover and the new folder dialog share common logic for validating file names entered by the user. The control logic was implemented with a simple structure in files-view. Besides common logic, the structure also held parameters specific to only one of the operations. Another problem is that the current implementation does not allow flexibility in obtaining the file name from the widgets and displaying error messages. In order to fix this, reimplement the structure as an abstract class and create two subclasses for the "Rename" and "New Folder" widgets. https://bugzilla.gnome.org/show_bug.cgi?id=769336
* Updated Indonesian translationAndika Triwidada2016-08-191-1171/+1178
|
* window: update copyright noticeErnestas Kulik2016-08-191-1/+1
| | | | | | | | Currently, the copyright notice includes a range of dates of which the end year is 2014, which is not current. This commit changes the end year to 2016. https://bugzilla.gnome.org/show_bug.cgi?id=769917
* nautilus-desktop: draw background when screen is not compositedAlberts Muktupāvels2016-08-191-0/+103
| | | | | | | | | | | | At least GNOME Flashback session with Metacity still can be used without compositing manager. Since transparency is not available nautilus currently draw black background. Fix it by checking if compositing manager is running and if it is not then get background surface from root window and draw it on nautilus desktop window. https://bugzilla.gnome.org/show_bug.cgi?id=769360
* Updated Slovak translationDušan Kazik2016-08-191-4/+8
|
* Updated Czech translationMarek Černocký2016-08-191-4/+4
|
* configure.ac: link against libgd dynamicallyErnestas Kulik2016-08-191-1/+0
| | | | | | | | Automatic resource registration appears to not work properly with the static libgd variant, which causes warnings. That can be worked around by linking against libgd dynamically. https://bugzilla.gnome.org/show_bug.cgi?id=770121
* general: move the Nautilus icon to the source treeCarlos Soriano2016-08-1912-1/+9966
| | | | | | | | Instead of using a themed icon. This is necessary for flatpak Nautilus properly. Patch made mostly by Mathieu Bridon and help of Patrick Griffis. Thanks a lot!
* Revert "general: move the Nautilus icon to the source tree"Carlos Soriano2016-08-1812-9981/+1
| | | | This reverts commit eff30bcf53daa6f90c70dfb7c495244a3bd612aa.
* general: move the Nautilus icon to the source treeCarlos Soriano2016-08-1812-1/+9981
| | | | | Instead of using a themed icon. This is necessary for flatpak Nautilus properly.
* Lower the minimum gettext versionMathieu Bridon2016-08-171-1/+1
| | | | | | We don't have such a recent gettext in the SDK. https://bugzilla.gnome.org/show_bug.cgi?id=769988
* Updated Czech translationMarek Černocký2016-08-171-1243/+1250
|
* Updated Spanish translationDaniel Mustieles2016-08-161-78/+77
|
* Updated Slovak translationDušan Kazik2016-08-161-75/+75
|
* Update British English translationDavid King2016-08-151-8/+9
|
* Update British English translationDavid King2016-08-151-3473/+3940
|
* Cancelled should be spelled canceled in C localeDavid King2016-08-151-1/+1
|
* Updated Spanish translationDaniel Mustieles2016-08-151-4/+4
|
* bookmark-list: null-initialize error pointerErnestas Kulik2016-08-131-1/+1
| | | | | | | A GError pointer was not being null-initialized, which can result in crashes. This commit fixes that. https://bugzilla.gnome.org/show_bug.cgi?id=768175
* Updated Brazilian Portuguese translationGustavo Marques2016-08-101-1255/+1295
|
* nautilus.css: fix opaque desktop window after theme changeErnestas Kulik2016-08-081-0/+1
| | | | | | | | The background of the window paned is not set to be transparent, which may cause it to become opaque when changing themes. This commit sets its background color in the style sheet. https://bugzilla.gnome.org/show_bug.cgi?id=765687
* Updated Hebrew translationYosef Or Boczko2016-08-071-1362/+1208
|
* file-undo-operations: use ABS macro instead of abs()Ernestas Kulik2016-08-051-1/+1
| | | | | | | | trash_retrieve_files_to_restore_thread() calls abs() with an argument of type long, whereas abs() accepts ints. This commit fixes that by replacing the call with the ABS macro, which is type-agnostic. https://bugzilla.gnome.org/show_bug.cgi?id=769526
* shell-search-provider: fix incompatible pointer assignmentErnestas Kulik2016-08-051-1/+1
| | | | | | | In execute_search(), there is a pointer assignment of incompatible type. This commit fixes that by adjusting the variable type. https://bugzilla.gnome.org/show_bug.cgi?id=769526
* Clean up dead assigmentsErnestas Kulik2016-08-054-12/+4
| | | | | | | A static analyzer revealed a number of dead assignments, which have a negative effect on readability. This commit removes them. https://bugzilla.gnome.org/show_bug.cgi?id=769526
* Updated Slovak translationDušan Kazik2016-08-041-1302/+1424
|
* Updated Lithuanian translationAurimas Černius2016-08-031-1198/+1142
|
* Updated Spanish translationDaniel Mustieles2016-08-031-1189/+1147
|
* Add translator comments to .desktop filesPiotr Drąg2016-08-032-0/+3
|