summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update NEWS for 1.21.1 release1.21.1Ondrej Holy2014-04-271-0/+13
|
* Updated Indonesian translationDirgita2014-04-241-278/+301
|
* gvfs-move: Show progress for interactive moveRoss Lagerwall2014-04-181-1/+2
| | | | | | If requested, show progress for an interactive move. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* gvfs-move: Improve the interactive overwriteRoss Lagerwall2014-04-181-4/+5
| | | | | | | | Mimic the output of mv by displaying the full URI and put a space between the output and the user's input. Accept either lower or upper-case 'y'. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* gvfs-move: Improve progress outputRoss Lagerwall2014-04-181-3/+26
| | | | | | | | Rather than spamming the screen with output, rate-limit the updates and make them display over each other. Also calculate the speed of transfer. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* gvfs-copy: Show progress for interactive copyRoss Lagerwall2014-04-181-1/+2
| | | | | | If requested, show progress for an interactive copy. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* gvfs-copy: Improve the interactive overwriteRoss Lagerwall2014-04-181-4/+5
| | | | | | | | Mimic the output of cp by displaying the full URI and put a space between the output and the user's input. Accept either lower or upper-case 'y'. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* gvfs-copy: Make the progress output usableRoss Lagerwall2014-04-181-12/+26
| | | | | | | Rather than spamming the screen with output, rate-limit the updates and make them display over each other. https://bugzilla.gnome.org/show_bug.cgi?id=637543
* afc: Check for iOS >= 3.1.2 to enable house arrestBastien Nocera2014-04-161-0/+54
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=676187
* ftp: clear queue when mount failsOndrej Holy2014-04-161-2/+4
|
* tests: use "#!/usr/bin/env python3" to be more portableOndrej Holy2014-04-162-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=726911
* dav: Use the native MOVE operation for movingRoss Lagerwall2014-04-131-0/+133
| | | | | | | | | | | | | | This saves unnecessary round trips when moving files and directories. Based on a patch by Mads Chr. Olesen and the GLocalFile implementation. Backups are not yet implemented. It tries to cover the various cases of overwriting files with directories and vice versa by doing what GLocalFile does. Notably, webdav servers are capable of overwriting a directory with a file which is not a supported operation for g_file_move, while at least Apache's mod_dav gives a generic 400 Bad Request when trying to overwrite a file with a directory. https://bugzilla.gnome.org/show_bug.cgi?id=572786
* Add goa-volume-monitor to gitignoreRoss Lagerwall2014-04-111-0/+1
|
* run-in-tree.sh: Use sh rather than bashRoss Lagerwall2014-04-111-2/+2
| | | | | | | We don't really on bash-specific features so use /bin/sh rather than /bin/bash. https://bugzilla.gnome.org/show_bug.cgi?id=726911
* client: Return NULL if set_display_name() failsRoss Lagerwall2014-04-111-0/+2
| | | | | | | | | | | | | Return NULL as per the documentation rather than returning the original file. This prevents errors like the following, where "Permission Denied" should be displayed: $ gvfs-rename smb://localhost/tmp/cat dog Rename successful. New uri: smb://localhost/tmp/cat (gvfs-rename:1385): GLib-GObject-CRITICAL **: g_object_unref: assertion 'G_IS_OBJECT (object)' failed https://bugzilla.gnome.org/show_bug.cgi?id=727007
* Report gvfs version when --version is usedRoss Lagerwall2014-04-1138-1/+298
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=727132
* Unify error conversion in http and dav backendsRoss Lagerwall2014-04-113-33/+13
| | | | | | | Have a single function which converts libsoup error codes to gio error codes rather than one in each backend. https://bugzilla.gnome.org/show_bug.cgi?id=536305
* fuse: Set permissions from UNIX mode when availableRoss Lagerwall2014-04-111-11/+20
| | | | | | | | If the GFileInfo has a UNIX mode available, use that for setting permissions. This prevents programs like vim from losing permissions when saving a file. https://bugzilla.gnome.org/show_bug.cgi?id=727996
* Post branch version bumpOndrej Holy2014-04-111-1/+1
|
* proxy volume monitor: Fix invalid readRoss Lagerwall2014-04-101-2/+2
| | | | | | | | When g_bus_unwatch_name () is called, it frees the associated Client and so the name variable becomes invalid. So, ensure that nothing uses the name variable after this call. https://bugzilla.gnome.org/show_bug.cgi?id=710679
* doap: update URLsPiotr Drąg2014-04-061-3/+3
|
* smb: Give correct error when unlink fails while closing fileRoss Lagerwall2014-04-021-1/+10
| | | | | | | | | When closing a file that is overwriting another file, don't ignore the error message when unlinking the old file. This is important when unlinking fails due to a permission denied error but the error message that was being returned was File Exists (from the subsequent rename). https://bugzilla.gnome.org/show_bug.cgi?id=726998
* gvfs-tree: End GOptionEntry array with NULLRoss Lagerwall2014-04-021-0/+1
| | | | | | | Prevent a segfault (revealed on OpenBSD) by null-terminating the GOptionEntry array. https://bugzilla.gnome.org/show_bug.cgi?id=727447
* Updated Basque languageInaki Larranaga Murgoitio2014-03-301-432/+477
|
* dav: Unescape URIs before comparing them for equalityRoss Lagerwall2014-03-291-5/+12
| | | | | | | | In some instances (e.g. Apache), gvfs uses percent encodings like %2A while Apache returns redirections encoded like %2a. This makes redirections fail when non-ascii characters are used in the path. https://bugzilla.gnome.org/show_bug.cgi?id=721543
* common: use nl_langinfo constants conditionallyOndrej Holy2014-03-272-1/+15
| | | | | | The _NL_ADDRESS_LANG_TERM and _NL_ADDRESS_COUNTRY_AB3 aren't portable. https://bugzilla.gnome.org/show_bug.cgi?id=726707
* Update Czech translationPetr Kovar2014-03-231-448/+482
|
* Updated Slovenian translationMatej Urbančič2014-03-211-330/+351
|
* Post release version bumpOndrej Holy2014-03-211-1/+1
|
* Update NEWS for 1.20.0 release1.20.0Ondrej Holy2014-03-212-1/+5
|
* Updated Indonesian translationAndika Triwidada2014-03-211-363/+403
|
* Updated Serbian translationМирослав Николић2014-03-212-852/+946
|
* Updated Hungarian translationGábor Kelemen2014-03-191-423/+474
|
* Updated Danish translationAsk H. Larsen2014-03-191-422/+467
|
* update Punjabi Translation 17March2014: AlamA S Alam2014-03-171-441/+474
|
* Updated Portuguese translationTiagosdot2014-03-121-427/+474
|
* Updated Chinese (China) translationWylmer Wang2014-03-081-420/+471
|
* Updated Latvian translationRūdolfs Mazurs2014-03-071-448/+482
|
* Updated Korean translationChangwoo Ryu2014-03-071-423/+462
|
* build: add missing libraries to fix linking issuesOndrej Holy2014-03-061-0/+5
| | | | Building gvfs in clean chroot fails without those libraries.
* Updated Polish translationPiotr Drąg2014-03-031-422/+461
|
* Updated Lithuanian translationAurimas Černius2014-02-211-426/+468
|
* Updated French translationClaude Paroz2014-02-211-424/+463
|
* Post release version bumpOndrej Holy2014-02-171-1/+1
|
* Update NEWS for 1.19.90 release1.19.90Ondrej Holy2014-02-171-0/+8
|
* Change version to 1.19.90Ondrej Holy2014-02-171-1/+1
|
* smb: set context to NULL after it has been freedOndrej Holy2014-02-131-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=710986
* Updated Norwegian bokmål translationKjartan Maraas2014-02-101-422/+461
|
* various: reduce the verboseness of debug messagesGiovanni Campagna2014-02-082-9/+3
| | | | | | | | With a recent enough dbus-daemon (or with kdbus), the standard error of dbus activated services is sent to the journal, so we should not pollute it with debug messages by default. https://bugzilla.gnome.org/show_bug.cgi?id=723251
* mtpvolume: implement symbolic iconsGiovanni Campagna2014-02-081-0/+26
| | | | | | | | The places sidebar in nautilus and the places menu in the shell use symbolic icons exclusively, so make sure one is provided, to avoid falling back to a generic "network mount" icon. https://bugzilla.gnome.org/show_bug.cgi?id=723251