summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* mtpvolume: improve volume nameGiovanni Campagna2014-02-081-1/+4
| | | | | | | Replace _ and - with spaces, and apply that pass on the product string too. https://bugzilla.gnome.org/show_bug.cgi?id=723251
* mtpvolume: fix a memory leakGiovanni Campagna2014-02-081-3/+1
| | | | | | Make the buffer really static, as the comment above documents. https://bugzilla.gnome.org/show_bug.cgi?id=723251
* updated kn.poShankar Prasad2014-02-051-273/+156
|
* Revert "trash: Don't use try_ for blocking methods"Ross Lagerwall2014-02-021-29/+51
| | | | | | | | | This reverts commit 052682c8a22bf8d7c86fb0f086a119dd7fec4c6b. This may have caused a race condition causing failed assertions; since it is not important, revert for now. https://bugzilla.gnome.org/show_bug.cgi?id=723305
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2014-02-022-680/+762
|
* Post release version bumpOndrej Holy2014-01-301-1/+1
|
* Update NEWS for 1.19.5 release1.19.5Ondrej Holy2014-01-301-0/+11
|
* Updated Hebrew translationYosef Or Boczko2014-01-261-927/+661
| | | | Signed-off-by: Yosef Or Boczko <yoseforb@src.gnome.org>
* Assamese translation updatedNilamdyuti Goswami2014-01-231-404/+451
|
* gvfsdaemon: properly remove socket_dirAntoine Jacoutot2014-01-231-9/+10
| | | | | | | | When not using abstract sockets, gvfs tries to rmdir the socket directory but it still contains the socket so the call fails. We now make sure to remove the socket first. https://bugzilla.gnome.org/show_bug.cgi?id=720482
* Remove obsolete address info for the LGPLRoss Lagerwall2014-01-2311-34/+23
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=721510
* ftp: Set etag::valueRoss Lagerwall2014-01-231-1/+9
| | | | | | Set etag::value based on the file's modification time. https://bugzilla.gnome.org/show_bug.cgi?id=721234
* ftp: Remove custom progress callback rate limitingRoss Lagerwall2014-01-231-85/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=719807
* daemon: Rate limit progress callbacksRoss Lagerwall2014-01-232-0/+19
| | | | | | | To prevent flooding the dbus daemon with messages, rate limit the progress callbacks to 10 per second (i.e. every 100 milliseconds). https://bugzilla.gnome.org/show_bug.cgi?id=719807
* daemon: Set infinite timeout for enumerate responseRoss Lagerwall2014-01-231-8/+11
| | | | | | | Set an infinite timeout for responses to enumerate() otherwise it can timeout when enumerating large, slow directories. https://bugzilla.gnome.org/show_bug.cgi?id=598092
* client: remove GVfsUriMountInfoGiovanni Campagna2014-01-208-361/+226
| | | | | | | | | This structure is too similar to GMountSpec to deserve a presence (it's essentially a GMountSpec with a path). By removing it we can remove some code and avoid wasteful allocations in sensitive paths such as creating and traversing GFiles. https://bugzilla.gnome.org/show_bug.cgi?id=721461
* build: append missing flags in the _CPPFLAGS variablesOndrej Holy2014-01-171-0/+24
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=722354
* sftp: force openpty(3) on BSDAntoine Jacoutot2014-01-171-0/+8
| | | | | | | | | Implementation of grantpt() and unlockpt() on FreeBSD and OpenBSD does not conform to IEEE Std 1003.1-2008 (``POSIX.1'') so force using the openpty(3) code path so that the key fingerprint and login/password dialogs instead of just failing or falling back to SSH_ASKPASS. https://bugzilla.gnome.org/show_bug.cgi?id=722001
* build: replace obsolete INCLUDES by CPPFLAGSOndrej Holy2014-01-175-6/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=722354
* build: remove unused --enable-maintainer-mode optionOndrej Holy2014-01-171-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=722354
* build: Update for test file renamingMartin Pitt2014-01-161-1/+1
| | | | files/powershot.ioctl.xz → files/powershot.ioctl, after the previous commit.
* gvfs-test: Refresh gphoto umockdev ioctlMartin Pitt2014-01-163-1/+71
| | | | | | | Refresh test/files/powershot.ioctl, now with gvfs 1.9.4 and libgphoto 2.5.3. Stop storing it xz compressed; it's not that big, and xz makes it impossible to patch files in distro packages.
* Post release version bumpOndrej Holy2014-01-131-1/+1
|
* Update NEWS for 1.19.4 release1.19.4Ondrej Holy2014-01-131-0/+8
|
* dav: Implement truncate for output streamsRoss Lagerwall2014-01-101-0/+25
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=720062
* dav: Implement seek for output streamsRoss Lagerwall2014-01-101-0/+27
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=720062
* trash: Don't use try_ for blocking methodsRoss Lagerwall2014-01-101-51/+29
| | | | | | | Don't use the try_ variants of the GVfsBackend methods for methods that could block. https://bugzilla.gnome.org/show_bug.cgi?id=720589
* Updated Greek translationDimitris Spingos2014-01-071-308/+319
|
* afp: Don't crash when opening the root directoryRoss Lagerwall2014-01-041-8/+0
| | | | | | | | | | | | | | | | | | | Previously, opening the root directory would generate an error and cause the backend to abort: backend_dbus_handler org.gtk.vfs.Mount:OpenForRead Queued new job 0xba4350 (GVfsJobOpenForRead) ** (process:6778): CRITICAL **: g_vfs_afp_volume_open_fork_finish: assertion 'g_simple_async_result_is_valid (res, G_OBJECT (volume), g_vfs_afp_volume_open_fork)' failed (process:6778): GLib-CRITICAL **: g_error_copy: assertion 'error != NULL' failed Instead, remove the special-casing for the root directory since it is handled correctly anyway. https://bugzilla.gnome.org/show_bug.cgi?id=720743