summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dav: Be sure that a child is accessible when looking for a rootwip/oholy/dav-mount-checkOndrej Holy2020-09-211-1/+73
| | | | | | | | | | The DAV backend tries to find the top-most directory when mounting. But it seems that even if a parent directory is a WebDAV collection, it doesn't always mean that the previous path is listed in that directory. Let's check that when mounting and use the parent directory only if the child is listed. Fixes: https://gitlab.gnome.org/GNOME/gvfs/-/issues/468
* Post release version bumpOndrej Holy2020-09-111-1/+1
|
* Update NEWS for 1.46.0 release1.46.0Ondrej Holy2020-09-111-0/+4
|
* Post release version bumpOndrej Holy2020-09-041-1/+1
|
* Update NEWS for 1.45.92 release1.45.92Ondrej Holy2020-09-042-1/+6
|
* Update Chinese (China) translationBoyuan Yang2020-08-231-238/+254
|
* Update Portuguese translationJuliano Camargo2020-08-221-1745/+1625
|
* Correct a typo in CONTRIBUTING.mdFelix Yan2020-08-121-1/+1
|
* build: Link libgvfscommon to libmetadataIñigo Martínez2020-08-112-10/+4
| | | | | | | | `gvfsd-metadata` uses the `gvfs_randomize_string` function by including `gvfsutils.h` header file from `libgvfscommon`. However, the library is not linked, only the directory is included. This has been fixed by linking `libgvfscommon` to `libmetadata`.
* Post release version bumpOndrej Holy2020-08-071-1/+1
|
* Update NEWS for 1.45.90 release1.45.90Ondrej Holy2020-08-072-1/+7
|
* build: Bump required glib version to 2.65.1Ondrej Holy2020-08-071-1/+1
| | | | | The recent commit 077abad requires functionality from GLib 2.65.1. Let's bump to that version.
* udisks2: Replace custom code by g_unix_mount_point_atOndrej Holy2020-08-051-32/+1
| | | | | The newly introduced g_unix_mount_point_at can be used to replace custom code.
* trash: Add support for x-gvfs-notrash option to ignore mountsOndrej Holy2020-08-051-1/+29
| | | | | | | | Add support for x-gvfs-notrash mount option, which allows to ignore trash folder on certain mounts. This might be especially useful e.g. to prevent wakeups of autofs mounts... https://bugzilla.redhat.com/show_bug.cgi?id=1096200
* build: Bump required glib version to 2.65.0wip/oholy/glib-bumpOndrej Holy2020-08-041-1/+1
| | | | | | Commit 9564a34 uses g_bookmark_file_get_modified_date_time function which was added recently. Let's bump the required glib version accordingly.
* Update Friulian translationFabio Tomat2020-07-121-238/+254
|
* recent: Port to GDateTimeOndrej Holy2020-07-031-8/+12
| | | | | | g_bookmark_file_get_modified is deprecated. Let's port the code to use g_bookmark_file_get_modified_date_time instead in order to prevent the deprecation warnings.
* Post release version bumpOndrej Holy2020-07-031-1/+1
|
* Update NEWS for 1.45.3 release1.45.3Ondrej Holy2020-07-031-0/+6
|
* client: Add support for zone identifiers in IPv6 addressesOndrej Holy2020-06-302-11/+16
| | | | | | | | | | | | | | | | | The IPv6 addresses with zone identifiers are refused by GVfs currently. THis is because of g_uri_unescape_segment failure as RFC 4007 allows bare % sign to be used as separator. Although, RFC 6874 tries to fix that by the %25 separator, however, at the same time, it suggests that the bare % sign should still be accepted in user interfaces. But this would make this too complex and lead to various problems (e.g. it would not be clear what separator should be used for g_file_get_uri function). So I intentionally don't plan to support what is suggested by RFC 6874 for now, which effectively means that zone identifiers with non-ASCII chars won't be supported. Let's skip the g_uri_unescape_segment function for IPv6 address and also fix the gvfs_is_ipv6 function in order to accept the zone identifiers... Fixes: https://gitlab.gnome.org/GNOME/gvfs/-/issues/483
* Update Kazakh translationBaurzhan Muftakhidinov2020-06-251-404/+436
| | | | (cherry picked from commit 226f0dd44e78af04333452a9b3ef4a94cf6cce5f)
* metadata: check for mmap failureTobias Mueller2020-06-221-1/+1
| | | | | mmap returns MAP_FAILED if, well, it failed. Thus, checking for NULL does not catch errors.
* ci: Make sure that AFC build is always enabledBastien Nocera2020-06-171-1/+1
|
* afc: Add support for libplist-2.2Bastien Nocera2020-06-161-1/+4
| | | | | Which changed name from libplist to libplist-2.0 to embed its API version number in the library name.
* Post release version bumpOndrej Holy2020-05-291-1/+1
|
* Update NEWS for 1.45.2 release1.45.2Ondrej Holy2020-05-291-0/+7
|
* Notify changes in metadataSergio Costas2020-05-192-3/+90
| | | | | | | | | | | | | | | | | | | | | | | | | When a program (like Nautilus) modifies the metadata in a file (like metadata::custom-icon) there is no way of detecting that change from other programs: neither inotify generates an event in the file or the directory holding it, nor is possible to use it in the files at, or the folder itself, ~/.local/share/gvfs-metadata, because writting in them is delayed for nearly a minute. Unfortunately, there are cases where it is needed to be able to detect that. An example (and the reason for this patch) is when Nautilus (or another file manager) modifies the custom icon in a file from the desktop, and the desktop is managed by a different program (in this case, Desktop Icons NG), because the later can't detect the change made by the former and, thus, the file will keep the old icon until the whole desktop is refreshed. To fix this, this patch proposes to add a signal to the org.gtk.vfs.Metadata DBus interface, which will be triggered whenever a key is modified. To avoid saturating the system in case of modifying a lot of keys, it is triggered up to once per second.
* sftp: Copy file timestamps on push/pullMaxim Mikityanskiy2020-05-121-23/+89
| | | | | | | | | | | | | | | | Copy and move operations preserve file attributes (such as modification time) in most of existing scenarios: local copy/move, remote copy/move, file_copy_fallback in glib. However, one case remains special: copy/move between local and remote (gvfs) locations. It's implemented by push and pull operations in backends, which don't attempt to preserve the usual attributes (e.g., mtime and atime). This commit implements the missing piece of functionality in sftp backend. Modification time is preserved on copy and move, and access time is preserved on move only, complying to the settable attributes list of sftp backend. Signed-off-by: Maxim Mikityanskiy <maxtram95@gmail.com>
* dav: Add support for NTLM authenticationOndrej Holy2020-05-121-0/+1
| | | | | | | Currently, only Basic and Digest authentication is possible for webdav backend. Let's add support for NTLM also. https://gitlab.gnome.org/GNOME/gvfs/issues/342
* dav: Add support for Negotiate authenticationOndrej Holy2020-05-121-0/+2
| | | | | | | Currently, only Basic and Digest authentication is possible for webdav backend. Let's add support for Negotiate also. https://gitlab.gnome.org/GNOME/gvfs/issues/342
* Post branch version bumpOndrej Holy2020-05-121-1/+1
|
* Update Chinese (Taiwan) translationCheng-Chia Tseng2020-05-021-246/+260
|
* Updated Slovenian translationMatej Urbančič2020-04-101-227/+243
|
* Update Latvian translationRūdolfs Mazurs2020-04-031-229/+245
|
* Post release version bumpOndrej Holy2020-03-271-1/+1
|
* Update NEWS for 1.44.1 release1.44.1Ondrej Holy2020-03-271-0/+5
|
* Update Romanian translationDaniel Șerbănescu2020-03-191-186/+201
|
* Update Catalan translationJordi Mas2020-03-061-184/+199
|
* udisks2: Fix leaks of drive icons/descriptionOndrej Holy2020-03-061-0/+3
| | | | | | | | Drive icons/description are leaked currently when also media icon/description is available. Let's add missing `g_clear_object` resp. `g_free` calls to fix those leaks. https://gitlab.gnome.org/GNOME/gvfs/issues/452
* udisks2: Fix leak when updating fstab volumesOndrej Holy2020-03-061-1/+1
| | | | | | | | `g_list_remove_link` is used when filtering out mountpoints, but the GList element is not consequently freed. Let's use `g_list_delete_link` to not leak that element. https://gitlab.gnome.org/GNOME/gvfs/issues/452
* Post release version bumpOndrej Holy2020-03-061-1/+1
|
* Update NEWS for 1.44.0 release1.44.0Ondrej Holy2020-03-061-0/+4
|
* ci: Remove gnome-build-meta jobOndrej Holy2020-03-061-25/+0
| | | | | | | | | This job was added to check merge requests in order to prevent gnome-build-meta breakages for example when our dependencies are changed. However, this job needs a lot of maintenance to keep it working. Also, the job was changed to be manual in order to not waste the capacity of runners. Let's remove this job as it is easier to run this locally if needed.
* Update Ukrainian translationDaniel Korostil2020-03-041-1517/+497
|
* Update Italian translationMilo Casagrande2020-03-031-187/+204
|
* Updated Danish translationAlan Mortensen2020-02-281-183/+200
|
* Post release version bumpOndrej Holy2020-02-281-1/+1
|
* Update NEWS for 1.43.92 release1.43.92Ondrej Holy2020-02-281-0/+4
|
* ci: Fix gnome-build-meta jobfix-ciOndrej Holy2020-02-281-1/+3
| | | | | Update docker image and also add the privileged tag as it fails otherwise with "fuse: device not found, try 'modprobe fuse' first" error.
* ci: Fix update-image jobOndrej Holy2020-02-281-0/+2
| | | | | Runners are now unprivileged. I tried to use podman, but I was not able to make it work. Let's add the privileged tag to workaround this for now.