summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Japanese translationgnome-3-28Ryuta Fujii2019-10-131-166/+106
|
* Update Japanese translationRyuta Fujii2019-10-131-1269/+1407
|
* flatpak: Format jsonCarlos Soriano2019-04-231-83/+104
|
* Use proper exiv2 download urlCarlos Soriano2019-04-231-16/+15
|
* Update German translationChristian Kirbach2019-04-111-85/+85
|
* Update Icelandic translationSveinn í Felli2018-08-171-1270/+1379
|
* file-view: Always unset pending_selection after freeing itMarco Trevisan (Treviño)2018-07-261-9/+5
| | | | | | | | | | | | | | | | | | | When a file view was loaded with a pending selection, and not all the files were seen yet, the private pending_selection list was properly free'd, but the pointer was not cleared, causing a crash when `nautilus_files_view_set_selection` was called again, as it was trying to deeply copy a list pointed by this invalid reference. So, removing the unneeded `pending_selection` temporary pointer from the main function scope, as it only confuses, while use it (with an autolist) when we need to pass the previous `priv->pending_selection` (stealing its ownership) to set_selection again. Eventually use a g_clear_pointer to free the list and nullify its priv reference Fixes #295 (cherry picked from commit ae3382a281b018337a8032ef13663ec2d9c7fd6c)
* window: Allow dead_tilde key to trigger location entryAntónio Fernandes2018-07-171-1/+8
| | | | | | | | | | | | | | | | | | | | | The standalone "~" key ("asciitilde") works as a convenient shortcut to type home-relative paths into the location entry. However, some keyboard layouts don't have an standalone "~" key but rather a "dead tilde" key. This makes the existing shortcut unavaliable for some keyboard layouts. This is surprising for most people, because they have a tilde key and the Keyboard Shortcuts window advertises a shortcut for the tilde key. So, add the dead tilde key as an alternative shortcut. Note: Searching for tilded characters or the tilde character itself is still possible by revealing the search entry is explicitly. Fixes https://gitlab.gnome.org/GNOME/nautilus/issues/372 (cherry picked from commit ab16292e698cbcfdbc2cd175cdeaac4a8a898a69)
* nautilus-file-utilities: Add GVolumeMonitor auto cleanupWong Heung Sang2018-07-171-1/+1
| | | | | | | | | | | | | | | In nautilus_get_mounted_mount_for_root g_volume_monitor_get is called without cleanup We need cleanup or auto cleanup for GVolumeMonitor g_autoptr is added for auto cleanup Closes https://gitlab.gnome.org/GNOME/nautilus/issues/471 (cherry picked from commit 44601d99bacc21082f335603f0bf78f1ef9922d0)
* Update Occitan translationCédric Valmary2018-06-071-2287/+2708
|
* nautilus-file.c: Fix open writable file in recent tabWong Heung Sang2018-06-051-1/+1
| | | | | | | | | | | File opened in recent tab now is read-only when it is writable. Replace nautilus_file_info_get_uri () with nautilus_file_info_get_activation_uri () fix the problem. https://gitlab.gnome.org/GNOME/nautilus/issues/378
* Update Scottish Gaelic translationGun Chleoc2018-06-011-1965/+1597
|
* Update Afrikaans translationPieter Schalk Schoeman2018-05-291-22/+4
|
* Update Chinese (China) translationMingcong Bai2018-05-211-2104/+2423
|
* Update Afrikaans translationPieter Schalk Schoeman2018-05-191-1241/+1322
|
* build: Fix icon renamingErnestas Kulik2018-05-111-9/+21
| | | | | | | | | | | Currently, when looping over icon sizes, each icon is copied to $MESON_BUILD_ROOT/@appid@.png, meaning that the file is overwritten on every iteration. This commit fixes that by copying to a subdirectory under the build root and installing from there. Fixes https://gitlab.gnome.org/GNOME/nautilus/issues/364 (cherry picked from commit 5633b13f92ad736f5e8f6311253d31e68d40d057)
* gtkplacesview: Update to last codeMarco Trevisan (Treviño)2018-04-241-5/+56
|
* gtk-code-generator.sh: Fetch sources from GitLabErnestas Kulik2018-04-241-2/+2
|
* Eliminate accessible name-changed event flood during initial loadJoanmarie Diggs2018-04-231-1/+4
| | | | | | | | | | | | Accessible name-changed events should not be emitted during the initial load of the icon container. They should only be emitted when a user-triggered action such as renaming the file causes the change. This event is being emitted when the editable_text property is being set. During the initial load the value is null, so check for that condition and only emit the event when the original value is non-null. (cherry picked from commit 0c80a84576a143d76388499d27f0d6d8e21b54da)
* Eliminate accessible children-changed event flood during initial loadJoanmarie Diggs2018-04-232-0/+7
| | | | | | | | | | | | | Accessible children-changed events should not be emitted during the initial load of the icon container. They should only be emitted when a user-triggered action (creation of file, copying an item) causes an item to be added. User-triggered actions result in nautilus_canvas_container_layout_now being called, so set a flag there so that we can distinguish the two types of additions in the accessible icon-added callback. (cherry picked from commit a4c27ad2b3dfc03dfe41260206dd1684c3949139)
* release: Prepare for 3.28.13.28.1Carlos Soriano2018-04-092-1/+6
|
* rename-file-popover-controller: Make popover recyclableErnestas Kulik2018-04-095-102/+187
| | | | | | | | | | | | Creating and destroying the controller each time we want to rename something results in not being able to pop down the popover, which leads to an inconsistent look. The “containing-directory” in the file name widget controller parent class needed to be made non-construct-only, as otherwise it would be impossible to reuse the same controller. Fixes https://gitlab.gnome.org/GNOME/nautilus/issues/260
* build: Fix libm detectionChristophe Fergeau2018-04-091-1/+1
| | | | | | | find_library expects the library name without the 'lib' prefix, otherwise it will be looking for "liblibm" (cherry picked from commit 1358dc6beba43365572122d5c89347c2491d2b13)
* application: Fix memory leakRahul Verma2018-04-091-1/+1
| | | | | | When displaying an error dialog box, a string that stores the error details, is not being freed. So use g_autofree instead. (cherry picked from commit c6cd36999f7715d81b62434cfb835fea37994b51)
* files-view: Allow trashing/deleting Desktop dirAntónio Fernandes2018-04-091-23/+11
| | | | | | | | | | | | We disable trashing/deleting the Desktop directory. But we allow trashing/deleting other XDG user dirs (Documents, Music,...). If a person doesn't want to use an "icons on desktop" implementation, this person may want to remove this folder from their Home directory. To allow it, don't disable trashing/deleting the Desktop directory. (cherry picked from commit 2787773c625d647ec603bb63071a8ff0699c6ba9)
* Update Dutch translationHannie Dumoleyn2018-04-091-379/+386
|
* Flatpak: Allow access to gsettings folderCarlos Soriano2018-04-081-0/+1
| | | | | | | | | | | | | | | | Recently we have been seeing that gsettings doesn't work inside the Flatpak build of Nautilus. In https://gitlab.gnome.org/GNOME/nautilus/commit/3f6cd2feb258bab75b0b8355f526331d940d8845 we gave full host access to Nautilus, so I expected that no more --filesystem permission would be necessary. For some reason... we still need to put that. Although it looks like a bug somewhere. For now, let's just explicitly allow access the desrt folder. (cherry picked from commit 8ac9c873067dd8d6cba334eabd9e8fda873cee60)
* Update Latvian translationRūdolfs Mazurs2018-04-071-418/+385
|
* Update Greek translationEfstathios Iosifidis2018-04-051-280/+90
|
* Update Serbian translationМарко Костић2018-03-281-376/+383
|
* Updated Slovenian translationMatej Urbančič2018-03-271-1325/+1416
|
* Update Russian translationStas Solovey2018-03-261-377/+384
|
* Update Italian translationMilo Casagrande2018-03-261-5/+5
|
* Update Chinese (Taiwan) translationCheng-Chia Tseng2018-03-261-12/+12
|
* Update Indonesian translationAndika Triwidada2018-03-251-736/+401
|
* Update Slovak translationDušan Kazik2018-03-241-389/+385
|
* Update Brazilian Portuguese translationRafael Fontenelle2018-03-231-381/+395
|
* Merge branch 'gnome-3-28' into 'gnome-3-28'Carlos Soriano2018-03-231-2/+2
|\ | | | | | | | | Update nautilus-view-icon-controller.c: add NULL initialization to ptrs See merge request GNOME/nautilus!165
| * Update nautilus-view-icon-controller.c: add NULL initialization to ptrsJosue Hernandez2018-03-231-2/+2
| | | | | | | | | | | | g_autoptr (GQueue) files_queue = NULL; g_autoptr (GQueue) item_models = NULL; Signed-off-by: Josue David Hernandez <josue.d.hernandez.gutierrez@intel.com>
* | Update Turkish translationFurkan Tokaç2018-03-231-385/+398
|/
* Update Galician translationFran Dieguez2018-03-211-390/+399
|
* eel: string: fix middle truncation test casesErnestas Kulik2018-03-211-22/+22
| | | | | | | | | | f42979f0b073d96a9157c05c0bff963820a630b4 changed the ellipsis to a unicode one, which is one character in length, in turn changing the expected output. For cases where the truncation length is zero, the expected output is changed to NULL, as 536505728e3963cfc6d2fa93ca2b188bfb5a144b added an assertion.
* Update Croatian translationgogo2018-03-201-377/+384
|
* Update Hungarian translationBalázs Meskó2018-03-201-378/+384
|
* Update German translationChristian Kirbach2018-03-201-81/+88
|
* Update Chinese (Taiwan) translationCheng-Chia Tseng2018-03-201-2/+2
|
* Update Chinese (Taiwan) translationCheng-Chia Tseng2018-03-201-382/+389
|
* Update Italian translationMilo Casagrande2018-03-201-83/+90
|
* Updated Lithuanian translationAurimas Černius2018-03-191-385/+383
|
* Updated Czech translationMarek Cernocky2018-03-191-377/+384
|