summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* client: Port GDaemonFileEnumerator to GTaskOndrej Holy2017-06-141-95/+95
| | | | | | | | | GSimpleAsyncResult is deprecated in favour of GTask and should be replaced. "changed" signal is added in order to allow splitting _sync and _async code paths to use GTask as user_data for _async functionality. https://bugzilla.gnome.org/show_bug.cgi?id=747412
* Updated Esperanto translationKristjan SCHMIDT2017-06-101-1637/+1172
|
* Do not sent user invisible mounts if not neededOndrej Holy2017-06-067-31/+94
| | | | | | | | | | | g_volume_monitor_get() might be really slow if there is too many mounts, because the list of the mounts is send over D-Bus. It can simply happen due to user invisible mounts, e.g. http. User invisible mounts are ignored by the volume monitor, so it is useless to send them over D-Bus. Improve the D-Bus API and don't send the user invisible mounts if it is not needed. https://bugzilla.gnome.org/show_bug.cgi?id=775600
* Update Friulian translationFabio Tomat2017-06-011-256/+266
|
* client: Use g_cond_wait in a loopOndrej Holy2017-05-231-5/+8
| | | | | The documentation says that g_cond_wait() must always be used in a loop, but it isn't in some cases. Let's fix it.
* build: Use flags returned by pkg-config to find libarchiveOndrej Holy2017-05-151-49/+8
| | | | | Replace the old detection code with simple pkg-config calls in order to make it easier to find and specify the libarchive library.
* build: Use flags returned by pkg-config to find smbclientTing-Wei Lan2017-05-151-55/+10
| | | | | | | | | | Previously, the result returned by PKG_CHECK_MODULES is only used to find header files, and --with-samba-libs option is required if the shared library is not installed in the default search path. This commit replaces the old detection code with simple pkg-config calls, making it easier to find and specify the smbclient library. https://bugzilla.gnome.org/show_bug.cgi?id=782446
* Fix typo in Slovenian translationTimotej Lazar2017-05-131-1/+1
| | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=768287
* build: Do not install polkit rules if admin backend is disabledLaurent Bigonville2017-05-111-1/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=774100
* build: Avoid running '1' as a command when systemd is not availableTing-Wei Lan2017-05-101-1/+1
| | | | | | | | | The ACTION-IF-NOT-FOUND part of PKG_CHECK_MODULES is not needed and we can simply remove it to avoid the error here. This commit also replaces PKG_CHECK_MODULES with PKG_CHECK_EXISTS because variables set by PKG_CHECK_MODULES are not used. https://bugzilla.gnome.org/show_bug.cgi?id=782442
* Updated Galician translationsFran Dieguez2017-05-091-1554/+1342
|
* mtp: Remove avoidance of file push for >4GB files on AndroidPhilip Langdale2017-05-081-12/+0
| | | | | | | | | | | | | | | | | | We added an avoidance of using the push mechanism for >4GB files on Android due to observed behaviour in Android 5.x where this was incredibly slow. By avoiding it we did a fallback to the partial object API which was faster than the buggy API but slower than the push API when it works correctly. This problem was fixed in Android 6.0 and remains fixed today. There is no way to detect the android version on the device, so we're stuck either always using the workaround or not using it at all. Given that Android is now two major versions past the bug and USB 3.x connectivity is more common, it becomes unreasonable to inflict the inferior performance on all the non-buggy devices. It's time to move on. https://bugzilla.gnome.org/show_bug.cgi?id=736495
* Update po/MakevarsPiotr Drąg2017-04-271-3/+3
| | | | | This is not a GNU package and the Free Software Foundation has no copyright over it. Also adds MSGID_BUGS_ADDRESS.
* Post release version bumpOndrej Holy2017-04-241-1/+1
|
* Update NEWS for 1.33.11.33.1Ondrej Holy2017-04-241-0/+14
|
* google: Do not ignore errors when rebuilding cacheOndrej Holy2017-04-211-11/+5
| | | | | | | | If file cache is not loaded properly (e.g. because of cancellation), it may lead to various problems (e.g. incomplete enumeration). Let's return error in such case and rebuild the cache next time... https://bugzilla.gnome.org/show_bug.cgi?id=781252
* recent: Emit G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGEDOndrej Holy2017-04-131-1/+1
| | | | | | G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED should be emitted if G_FILE_ATTRIBUTE_RECENT_MODIFIED is updated, but it isn't. Let's change it.
* recent: Port from GtkRecentManager to GBookmarkFileOndrej Holy2017-04-123-80/+152
| | | | | | | | | GVfs dependency on GTK+ causes various issues. It is only needed by the recent backend, which is based on GtkRecentManager. GtkRecentManager is just wrapper for GBookmarkFile. Let's port the backend to use GBookmarkFile and remove the unwanted GTK+ dependency. https://bugzilla.gnome.org/show_bug.cgi?id=773300
* sftp: Handle SecurID password promptOndrej Holy2017-04-101-1/+2
| | | | | | | | | SFTP backend parses output from SSH client and expects several predefined password prompts. Unfortunately, SecurID (pam_securid.so) is not handled yet and the mount operation timeouts with the following error: "Timed out when logging in". Let's handle also SecurID prompt (i.e. "Enter PASSCODE"). https://bugzilla.redhat.com/show_bug.cgi?id=1440256
* Update MAINTAINERS and DOAP filesOndrej Holy2017-03-282-22/+7
| | | | Remove inactive maintainers and let the files point to me.
* Post branch version bumpOndrej Holy2017-03-281-1/+1
|
* common: Port GVfsMountInfo to GTaskOndrej Holy2017-03-281-198/+100
| | | | | | GSimpleAsyncResult is deprecated in favour of GTask and should be replaced. https://bugzilla.gnome.org/show_bug.cgi?id=747412
* client: Remove obsolete GSimpleAsyncResult helpersOndrej Holy2017-03-282-38/+0
| | | | | | GSimpleAsyncResult is deprecated in favour of GTask and should be replaced. https://bugzilla.gnome.org/show_bug.cgi?id=747412
* common: Fix potential crash caused by missing g_strdupOndrej Holy2017-03-281-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=747412
* common: Fix memory leakOndrej Holy2017-03-281-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=747412
* google: Fix reported file sizeOndrej Holy2017-03-232-4/+21
| | | | | | | | | Ligdata recently added API to obtain a real file size. Use gdata_documents_entry_get_file_size if libgdata 0.17.7 is available instead of gdata_documents_entry_get_quota_used, which returns 0 in some cases (e.g. shared files). https://bugzilla.gnome.org/show_bug.cgi?id=773053
* fuse: Prevent potential crash if file handle is not setOndrej Holy2017-03-231-1/+1
| | | | | | File handle may be NULL, so it has to be checked before dereferencing. This issue was revealed by coverity scan.
* sftp: Prevent potential crash in case of parsing errorOndrej Holy2017-03-231-4/+5
| | | | | | | Free may be called on statically allocated memory in case of parsing error. Let's do not touch the output parameter at all in case of failure. This issue was revealed by coverity scan.
* google: Prevent potential crashes if resolve_dir failsOndrej Holy2017-03-231-1/+2
| | | | | | | Initialize pointers properly in order to avoid usage of unitialized, or already freed memory. This issues were revealed by coverity scan.
* admin: Fix strtol error checkOndrej Holy2017-03-231-2/+2
| | | | | | | | The result from strtol is stored in uid_t and then checked for LONG_MAX and LONG_MIN, however, uid_t doesn't have to be long. Let's check just the errno value, it should be enough. This issue was revealed by coverity scan.
* gphoto2: Fix x-content-types setupOndrej Holy2017-03-233-7/+15
| | | | | | | | Commit 60f96c8 broke x-content-types setup, because is_media_player is always FALSE. Let's introduce g_vfs_backend_set_x_content_types helper and set x-content-types properly. This issue was revealed by coverity scan.
* Update Catalan languageJordi Mas2017-03-201-1459/+1260
|
* Post release version bumpOndrej Holy2017-03-201-1/+1
|
* Update NEWS for 1.32.0 release1.32.0Ondrej Holy2017-03-201-0/+4
|
* Update Latvian translationRūdolfs Mazurs2017-03-161-1361/+1179
|
* Post release version bumpOndrej Holy2017-03-131-1/+1
|
* Update NEWS for 1.31.92 release1.31.92Ondrej Holy2017-03-131-0/+4
|
* Update Galician translationFran Dieguez2017-03-111-1786/+1753
|
* Update Russian translationStas Solovey2017-03-101-1369/+1190
|
* Update Finnish translationJiri Grönroos2017-03-051-1401/+1150
|
* Updated Lithuanian translationAurimas Černius2017-03-041-485/+453
|
* Update Korean translationChangwoo Ryu2017-03-031-1534/+508
|
* Updated Danish translationAsk Hjorth Larsen2017-03-021-213/+184
|
* Updated Spanish translationDaniel Mustieles2017-02-271-233/+256
|
* Post release version bumpOndrej Holy2017-02-271-1/+1
|
* Update NEWS for 1.31.91 release1.31.91Ondrej Holy2017-02-271-0/+4
|
* smb: Fix a warningRoss Lagerwall2017-02-261-0/+1
| | | | Fix a warning due to no previous prototype for create_smb_uri.
* Updated Serbian translationМирослав Николић2017-02-262-2688/+2330
|
* Update Brazilian Portuguese translationRafael Fontenelle2017-02-251-267/+335
|
* Update Chinese (Taiwan) translationChao-Hsiung Liao2017-02-221-1660/+1374
|