File: NEWS

package info (click to toggle)
gvfs 1.46.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,592 kB
  • sloc: ansic: 100,472; python: 1,462; xml: 986; sh: 158; makefile: 117
file content (1858 lines) | stat: -rw-r--r-- 63,807 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
Major changes in 1.46.2
=======================
* ftp: Prevent source file removal in case of transfer failure
* trash: Explicitly cancel file monitor to prevent deadlock
* smb: Set fast content type independently of other attributes
* smb: Report progress when move operation is done
* google: Set the display name for the root folder also
* Translation updates

Major changes in 1.46.1
=======================
* trash: Do not fail when G_FILE_COPY_NO_FALLBACK_FOR_MOVE is used
* dav: Be sure that enumeration is possible when looking for a root

Major changes in 1.46.0
=======================
* No changes

Major changes in 1.45.92
========================
* build: Link libgvfscommon to libmetadata
* Translation updates

Major changes in 1.45.90
========================
* trash: Add support for x-gvfs-notrash option to ignore mounts
* recent: Port to GDateTime
* Translation updates

Major changes in 1.45.3
=======================
* client: Add support for zone identifiers in IPv6 addresses
* afc: Add support for libplist-2.2
* Translation updates

Major changes in 1.45.2
=======================
* metadata: Emit D-Bus signal when metadata are modified
* sftp: Preserve timestamps during copy and move operations
* dav: Add support for Negotiate and NTLM authentication
* Translation updates

Major changes in 1.44.1
=======================
* udisks2: Fix several memory leaks
* Translation updates

Major changes in 1.44.0
=======================
* Translation updates

Major changes in 1.43.92
========================
* Translation updates

Major changes in 1.43.91
========================
* build: Fix login_tty detection on systems without libutil
* afc: Handle permission denied error
* test: Several smaller fixes
* Translation updates

Major changes in 1.43.90
========================
* google: Add support for move and copy operations
* google: Several smaller bugfixes and enhancements
* goa: Add support for certificate prompts
* sftp: Fix file ownership when replacing
* dnssd: Prevent crashes after releasing resolver
* fuse: Prevent abortions if modified time is not set
* Translation updates

Major changes in 1.43.2
=======================
* gdbus: Add workaround for deadlocks when cancelling jobs
* smb: Improve enumeration performance
* test: Port to python3-twisted

Major changes in 1.43.1
=======================
* Don't set a content-type that isn't certain
* Replace usage of deprecated GTimeVal by GDateTime
* dav: Add support for services with IPv6 link-local addresses
* dav: Fix mounting when 403 is returned for the parent folder
* Revert "sftp: Always use port 22 if not specified"
* Translation updates

Major changes in 1.42.0
=======================
* Translation updates

Major changes in 1.41.91
========================
* fuse: Remove max_write limit
* Several smaller bugfixes
* Translation updates

Major changes in 1.41.90
========================
* udisks2: Change display name for crypto_unknown devices
* google: Disable deletion of non-empty directories
* google: Fix crashes when deleting if the file isn't found
* google: Fix issue with stale entries remaining after rename operation
* build: Define gvfs_rpath for libgvfsdaemon.so
* proxy: Don't leak a GVfsDBusDaemon
* Translation updates

Major changes in 1.41.4
=======================
* google: Do not enumerate volatile entries if title matches id
* build: Add dependency on gsettings-desktop-schemas
* daemon/udisks2: Handle lockdown option to disable writing
* fuse: Define RENAME_* macros when they are not defined
* google: Check ownership in is_owner() without additional HTTP request
* Several smaller bugfixes
* Translation updates

Major changes in 1.41.3
=======================
* daemon: Only accept EXTERNAL authentication (CVE-2019-12795)
* daemon: Check that the connecting client is the same user (CVE-2019-12795)
* admin: Ensure correct ownership when moving to file:// uri (CVE-2019-12449)
* admin: Use fsuid to ensure correct file ownership (CVE-2019-12447)
* admin: Allow changing file owner (CVE-2019-12447)
* admin: Add query_info_on_read/write functionality (CVE-2019-12448)
* Translation updates

Major changes in 1.41.2
=======================
* build: Several meson improvements
* build: Bump required meson version to 0.50.0
* google: Support deleting shared Google Drive files
* admin: Prevent core dumps when daemon is manually started
* afc: Remove assumptions about length of device UUID to support new devices
* Several smaller bugfixes
* Translation updates

Major changes in 1.41.1
=======================
* gmountsource: Fix deadlocks in synchronous API
* fuse: Adapt gvfsd-fuse to use fuse 3.x
* afp: Fix afp backend crash when no username supplied
* daemon: Unify some translatable strings
* Translation updates

Major changes in 1.40.0
=======================
* No changes

Major changes in 1.39.92
========================
* client: Fix mount info cache invalidation
* Several smaller bugfixes
* Translation updates

Major changes in 1.39.91
========================
* smb: Do not show password prompt when using winbind ccache
* Several smaller bugfixes
* Translation updates

Major changes in 1.39.90
========================
* sftp: Always use port 22 if not specified
* mtp: Don't retry reading an event after failure
* admin: Prevent access if any authentication agent isn't available (CVE-2019-3827)
* build: Several meson improvements
* Several smaller bugfixes
* Translation updates

Major changes in 1.39.4
=======================
* keyring: Prefer the most recent item
* afp: Try to find credentials even if user is not specified
* dav: Try authenticate again even if 403 was returned
* Several smaller bugfixes
* Translation updates

Major changes in 1.39.3
=======================
* udisks2: Improve handling of mounts which doesn't point into fs root
* udisks2: Restore support of comment=x-gvfs-* option
* daemon: Prevent spawning new daemons if outgoing operation exists
* common: Prevent crashes on invalid autorun file
* Several smaller bugfixes
* Translation updates

Major changes in 1.39.1
=======================
* google: Rework cache for better performance
* google: Add support for files with multiple parents
* udisks2: Add a new volume class `loop`
* gphoto2: Fix mounting for devices with special chars in ID_SERIAL
* mtp: Fix mounting for devices with special chars in ID_SERIAL
* smbbrowse: Force NT1 protocol version for workgroup support
* Several smaller bugfixes
* Translation updates

Major changes in 1.38.0
========================
* Translation updates

Major changes in 1.37.92
========================
* udisks2: Use loop backing file as description for unlock
* Remove workaround for directory / folder icons
* Translation updates

Major changes in 1.37.91
========================
* Translation updates

Major changes in 1.37.90
========================
* ftp: Add implicit TLS mode
* dav: Increase max number of connections to prevent lockups
* smb: Do not claim that mountable can be unmounted
* build: Add proper linker support check
* Several smaller bugfixes
* Translation updates

Major changes in 1.37.4
=======================
* udisks2: Support TCRYPT devices
* google: Do not create .desktop files for native files
* udisks2: Fix crashes caused by missing source tag
* udisks2: Handle x-gvfs- options not only for fstab entries
* Several smaller bugfixes
* Translation updates

Major changes in 1.37.2
=======================
* smb: Fix removal of non-empty dir
* programs: Remove deprecated gvfs utils
* gdu: Remove libgdu support
* gphoto2: Switch to a stable device uri
* mtp: Switch to a stable device uri
* Several smaller bugfixes
* Translation updates

Major changes in 1.37.1
=======================
* udisks2: Remove optical disc volumes/mounts if drive disappears
* daemon: Prevent deadlock and invalid read when closing channels
* metadata: Prevent usage of NULL if GUdevDevice is not found
* mtp: Implement support for move and copy operations
* backend: Fix crashes when "Volume is busy" prompt is shown
* build: Remove autotools
* build: Various meson-related fixes and improvements
* Several smaller bugfixes
* Translation updates

Major changes in 1.36.0
=======================
* Translation updates

Major changes in 1.35.92
========================
* build: Print summary of the options in meson
* smb: Avoid "Error: Success" failure messages
* Several smaller bugfixes
* Translation updates

Major changes in 1.35.91
========================
* mtp: Prevent crashes if device is unplugged during mount operation
* daemon: Fix admin backend spawning on some systems
* google: Return error properly when trying to replace native files
* Several smaller bugfixes
* Translation updates

Major changes in 1.35.90
========================
* build: Several FreeBSD related fixes
* Translation updates

Major changes in 1.35.4
=======================
* recent: Prevent crash when recent file changed
* trash: Fix trash::orig-path for relative paths
* Several smaller bugfixes
* Translation updates

Major changes in 1.35.3
=======================
* mtp: Handle read-past-EOF ourselves to prevent hangs
* Port several parts to GTask
* Several smaller bugfixes
* Translation updates

Major changes in 1.35.2
=======================
* metadata: Remove udev dependency in favor of gudev
* build: Enable elogind support in meson
* build: Port to meson build system
* gphoto2: Fix volume removal with current udev behavior
* mtp: Fix volume removal with current udev behavior
* Several smaller bugfixes
* Translation updates

Major changes in 1.35.1
=======================
* sftp: Add support for setting timestamps
* dav: Prevent usage of uninitialized variables
* afp: Prevent usage of uninitialized variable
* programs: Remove bashism from gvfs-* wrapper script
* Several smaller bugfixes
* Translation updates

Major changes in 1.34.0
=======================
* Translation updates

Major changes in 1.33.92
========================
* Translation updates

Major changes in 1.33.91
========================
* daemon: Avoid overflowing when querying for filesystem info
* proxy: Fix shadow mount handling for equal paths
* gdaemonfile: Fix g_file_equal for different mount_prefix
* gdaemonfile: Fix relative path handling
* client: Fix crash when calculating a relative path
* channel: Set sockets as nonblocking to prevent deadlocks when copying
* google: Report FS total size and free space
* Several smaller bugfixes
* Translation updates

Major changes in 1.33.90
========================
* admin: Require mounting for each client explicitly
* dav: Fix DAV implementation stripping spaces
* gdaemonfileenumerator: Fix crashes in synchronous enumerator code
* goa: Fix password-based authentication
* Translation updates

Major changes in 1.33.3
=======================
* Do not sent user invisible mounts in order to speed up g_volume_monitor_get
* mtp: Remove avoidance of file push for big files for better performance
* Various build fixes and cleanups
* Port several parts to GTask
* Several smaller bugfixes
* Translation updates

Major changes in 1.33.1
========================
* recent: Port from GtkRecentManager to GBookmarkFile (drop GTK+ dependency)
* sftp: Handle SecurID password prompt
* common: Fix potential crash caused by missing g_strdup
* fuse: Prevent potential crash if file handle is not set
* sftp: Prevent potential crash in case of parsing error
* google: Prevent potential crashes if resolve_dir fails
* gphoto2: Fix x-content-types setup
* google: Fix reported file size
* Port several parts to GTask
* Several smaller bugfixes
* Translation updates

Major changes in 1.32.0
=======================
* Translation updates

Major changes in 1.31.92
========================
* Translation updates

Major changes in 1.31.91
========================
* Translation updates

Major changes in 1.31.90
========================
* recent: Set G_FILE_ATTRIBUTE_RECENT_MODIFED attribute
* client: Ignore everything after first colon in userinfo
* Stability improvements for force unmount procedure
* Port several parts to GTask
* Various logging improvements
* Several smaller bugfixes
* Translation updates

Major changes in 1.31.4
=======================
* sftp: Limit writes to 32768 bytes
* udisks2: Improve unmount notifications
* daemon: Bump maximum read channel buffer size
* recent: Fix crashes when DISPLAY is not set
* Several smaller bugfixes
* Translation updates

Major changes in 1.31.3
=======================
* dnssd: Fix crashes for uris with colons
* trash: Correctly determine fs type for paths with symlinks
* gdaemonfile: Pass GFileCreateFlags in write operations
* metadata: Various performance improvements
* Several smaller bugfixes
* Translation updates

Major changes in 1.31.2
=======================
* dnssd: Fix crashes and leaks when mount fails
* network: Fix crashes when mount fails
* udisks2: Fix misleading notification when unmounting
* smb: Fix IPv6 uri handling
* smb: Improve read performance
* udisks2: Add support for uuid
* trash: Do not crash if home mount isn't found
* admin: Fix polkit errors caused by redundant translations
* Port several parts to GTask
* Several smaller bugfixes
* Translation updates

Major changes in 1.31.1
=======================
* udisks2: Improve handling of volumes with multiple mountpoints
* man: Various man page updates
* hal: Drop hal volume monitor
* programs: Deprecate gvfs utils in favour of new gio tool
* Several smaller bugfixes
* Translation updates

Major changes in 1.30.0
=======================
* Translation updates

Major changes in 1.29.92
========================
* Several smaller bugfixes
* Translation updates

Major changes in 1.29.91
========================
* dav: Various mount operation fixes
* Several smaller bugfixes
* Translation updates

Major changes in 1.29.90
========================
* build: Use upstream gettext instead intltool
* build: Use autoreconf instead custom script
* dnssd: Fix crashes when mount failed
* Several smaller bugfixes
* Translation updates

Major changes in 1.29.4
=======================
* Introduce an admin gvfs backend based on polkit
* gvfs-open: Fix spawning of applications with dashses in their app IDs
* daemon: Fix crashes caused by NULL certificates
* daemon: Set G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE attribute
* Several smaller bugfixes and improvements
* Translation updates

Major changes in 1.29.3
=======================
* afc: Many improvements and fixes for iOS support 
* fuse: Add possibility to enable debug output
* test: Skip tests if dependencies are missing
* Several smaller bugfixes
* Translation updates

Major changes in 1.29.2
=======================
* client: Fix missing mount prefix in cached fuse paths
* monitor: Add g_drive_is_removable() support
* dav: Fix IPv6 address handling
* Several smaller bugfixes
* Translation updates

Major changes in 1.29.1
=======================
* udisks2: Fix crashes when mounting encrypted volume
* mtp: Refactor event handling in order to fix unmount crashes
* Several smaller bugfixes

Major changes in 1.28.1
=======================
* udisks2: Abort mount operation if volume is unlocked
* udisks2: Lock unlocked volumes on eject/stop
* trash: Check modification time to avoid rereading
* trash: Rescan trash dirs before operations with files
* Translation updates

Major changes in 1.28.0
=======================
* afc: Several fixes for recent iOS versions
* Translation updates

Major changes in 1.27.92
========================
* fuse: Avoid crashes when exiting
* Translation updates

Major changes in 1.27.91
========================
* udisks2: Send unmount notification only once when stopping
* Translation updates

Major changes in 1.27.90
========================
* udisks2: Avoid crashes during unmount
* ftp: Fix cache invalidation after writing
* network: Fix crashes when mount failed
* mtp: Allow reading on more devices
* Several smaller bugfixes
* Translation updates

Major changes in 1.27.4
=======================
* dns-sd: Add support for nfs shares
* Do not print anything from daemons unless debug mode is enabled
* Several other logging improvements
* Translation updates

Major changes in 1.27.3
=======================
* sftp: Fail cancelled jobs
* metadata: Avoid endless recursion when copying meta files
* mtp: Use phone icon for MTP devices
* udisks2: Do not show notification if unmount failed
* completion: Allow bash completion for gvfs-mount
* http: Return error if seek was not successful
* sftp: Handle "Too many authentication failures" error
* Several smaller bugfixes
* Translation updates

Major changes in 1.26.2
=======================
* Accept XDG_RUNTIME_DIR/bus as a valid D-Bus session/user bus
* google: Fail in-fs copy/move if it leads to display name loss
* google: Mark files you can't see on the web as hidden
* Translation updates

Major changes in 1.26.1.1
=========================
* file monitor: Fix crashes caused by invalid read

Major changes in 1.26.1
=======================
* proxyvolumemonitor: Fix crashes when drives/volumes/mounts caches are changed
* Add a corresponding systemd user service for every D-Bus session service
* google: Report progress when copying and moving
* ftp: Return correct file info for absolute symlink paths
* sftp: Fix crashes when force unmount is proceeded
* sftp: Fix crashes when data connection setup failed
* Several smaller bugfixes
* Translation updates

Major changes in 1.26.0
=======================
* Translation updates

Major changes in 1.25.92
========================
* Add Google Drive backend based on libgdata
* Make all gvfs daemons own a name under org.gtk.vfs.*
* Several smaller bugfixes
* Translation updates

Major changes in 1.25.91
========================
* afp: Change g_error to g_warning for read errors to prevent crash reports
* dav: Mark files as untrashable to offer correct action in Nautilus
* gdaemonfile: Fix cancelling of g_file_mount_enclosing_volume
* Several smaller bugfixes
* Translation updates

Major changes in 1.25.90
========================
* Several bash-completion fixes and improvements
* mtp: Return ENOTEMPTY if trying to delete a non-empty directory
* Set filesystem::type for all backends
* build: Make EXTRA_DIST independent of configure results
* Several smaller bugfixes
* Translation updates

Major changes in 1.25.4.1
=========================
* monitor: Fix memory leak

Major changes in 1.25.4
=======================
* udisks2: Fix a crash when unmounting
* udisks2: Handle libsecret errors properly to avoid a crash
* afc: Fix a crash when unmounting and unplugging
* cdda: Use UTF-8 with libcdio >= 0.84
* Translation updates

Major changes in 1.25.3
=======================
* common: Fix crashes with blank disks
* gvfs-open: Fix launching applications over d-bus
* monitor: Show notification always when device is unmounted
* sftp: Use separate data connection for pulling and pushing data
* Several smaller bugfixes
* Translation updates

Major changes in 1.25.2
=======================
* gvfs-open: Do not alter uris before use
* mtp: Refresh storage information in query_info
* dav: Emit progress callbacks when copying and moving
* Several smaller bugfixes
* Translation updates

Major changes in 1.25.1
=======================
* dav: Verify TLS certificates
* ftp: Use TCP_NODELAY
* ftp: Implement TLS support
* sftp: Handle host key / IP mismatch
* Several smaller bugfixes

Major changes in 1.24.1
=======================
* hal: Fix compilation error and memory leak
* Translation updates

Major changes in 1.24.0
=======================
* Fix g-ir-compiler failures
* Translation updates

Major changes in 1.23.92
========================
* Remove obsolete obexftp code
* metadata: Reliability improvements
* afc, gphoto2: Fix force unmount when device is removed
* ftp: Prevent segfault when unmounting
* ftp: Bug fixes for directory parsing
* dav: Fix crash on mount when using dns-sd
* common: Increase mount timeout to 30 minutes
* Several smaller bugfixes
* Update man pages
* Translation updates

Major changes in 1.23.90
========================
* ftp: Implement backups for replace
* Add an nfs backend based on libnfs
* test: Various improvements and fixes
* ftp: Implement G_FILE_COPY_NOFOLLOW_SYMLINKS
* programs: Fix bash completion
* dav: Add support for server-side copying
* mtp: Set MTP filetype from mime type when uploading files
* gvfs-mount: Allow mounting as an anonymous user
* smb: Handle the anonymous flag
* Several smaller bugfixes
* Translation updates

Major changes in 1.23.4
=======================
* gproxymount: Fix crashes if eject callback isn't specified
* metadata: Fix crashes if tree initilization failed
* Several smaller bugfixes
* Translation updates

Major changes in 1.23.3
=======================
* Fix reported size for http and dav
* Several smaller bugfixes
* Translation updates

Major changes in 1.23.2
=======================
* Try copy and delete fallback for move if backup couldn't be created
* mtp: Do not crash when device is unplugged
* tests: Several fixes
* Several smaller bugfixes
* Translation updates

Major changes in 1.23.1
=======================
* Several improvements to unmounting reliability
* fuse: Several fixes to prevent data corruption and improve stat() results
* Improve root dir name and icon handling for gphoto2 and mtp
* Add bash completion support for gvfs-rename and gvfs-set-attribute
* client: Check for G_FILE_COPY_NO_FALLBACK_FOR_MOVE when push/pulling
* Add -C flag to gvfs-move
* sftp: Don't spin during connection
* sftp: Correctly retrieve the username from the secret store
* goa: Pass "password" as ID when fetching the password
* tests: Some cleanups and reliability fixes
* Several smaller bugfixes
* Translation updates

Major changes in 1.22.1
=======================
* mtp: Improve transfer speed for large files
* trash: Do not poll mount points without read access
* afp: Fix volume names encoding
* gvfs-set-attribute: "-n" flag implementation
* Improvements to avoid crashes during unmount
* Several smaller bugfixes
* Translation updates

Major changes in 1.22.0
=======================
* Translation updates

Major changes in 1.21.92
========================
* metatree: Avoid endless looping when the entry is too large
* archive: Allow reading files with '/./' in the path
* Several smaller bugfixes
* Translation updates

Major changes in 1.21.91
========================
* ftp: Fix crashing with latest glib
* tests: Gnome desktop testing integration
* dav: Force unmount when dns-sd data changes
* Several smaller bugfixes
* Translation updates

Major changes in 1.21.90
========================
* gvfs-save: Allow specifying G_FILE_CREATE_REPLACE_DESTINATION
* dav: Send infos incrementally
* ftp: Timeouted and closed connection handling improvements
* fuse: Error mapping fixes
* daemon: Wait to finish all jobs before unmount
* afp: Timeouted and closed connection handling improvements
* http: Limit maximal number of connections
* http: Reuse idle connections
* mtp: Error semantics and handling fixes
* mtp: Fix icon handling
* mtp: Support for create and delete events
* mtp: Use unique storage name
* mtp: Various fixes
* Several smaller bugfixes
* Translation updates

Major changes in 1.21.4
========================
* afp: Fix hangs while enumerating large directories
* afp: Performance improvement
* dav: Fix mounting multiple shares on the same host with different paths
* Several smaller bugfixes
* Translation updates

Major changes in 1.21.3
=======================
* afc: Implement standard::allocated-size
* smb: Implement standard::allocated-size
* afp: Report number of bytes copied
* afc: Work-around mounts not disappearing when disconnecting device
* afc: Add version detection for iOS 6, 7 and 8
* metadata: Fix misaligned accesses to 64bit data
* Several smaller bugfixes
* Translation updates

Major changes in 1.21.2
=======================
* gvfs-mount: Handle the ask-question signal
* dav: Implement push support
* recent: Implement query_info_on_read ()
* trash: Implement query_info_on_read ()
* tests: Various fixes
* Several smaller bugfixes and portability fixes
* Translation updates

Major changes in 1.21.1
=======================
* gvfs-move: Improve the interactive move and progress output
* gvfs-copy: Improve the interactive copy and progress output
* afc: Check for iOS >= 3.1.2 to enable house arrest
* dav: Use the native move operation
* fuse: Set permissions from UNIX mode when available
* smb: Give correct error when unlink fails while closing file
* dav: Unescape URIs before comparing them for equality
* Report gvfs version when --version is used
* Several smaller bugfixes and portability fixes
* Translation updates

Major changes in 1.20.0
=======================
* Translation updates

Major changes in 1.19.90
========================
* mtp: Symbolic icons implementation
* mtp: Volume name improvements
* mtp: Various fixes
* Several smaller bugfixes
* Translation updates

Major changes in 1.19.5
=======================
* gvfsdaemon: properly remove socket_dir
* ftp: Set etag::value
* daemon: Rate limit progress callbacks
* daemon: Set infinite timeout for enumerate response
* client: remove GVfsUriMountInfo
* sftp: force openpty(3) on BSD
* Several smaller bugfixes
* Translation updates

Major changes in 1.19.4
=======================
* dav: Implement truncate for output streams
* dav: Implement seek for output streams
* gphoto2: Implement pull support
* Several smaller bugfixes
* Translation updates

Major changes in 1.19.3
=======================
* Truncate support for output streams in various backends
* Convert libgvfscommon and libdaemon to a private shared library
* dav: Set the is_hidden property for files starting with a '.'
* http: Allow seek past end of file
* http: Various fixes
* afp: Don't free the handle if truncate fails
* gphoto2: Don't release the device multiple times
* smb: Require libsmbclient from Samba 3.4.0 or higher
* dav: Report number of bytes used on the filesystem
* gphoto2: Return the correct offset when seeking
* mtp: fix segfault when device not found
* mtp: Fail fast if in the middle of an unmount
* sftp: Implement try_query_fs_info using the OpenSSH statvfs extension
* sftp: Implement pull support
* Several smaller bugfixes and cleanups
* Translation updates

Major changes in 1.19.2
=======================
* sftp: Implement GFileCreateFlags and improve permission handling
* sftp: Implement push support
* sftp: Various fixes
* smb: Report number of bytes used on the filesystem
* smb: Various fixes
* daemon: Make progress callbacks work with try methods
* afp: Report number of bytes used on the filesystem
* archive: Set filesystem size information
* archive: Set the is_hidden attribute when appropriate
* archive: Various fixes
* trash: Add " (invalid encoding)" to files with invalid encoding
* trash: Support enumerating non-UTF-8 filenames
* tests: Various fixes
* recent: Don't mark filesystem as read-only
* recent: Prevent spurious monitor notifications
* Several smaller bugfixes and cleanups
* Translation updates

Major changes in 1.19.1
=======================
* Fix seeking past end of file for various backends
* archive: Set file executable bit from archive contents
* http: Set error to NULL to possibly prevent crash on close
* dav: Set file type to regular by default
* build: Remove unnecessary trailing slashes in path
* client: Fix usage of incorrect enum constant
* gvfs-info: Show URI
* gvfs-ls: Added option to output URIs
* fuse: Use the big_writes option to speed up writes
* Translation updates

Major changes in 1.18.2
=======================
* Fix a client side regression in 1.18.1 where apps would stop responding
* Fix a race condition in job handling that could cause large copies to hang
* Various fixes to the fuse implementation

Major changes in 1.18.1
=======================
* GVfsDaemon: Don't deadlock on cliend disconnect
* GDaemonFileMonitor: Only recieve events on one dbus connection
* GDaemonFileEnumerator: Only listen to messages one connection
* Several compilation warnings fixes and code cleanup
* Translation updates

Major changes in 1.18.0
=======================
* Translation updates

Major changes in 1.17.91
=======================
* Handle large thumbnails as well as normal ones

Major changes in 1.17.90
=======================
* archive: Update to latest libarchive API
* http: Stop using deprecated apis

Major changes in 1.17.3
=======================
* Clean shutdown implementation for various backends
* tests: Various fixes
* afc: Update to libimobiledevice new api

Major changes in 1.17.2
=======================
* metadata: Fix write regression
* smb: Allow specifying custom port
* tests: Various fixes
* http: Don't do network i/o when reading just the thumbnail path
* goa: Make shadowed mounts work

Major changes in 1.17.1
=======================
* metadata: Downgrade journal short-read to debug
* metadata: Flush all scheduled writeouts on daemon exit
* metadata: Use shorter writeout timeout on NFS
* metadata: Put journal in $XDG_RUNTIME_DIR for shared NFS homedir case
* metadata: Create new journal if it doesn't exist
* metadata: Be more resistive to broken journal files
* metadata: Force tree re-read after successful flush
* ccda: Adds remaining shutdown infrastructure and call from cdda backend
* Translation updates

Major changes in 1.17.0
=======================
* daemon: Ensure monitors are not prematurely finalized
* daemon: Fix crash when cancelling channel operations
* daemon: Tweak read sizes
* daemon: Close channels belonging to the active mount only
* daemon: Add infrastructure for the backends to exit cleanly
* channel: Unqueue cancelled requests
* channel: Verify that replies are for the right serial
* channel: Fix readahead behaviour
* channel: Return proper error if we're out of free fds
* mtp: Refactor read path in preparation for supporting normal files
* mtp: Use Android extensions to support in place read and write of files
* mtp: Use normal filenames in paths
* mtp: When removing cache entries, remove children too
* mtp: Clear previous cache entries when refreshing a directory
* mtp: Clear cache and emit delete events when an object is removed
* mtp: Handle overwriting of files in do_push and do_pull correctly
* mtp: Use standard name for SD Card icon
* obexftp: Fix crasher due to missing D-Bus threads support
* GVfsIcon: support icon serialisation
* Man pages typo fixes
* Translation updates

Major changes in 1.16.0
=======================
* cdda: Fix warnings for each track on the CD
* cdda: Remove unneeded function argument
* cdda: Remove leading '/' from the filenames
* mtp: Switch to version based checks for new libmtp features
* trash: Use the symbolic names for trash:: attributes
* tests: Update expected gvfs-mount -li output
* Translation updates

Major changes in 1.15.4
=======================
* gdu,udisks2: Make use of new ID_FS_BOOT_SYSTEM_ID udev property
* fuse: Install systemd tmpfiles.d exclusion file
* mtp: Fix crash when libmtp operations fails without error message
* mtp: Respect remove_source when pulling a file
* mtp: Respect remove_source in do_push
* tests: Add gvfs-testbed to enable tests which need root
* tests: Check for URI string presence on CLI unmount
* Translation updates

Major changes in 1.15.3
=======================
* New gnome-online-accounts volume monitor written by Debarshi Ray
* Various test suite fixes and improvements
* tests: Fix tar/zip ArchiveMounter tests
* tests: Fix race condition in Drive tests
* tests: Use apache2 binary directly
* daemon: Implement proper org.gtk.vfs.MountTracker.UnregisterMount()
* mtp: Fix race between on_uevent and do_unmount
* mtp: Fix leaked weak reference on monitors
* cdda: Adapt to new paranoia.h location
* smb: Implement proper unmount method
* computer: Fix volume monitoring
* build: Replace deprecated autoconf macros
* Translation updates

Major changes in 1.15.2
=======================
* New MTP backend and volume monitor written by Philip Langdale
* test: Add Drive tests
* test: Drop genisoimage dependency
* test: Include */sbin in PATH
* Translation updates

Major changes in 1.15.1
=======================
* client: Set default timeout to infinite for all GDaemonFile methods
* http, dav: Port to SoupRequest
* sftp: Fix symlink target in query_info_reply()
* smb: Report proper error on do_query_fs_info()
* proxy volume monitor: Don't disable exit_on_close on session bus
* proxy volume monitor: Get session bus on demand
* udisks2: Use udisks 2.0.90 API for symbolic icons
* udisks2: Fix symbolic icons for devices without an UDisksDrive
* udisks2: Don't leak GIcon when applying hints
* udisks2: Get icons via UDisksObjectInfo for block devices that are not drives
* udisks2: Add support for mount option x-gvfs-symbolic-icon
* udisks2: If a drive is hotplugged and CanPowerOff is TRUE, set can_stop to TRUE
* udisks2: Don't set GDrive.can_stop to TRUE if drive has removable media
* test: Add tests for trash://
* test: Add tests using the introspected Gio API
* test: Fix Drive tests for Python 3.3
* test: Disable service activation for local D-BUS
* test: Skip Dav tests if http is disabled
* programs: Add a cmdline way to empty the trash
* programs: Print out symbolic-icon in gvfs-info
* Removed calls to g_type_init()
* Translation updates

Major changes in 1.15.0
=======================
* New testing framework, written by Martin Pitt
* daemon: Check for a NULL GMountOperation when unmounting
* daemon: Allow specifying directory and extensions for mount files
* proxy volume monitor: Don't emit connected/added signals at object creation
* proxy volume monitor: Allow specifying the dir for .monitor files
* client: Don't disable exit_on_close on session bus
* fuse: Don't crash on unmount
* udisks2: Add appropriate content type for media players
* gphoto2: Make sure to not call g_mutex_clear twice, causing a crash
* smb: Fix libsmbclient samba 4 support
* Fix OpenBSD portability issues
* Translation updates

Major changes in 1.14.0
=======================
* Translation updates

Major changes in 1.13.9
=======================
* build: Use tar-ustar instead of tar-pax
* daemon: Fix some memory leaks
* file monitor: Try to unsubscribe from the proxy used for subscription
* hal volume monitor: Fix compilation
* gdu volume monitor: Handle gdu_pool_new() returning NULL gracefully
* Translation updates

Major changes in 1.13.8
=======================
* Added support for symbolic icons
* Removed favicon support
* Various build fixes and cleanup
* daemon: Return correct error for invalid backends
* daemon: Fix races when mounting the same mount in parallel
* daemon: Don't warn when running against an older gvfs-daemon
* gdbus: Don't g_warn about getting the dbus name
* gmountspec: Make sure to free the GVariantIter
* afc: Improve idevice error handling
* afc: Unpair an idevice if it was already paired and refuses to connect
* afc: Use the correct choice index for "Cancel"
* afp: fix g_vfs_afp_connection_get_max_request() not returning any value
* afp: Use human friendly error messages
* network: Don't set a file size for the network:// shortcuts
* network: Append the service name when needed to help differentiate
* recent: Honor the private hint
* Don't use the display name to make the unique mount point
* Don't include jargon in mount display names and messages
* Added more hints for translators
* Translation updates

Major changes in 1.13.7
=======================
* Use libsecret instead of gnome-keyring
* afp: Lots of robustness work
* cdda: Support libcdio >= 0.84
* Translation updates

Major changes in 1.13.6
=======================
* gphoto: suppor libgphoto 2.5 API

Major changes in 1.13.5
=======================
* cdda: Fix abort with non-ASCII text
* Add more man pages
* Translation updates

Major changes in 1.13.4
=======================
* Core daemon and backends GDBus port
* FSF Address has been updated
* gvfs-fuse-daemon has been renamed to gvfsd-fuse
* Spelling correction "filesystem" -> "file system"
* programs: Return proper exit value when something fails
* udisks2: Work around Linux bug for lingering partitions of cleared loop device
* udisks2: set should_automount to TRUE for loop devices set up by the user
* udisks2: ensure that encrypted loop devices also get padlock emblem
* build: Update udisks2 requirement to version 1.97
* proxyvolumemonitor: Use GDBusProxy's name owner change notification
* computer: Mark items as not renamable
* afc: Use consistent debug env var
* Translation updates

Major changes in 1.13.3
=======================
* Added man pages for all gvfs utilities
* Added a recent files backend (using GtkRecentManager)
* Support for new GMountOperation::show-unmount-progress signal
* daemon: Updated to use XDG Cache Home for thumbnails
* daemon/sftp: Support allocating PTYs through openpty on BSD
* udisks2: Plug a memory leak
* trash: Make it possible to get to real URI
* Translation updates

Major changes in 1.13.2
=======================
* dav: Ignore empty tags in multistatus responses
* dav: Abort finding the root on error or auth info change
* fuse: Support ftruncate() where requested size > current size
* gdbus: Use stable metadata proxy
* gvfs-open: Use g_app_info_launch_default_for_uri()
* build: Install bash completion files in /usr/share/
* Some more build fixes
* Translation updates

Major changes in 1.13.1
=======================
* Volume monitoring and metadata GDBus port
* Couple of udisks2 multiseat fixes
* udisks2: Don't call g_simple_async_result_take_error() twice
* udisks2: Also check for umount(8) saying "target is busy"
* udisks2: Set timeout to INTMAX when unmounting a filesystem
* udisks2: Show "Eject Anyway" (not "Unmount Anyway") if ejecting
* gvfs-mount: Add new -e option to eject a mount
* Translation updates

Major changes in 1.13.0
=======================
* afp: Convert pascal strings into utf-8
* afp: Use the UTF-8 server name for password dialogs when it's available
* udisks2: Don't set should_automount to TRUE for devices on other seats
* udisks2: Set should_automount correctly when starting up
* udisks2: Don't show drives from other seats and special-case seat "all"
* udisks2: Don't automount if drive is shared across all seats
* udisks2: Support getting/storing LUKS encryption passphrase from keyring
* build: Include udisks2/what-is-shown.txt in the tarball
* build: Bail if gphoto support is requested but not available
* Translation updates

Major changes in 1.12.1
=======================
* udisks2: Fix some memory leaks
* gphoto2: Initialize mutex early enough
* afc: Fix building against libimobiledevice-1.1.2
* afp: Prevent redefinition of GVfsAfpServer
* Translation updates

Major changes in 1.12.0
=======================
* Translation updates

Major changes in 1.11.5
=======================
* udisks2: Set G_VOLUME_IDENTIFIER_KIND_CLASS identifier for volumes
* fuse: Keep using ~/.gvfs as fallback
* Translation updates

Major changes in 1.11.4
=======================
* dav: Fix free space reporting
* udisks2: Only show /run/media/$USER mounts instead of $XDG_RUNTIME_DIR
* Translation updates

Major changes in 1.11.3
=======================
* Brand new udisks2 volume monitor by David Zeuthen
* AFP backend fixes and enhancements
* User runtime dir is now used for gvfs mounts and the burn backend
* Fixed backends segfaulting on unmount
* Translation updates

Major changes in 1.11.2
=======================
* gvfs-mime: List recommended applications
* daemon: Spawn fuse daemon in foreground for uClibc compatibility
* ftp: Make ftp.mount no longer conditionally built
* fuse: Remove the unused sys/vfs.h include
* build: Check for util.h to prevent implicit declaration
* Translation updates

Major changes in 1.11.1
=======================
* Fixed several crashes from recent mutex API changes
* http: Automatically decompress gzip'ed streams
* afc: Invert the choices order for the device passcode dialog
* afc: Tweak the text used to report a device locked error
* afc: Add support for iOS5 thumbnails
* Translation updates

Major changes in 1.11.0
=======================
* volume monitors: Keep remote volume monitor proxies alive forever
* volume monitors: Support get_sort_key() in out-of-process volume monitors and gvfs-mount(1)
* daemon: Grab a pointer to the GvfsBackend before unref'ing a job source, preventing a crash
* build: Purge hardcoded -DG_DISABLE_DEPRECATED
* Adapt to GLib 2.31.0 deprecations and new API
* Translation updates

Major changes in 1.10.0
=======================
* smb: Ignore read-only attribute for directories
* gdu volume monitor: Mark bootable mounts as such
* Translation updates

Major changes in 1.9.5
======================
* gdu: Don't ignore fstab mounts belonging to crypto volumes
* smb: Always check for existing file on rename
* dav: Fix small memory leak (display_name)
* Translation updates

Major changes in 1.9.4
======================
* Brand new AFP backend written by Carl-Anton Ingmarsson
* Fixed several leaks of GSimpleAsyncResult objects
* Added simple gvfs-mime test application
* daemon: Ignore SIGPIPE signals to avoid process termination on cancelled transfer
* computer: Use 'drive-harddisk-system' as File System icon
* ftp: Fix return value of try_get_settable_attributes() on failure
* gvfs-open: Exit with error code > 0 when open fails
* String tweaks and translation updates

Major changes in 1.9.3
======================
* gvfs-copy: Do not use deprecated g_format_size_for_display()
* fuse: Bring back real statfs()
* Fixed several obvious programming errors found during code analysis
* Translation updates

Major changes in 1.9.2
======================
* ftp: Fix stupid proxy servers disconnecting on FEAT
* build: Lower AC_PREREQ requirement
* gdu: Respect UDISKS_AUTOMOUNT_HINT available in recent udisks and gnome-disk-utility
* Translation updates

Major changes in 1.9.1
======================
* client: Handle error events when polling _g_vfs_daemon_call_sync ()
* client: Don't leak the GCancellable's fd in case of an g_poll error
* daemon: New logic to the backend to block requests
* daemon: Add logic to force close active channels
* daemon: Implement auto-busy on unmount
* daemonfile: Re-root the path in set_display_name ()
* http: Add http_backend_get_mount_base ()
* http: Get rid of unnecessary calls to uri_for_filename ()
* dav: Correctly encode URLs
* dav: Unescape the path when setting the mount_prefix of the GMountSpec
* dav: Include username and/or port in the backend's display-name
* dav: Decode the paths of the multistatus response before comparing them
* dav: Check for empty but present displayname dav-property
* dav: Implement query_fs_info and report used and free space
* dav: Use default unmount logic
* afc: Better error messages
* gphoto2: Use new default auto-busy code
* build: Change default tarball compression format to xz
* Translation updates

Major changes in 1.9.0
======================
* fuse: Make created files visible immediately on WebDAV
* fuse: Pretend created file exists even if backend didn't create it
* afc: Fix renaming files moving them to the root dir
* afc: Use a better display name for jailbroken device access
* common: Use libbluray to get Blu-Ray metadata
* daemon: Fix threadsafety of closing channels
* daemon: Don't leak dbus messages
* gdu volume monitor: Fix setting the BDMV name
* gdu volume monitor: Fix check for symlinks in /dev
* gdu volume monitor: Automount flash card readers
* gphoto2: Recognize cameras which don't implement get storageinfo
* dav: Fix copying of remote folders to disk
* dav: Correctly handle usernames supplied in the url
* http/dav: Send Accept-Language header
* http: Use Content-Disposition filename if available
* Translation updates

Major changes in 1.7.3
======================
* build: Bump fuse requirement for ATOMIC_O_TRUNC support
* build: Honor ACLOCAL_FLAGS
* build: Don't link http backend with SoupOutputStream
* build: Cleanups and fixes for compiler warnings
* client: Fix wrong assignment before dbus_connection_unref()
* archive: Prevent assertion failure on duplicate mount
* archive: Skip leading "./" from pathnames if present
* archive: Propagate entry index as inode no. for files
* smb: Add support for default location
* Translation updates

Major changes in 1.7.2
======================
* ftp: Parse mode, user and group for unix listings
* ftp: Implement chmod
* sftp: Catch invalid argument type for chmod command
* smb: Catch invalid argument type when setting mtime
* Translation updates

Major changes in 1.7.1
======================
* Various build issues fixed
* Fix gvfs client code on ARM platform
* ftp: Fix refcounting of addresses when connecting
* ftp: Detect TLS and SSL support
* afc: Add ability to mount the house-arrest service
* afc: Add support for House Arrest protocol to access
       the Documents/ folder within applications
* Translation updates (nb, es, he, et)

Major changes in 1.7.0
======================
* sftp: Close pty master in child process to prevent SELinux denial
* fuse: Add proper truncate support for open()
* Port to GSettings
* gdu: Treat mounts as hidden if they have a path element
  that starts with a dot
* Translation updates (ug, th)

Major changes in 1.6.5
======================
* Remove app lookup extension (now handled internally in GIO)
* gphoto: Use correct address for GPhoto mounts with gudev
* sftp: Fix poll() timeout

Major changes in 1.6.4
======================
* Lots of translation updates
* afc: Add support for photo thumbnails on iOS4
* daemons: Move GConf initialization from backend constructor
* sftp: Use poll() to cope with openssh-5.6 changes

Major changes in 1.6.3
======================
* translation updates
* fix the build against recent glib
* afc: remove com.apple.afc dependency
* afc: add password dialog
* ftp: fix undeclared variable
* ssh: improve password dialog

Major changes in 1.6.1
======================
* Translation updates
* client: Always return ERROR_CANCELLED for cancelled operations
* afc: Don't handle jailbroken phones
* afc: Detect ipad with right name and icon
* ftp: Better handling of some PWD results
* gdu: Support eject of blank cdroms
* client: Don't loop on problematic dbus input

Major changes in 1.6
====================
* afc: Allow copy of folders
* gphoto2: Don't access things accessible via afc too
* Translation updates

Major changes in 1.5.5
======================
* Fix with-dbus-service-dir configure switch
* ftp: Cleanup (close the data connection unconditionally)
* archive: Use archive_errno() the correct way
* Correct return values on error for programs
* Translation updates

Major changes in 1.5.4
======================
* gphoto2: Better support for devices that are read-only + delete
* gdu: Various fixes and preparation for LVM
* ftp: fix asserts
* sftp: remember to save password if username changed
* gio module: don't call g_file_find_enclosing_mount_async callback directly
* gvfs-monitor: Track moves if availible
* Translation updates

Major changes in 1.5.3
======================
* afc: Update for libimobiledevice (rename of libiphone)
* ftp: Handle cases where symlink target is not defined
* ftp: Prefer PASV/PORT to EPSV/EPRT for IPv4, the latter for IPv6
* Translation updates

Major changes in 1.5.2
======================
* Support new "default location" gio mount attribute
* Enable support for lazy loading of gio modules
* Don't build hal if building gdu
* daemon: Finalize backend on unmount
* metadata: stability and leak fixes
* metadata: fix data loss on i/o error
* fuse: Don't support readlink
* fuse: Allow setting mtime
* fuse: Fix permissions
* smb: Fix free space reporting on some servers
* gdu: handle mounts better
* trash: Fix crash/assert

Major changes in 1.5.1
======================
* Translation updates
* FreeBSD support for the gphoto2 backend
* Don't show ssh dns-sd items in dns-sd:, only sftp ones
* New AFC backend, providing access to Apple's iPhone, and iPod Touch devices
* Don't silently overwrite when restoring from trash
* Don't subscribe to unnecessary HAL D-Bus events
* Avoid error dialogs when the user canceled
* Don't confuse media players for cameras
* gdu: Consider logical partitions when determining if a drive should be ignored
* gdu: Separated "Safely Remove Drive" from "Eject"
* gdu: Disallow mounting/ejecting empty drives
* gdu: Handle NULL device objects
* obexftp: Fix a crash in the backend
* obexftp: Delete source file after move (remove_source switch)
* http: Support querying input streams
* http: Store and use cookies
* smb: Support querying filesystem size and free space
* ftp: Fixed parsing of CMU/VMS-IP FTP style listing
* Support for loading icon and title on Blu-ray video discs
* Bugs fixed: 595981, 596867, 517014, 593045, 594928, 586724, 586729, 597104, 580825

Major changes in 1.4.0
======================
* Translation updates
* metadata: fix leaks
* fix some uninitialized memory reads
* Always return metadata:: as a writable namespace for all backends

Major changes in 1.3.6
======================
* Translation updates
* ftp: robustness fixes
* gdu: Avoid unnecessary authentication dialogs

Major changes in 1.3.5
======================

* Properly translate gvfs-* programs
* Implement support for g_cancellable_release_fd
* sftp: Handle existing file on mkdir
* smb: Better performance when reading files
* ftp: Fix memory leaks
* Make dav mounts work be accessible with fuse (#590730,#590862)
* metadata: Fix memory leaks in daemon
* metadata: Fix rare write error on journal wrapover
* gphoto: Handle removal of camera with multiple storage heads
* hal: Fix crash for volumes with no HAL UDI

Major changes in 1.3.4
======================

* ftp: Make large FTP transfers work
* gphoto: use udev instead of hal
* Fix build on FreeBSD
* Bugs fixed: 588187, 589915, 573994, 590793, 576229, 589434

Major changes in 1.3.2
======================

* metadata-store: initial implementation
* gvfs-ls: add a -n option to gvfs-ls for nofollow-symlinks
* gvfsd-computer: better handling of PC floppy drives
* ftp: EPTR support
* cdda: Support gudev (and prefer it instead of hal)
* Add support user interaction when unmounting mounts (gdu, gphoto2)
* Add support starting/stopping drives (gdu monitor)
* Fix 'make distcheck'
* Bugs fixed: 582175, 516704, 586280, 585853, 582772, 585591, 587484

Major changes in 1.3.1
======================
* Add Gnome Disk utility based volume monitor
* Emit pre-unmount signal on GMounts
* Use new race-free cancellation connect APIs
* fix crash with newer glib
* avoid sending progress info if not needed
* ftp: Convert to use gio network APIs
* ftp: Restructure code significantly
* ftp: Fix logging in to a FTP server only works for the 2nd attempt
* ftp: Handle files > 4 gig
* gphoto: Fix support for Canon EOS 5D
* sftp: Pick up SSH_AUTH_SOCK from gnome-keyring
* sftp: Don't trust remote permissions for uids other than user
* cdda: verify filenames before using
* gvfs-copy: Show speed when copying

Major changes in 1.2.2
======================
* ftp: Fix error handling in some cases
* proxy monitor: Fix warning spew

Major changes in 1.2.1
======================
* Fix duplicate CD audio icons after remount
* Fix problems mounting encrypted volumes
* Handle usernames with @ in them better in uris
* trash: handle weird filenames correctly
* sftp: Fix various error conditions
* volume monitors: emit pre-unmount signals
* smb: Fix various error conditions
* fuse: Make sure closing a file flushed the file on the backend

Major changes in 1.2.0
======================
* sftp: Don't hang if ssh no authentication method availible
* Don't leak file monitors
* computer: don't show shadowed mounts

Major changes in 1.1.8
======================
* Fix crashers and leaks
* Handle file:// uris with anchors in gvfs-open
* fuse: Support ftruncate to the current file size
* escape/unescape hostname part in uris, allowing spaces in e.g. smb domains
* hal: Fix "No mount object" error on mount
* Change details of the new .xdg-volume-info file format
* Fix races in cancellation of gvfs streams
* Remove debug spew from backends
* ftp: Fix anonymous login
* gphoto2: Ignore broken storages with no capacity
* Don't globally modify COMP_WORDBREAKS in bash completion script
* Don't ask for username when getting ssh key passphrase

Major changes in 1.1.7
======================
* Fix build on some platforms
* ftp: Fix short read errors
* gphoto2: Make it work on iphone
* sftp: Fix symlink creation
* fuse: Better support of truncation, fixing OOo save
* proxy monitors: Support mount operations, etc
* gvfs-mount: add --device commandline support
* sftp: Fix protocol bug that made some servers not work
* general support for query_info over streams, implemented for smb, sftp
* Initial support for .xdg-volume-info reading

Major changes in 1.1.6
======================
* Fix crashes
* trash: Better messages
* Clean up glib and gtk includes
* archive: Build with later versions of libarchive
* dav: Fix folder creation
* dav: Fix redirection when user is specified in url
* http: fix error propagation
* sftp: Try to preserve ownership when replacing a file

Major changes in 1.1.5
======================
* network: Pick up SMB shares from zeroconf
* obexftp: Write support for
* obexftp: Support obexftp over usb
* trash: Don't follow symlinks on delete
* fix crashes

Major changes in 1.1.4
======================
* Trash performance fixes
* Fuse performance fixes

Major changes in 1.1.3
======================
* ftp: fix limited number of connections causes commands to fail (#565504)
* trash: fix parallel build doesn't work (#562955)
* trash: add trash::orig-path and trash::deletion-date info
* trash: set files to mode 700 before deleting to deal with users trashing read-only directories
* smb-browse: browsing authentication support (#524485)
* smb-browse: make backend not automounted anymore

Major changes in 1.1.2
======================
* New trash backend
* Use the new shadow mount facility in gio
* gphoto2: Use shadow mounts
* obex: Fix icon for root directory
* http: Fix major memory leak
* http: Support proxies

Major changes in 1.1.1
======================
* Reverse map FUSE pathnames to gvfs locations
* Fix crashes
* Show better icon info in gvfs-info
* Support custom icons for gvfs backends
* dav: support uris (dav+sd://) which specify dns-sd services instead of resolved ip+port
* ftp: Fix time parsing
* ftp: Show username in auth dialog if specified in uri
* ftp: Support UTF8 server feature
* ftp: Use LIST -a instead of LIST on unix servers
* fuse: Fix major race in that caused crashes
* fuse: Set st_blocks so that e.g. the "du" command works
* gphoto: use custom icons for faster thumbnails
* obexftp: Port to bluez 4 API
* sftp: If name specified in mount, use in name too so that fuse paths are unique
* sftp: Support /etc/favicon.png
* smb: Don't ask for password twice if cancelled
* smb: support setting timestamp

Major changes in 0.99.7
=======================

* Go back to using powers of 10 instead of powers of 2 for display sizes.
  This means we will agree with printed sizes for most devices (e.g. memory
  sticks will now correctly report "64MB volume" instead of previous
  "61.7MB volume").

* Bug fixes:
  546971 - rhythmbox crashed when ejecting an ipod device
  550858 - Export CD-Text info via xattrs

* Translation updates:
  nb.po (Kjartan Maraas), nl.po (Wouter Volsterlee), pt.po (Duarte Loreto),
  cs.po (Petr Kovar)

Major changes in 0.99.6
=======================

* Better cross-backend copy/move logic. Now will perform an actual file
  system move if possible, even when the source and target are handled
  by different backends (e.g. trash and local).
* Now requires libsoup >= 2.23.91.

* Bug fixes
  548841 - Incorrect usage of plural forms in gphoto backend
  547133 - Getting mtime over http backend is broken
  538573 - lastmodified uses ISO 8601 date/time where it should use http-date
  549253 - error path leaks
  549553 - gvfs mangles uri for unhandled schemes
  550100 - gio uses 10^3 base (SI) for volume names
  529971 - Restore from trash appears to do a file copy
  RH 460223 - gnome-mount no longer automatically opens LUKS-encrypted
              partitions

* Translation updates:
  nl.po (Wouter Bolsterlee), gl.po (Ignacio Casal Quinteiro), es.po
  (Jorge Gonzalez), pt_BR.po (Og Maciel), et.po (Priit Laes), eu.po
  (Inaki Larranaga Murgoitio), th.po (Theppitak Karoonboonyanan), ja.po
  (Takeshi AIHANA), vi.po (Nguyễn Thái Ngọc Duy), fr.po (Robert-André
  Mauchin), he.po (Yair Hershkovitz), nb.po (Kjartan Maraas), mk.po
  (Jovan Naumovski), de.po (Hendrik Richter), ga.po (Seán de Búrca),
  zh_HK.po (Chao-Hsiung Liao), zh_TW.po (Chao-Hsiung Liao), sv.po
  (Daniel Nylander)

Major changes in 0.99.5
=======================

* FTP backend now restores file permissions when replacing a file.
* Miscellaneous unreported bug fixes.

* Bug fixes
  41852  - Items should be restored to orig. name when moved out of trash
  546300 - g_file_replace_async doesn't allow NULL etag

* Translation updates:
  be@latin (Ihar Hrachyshka), es (Priit Laes, Jorge Gonzalez),
  th (Theppitak Karoonboonyanan), pt_BR (Og Maciel), pl (Tomasz
  Dominikowski), ml (Praveen Arimbrathodiyil), pt (Duarte Loreto),
  fi (Ilkka Tuohela), zh_HK (Chao-Hsiung Liao), zh_TW (Chao-Hsiung Liao),
  cs (Petr Kovar), gl (Ignacio Casal Quinteiro), ja (Takeshi AIHANA),
  he (Yair Hershkovitz), gu (Sweta Kothari), ar (Djihed Afifi)


Major changes in 0.99.4
=======================

* Require glib >= 2.17.6
* Support und update serialization of GEmblem and GEmblemedIcon
* Add x-content/* support to daemon mounts
* Use standard icon names

* Bug fixes
  545695 – any new volume is mounted twice
  545489 – Nautilus hangs when inserting a CD
  544008 – g_daemon_file_replace_async mode err
  543552 – gvfs-fuse-daemon crashes if dbus dies
  528891 – Handle URI schemes case insensitive
  525779 – Dont look for trashs dir on sys mounts
  545968 – leaks xml documents in error cases
  545966 – Disallow net access to WebDAV xml parser
  509740 – Trash icon not updated ..
  539167 – Use g_set_error_literal where appropriate
  528848 – [PATCH] statfs lies
  518284 – need to add i18n on module branching

* Translation updates:
  it (Luca Ferretti), gl (Ignacio Casal Quinteiro), es (Jorge Gonzalez)
  ja (Takeshi AIHANA), ar (Khaled Hosny), pt_BR (Vladimir Melo),
 

Major changes in 0.99.3
=======================
* Fix frequent crasher in volume monitor

Major changes in 0.99.2
* Move hal and gphoto volume monitors out of process
* Fix recursive copying
* Require glib >= 2.17.4
* Make the fuse daemon more reliable
* Many smaller bugfixes
* et (Ivar Smolin), vi (Clytie Siddall), 
  ar (Djihed Afifi, Khaled Hosny)

Major changes in 0.99.1:
* Fix directory copy/delete problems
* Fuse daemon robustness fixes
* Allow mounting non-standard ISO images
* Better username/domain tests on mount spec
* Require gphoto >= 2.4.0
* Fix strdup()/g_free() confusion
* Use consistent translatable strings for mount and volume
* Plug some memory leaks
* Many smaller bug fixes
* Translation updates: 
  ar (Djihed Afifi, Khaled Hosny), bg (Alexander Shopov),
  et (Ivar Smolin), he (Yair Hershkovitz),
  nb (Kjartan Maraas), tr (Baris Cicek), vi (Clytie Siddall)

Major changes in 0.2.2:
* Respect the giomoduledir provided in gio package config file
* Better mount icon and name for archive backend
* Fix crashes with cancelled stream ops
* Fix race that caused a mount to hang for a client
* Implement async query_filesystem_info
* Fix minor leaks
* trash: Correct display names for directories
* sftp: Kerberos support
* smb: Port to new samba 3.2.0 API (backwards compat)
* sftp: Handle overwrites correctly (was silent overwrite)

Major changes in 0.2.1:
* Added archive backend
* Implement most of the async functions in GDaemonFile
* Correctly handle usernames in uris for ftp://
* Ftp fixes
* Webdav fixes
* Add gvfs-rename command line utility
* Fix cancellation
* OpenBSD fixes
* smb: hide dot files
* Enviroment variable to disable fuse backend at runtime

Major changes in 0.2.0:
* Fix crashes
* Build and portability fixes
* Better mime icons for remote shares
* Don't show mounts and volumes outside /media
* Don't automount gphoto mounts
* Translate cd disc names
* ftp: Updates
* obex: Give better error message on broken phones
* sftp: Allow setting permissions
* dav: Correct mount name, file icons and file types

Major changes in 0.1.11:
* Correctly free mounts
* Disable debug log

Major changes in 0.1.10:
* Fix volume monitor change reporting
* Fix timeout during automount

Major changes in 0.1.9:
* Added ftp backend
* Added obexftp backend
* Locking fixed for volume monitors
* Better bash completion
* Better webdav support
* Allow backends to specify uri details in .mount file
* Fix leaks and crashes
* Fix icon for audio cds

Major changes in 0.1.8:
* Update for gio API changes
* Add gphoto2 backend
* Add network: and dns-sd: backend support
* Http and webdav backend updates
* Keyring support
* Fix crashes and deadlocks
* Add trash::item-count attribute to trash:///
* Fix smb reads > 65535 bytes breaking on some servers
* Fix cancellation race in reading
* Fill in thumbnail info for backends
* sftp: Handle host identity changes
* Enable translations everywhere
* Add bash completion support for command line apps
* Fix handling of blank cds and audio cds
* Support port in sftp uris

Major changes in 0.1.7:
* Update for gio API changes
* Add gconf based implementation of
  g_app_info_get_default_for_uri_scheme
* Fix crashes
* Allow navigation with http uris
* Better file read performance with readahead and
  large block reads
* Lots of bugs fixed in trash backend
* Pick up cdrom icons from autorun.inf
* Add "filesystem" file to computer://
* Fix renaming in sftp and smb

Major changes in 0.1.6:
* Add files missing in the released 0.1.5 tarball

Major changes in 0.1.5:
* Update to work with latest glib
* Fix sftp error handling on reading directories
* Use correct file info attribute name style
* Add gvfs-mkdir app
* hal: Don't show drives if all volumes are hidden
* Enable translations

Major changes in 0.1.4:
* Update to work with latest glib
* Fix compiler warnings

Major changes in 0.1.3:
* Various fixes to hal volume monitor
* Make gvfsd reload config on SIGUSR1
* Updates to http/dav backends
* Port http backend to libsoup 2.4.
* Initial burn:/// backend
* Add ssh: alias for sftp:
* Fix fuse mount
* Automount fuse on startup of daemon
* Various bugfixes

Major changes in 0.1.2:
* Switch to intltool fro translation setup
* Update to latest gio APIS
* Add mount list option to gvfs-mount
* Specify fallback icons in hal backend
* Implement more of computer: backend
* Initial http backend
* Fix get_relative_path bug on root paths

Major changes in 0.1.1:
* Use gio from glib (glib 2.15.1 required)
* Fix translation issues
* Fix various sftp backend issues
* Move .mount files to /usr/share/gvfs/mounts
* Add initial computer:/// backend

Major changes in 0.1.0:
* Use gio from glib (glib 2.15.0 required)
* Update to API changes in gio
* add cdda backend
* add hal volume monitor

Major changes in 0.0.2:
* Updated to work win gio-standalone 0.1.2
* Build fixes on various platforms
* Don't link client lib to libgvfscommon.so
* Change how the uri mapper works
* Integrate standard uri mappers (i.e. smb) into client libs
  (You might need to remove $prefix/lib/gvfs/modules/libsmb.so
   from an older version if you install this)
* Cleanly handle when gvfs daemons die, without
  crashing the app
* Implement unmounting
* Rename master daemon to "gvfsd" and mount daemons to
  names like "gvfsd-sftp".