summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: d1f4bca5d3ee998ff5ce80967eb1f2c1446adcc1 (plain)
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
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
Major changes in 43.2
=========================
* Regressions addressed:
  - Launch search from shell correctly (Corey Berla)
  - Make nautilus-autorun-software work again (António Fernandes)
  - Restore 2-dimensional navigation from sushi (António Fernandes)
  - Resolve stuttering scrolling (Corey Berla)
  - Reintroduce 64px icon size for grid view (António Fernandes)
  - Show full filename again in grid, using tooltips (António Fernandes)
* Other bugfixes:
  - Avoid a many crashes (Corey Berla, Gary li, António Fernandes)
  - Stop showing � in the type on Properties (Aleksandar Dezelin)
  - Show rename error dialogs again (Corey Berla)
  - Handle X11-only drag-and-drop quirks (Corey Berla)
  - Allow autorun.sh without executable bit (Will Thompson)
  - Improve selection-setting (Corey Berla)
  - Restrict DND actions over drag source (Corey Berla)
  - Focus replaces files (Corey Berla)
  - Improve keyboard focus navigation on the new views (António Fernandes)
  - Stop blocking on the tracker connection (Corey Berla)
  - Don't add missing emblems (António Fernandes)
* Translation updates (GNOME Translation Project contributors)

Major changes in 43.1
=========================
* Bugfixes
  - Actually reset metadata when reseting to default columns (Corey Berla)
  - Don't allow hiding name column (Corey Berla)
  - Keep track of column sorting changes (Corey Berla)
  - Fix view focus navigation (António Fernandes)
  - Reimplement view navigation from the previewer (António Fernandes)
  - Don't accept drops into search directory (Liu Yuyang)
  - Share settings with GTK4 filechooser (Colin Sane)
  - Fix a properties extensions bugs (António Fernandes)
  - Fix various Drag-and-Drop bugs (Corey Berla)
  - Remove dead shortcut from Keyboard Shortcut (Jake Dane)
  - Allow opening current view in new tab from sidebar (Colin Kinloch)
  - Fix crashes (Corey Berla, Aleksandar Dezelin)
* Performance improvements
  - Optimize sorting during directory loading (Corey Berla)
  - Minimize column factories (Corey Berla)
  - Increase search timeout (Jeff Fortin Tam)
  - Minimize and optimize menu updates (Corey Berla)
* Build fixes
  - Make header prototypes match definitions (Leonardo Hernández)
* Translation updates (GNOME Translation Project contributors)

Major changes in 43.0
=========================
* Bugfixes
  - Open first search result with Enter, as before (Corey Berla)
  - Don't freeze when opening media storage (Corey Berla)
* Translation updates (GNOME Translation Project contributors)

Major changes in 43.rc
=========================
* Resolving regressions from the GTK 3 to 4 switch:
  - Restore accessible labels for view items (Corey Berla)
  - HiDPI icons and thumbnails (António Fernandes)
  - Restore transient location entry behavior (António Fernandes)
  - Restore spacebar shortcut to trigger sushi file previewer (António Fernandes)
  - Restore ability to create new file from dropped text (Corey Berla)
  - Restore ability to duplicate via DND + Ctrl (Corey Berla)
* Drag-and-drop enhancements:
  - Allow dropping files into Starred to star them (Corey Berla)
  - Prevent "open on hover" while moving pointer (Corey Berla, António Fernandes)
* Menu enhancements:
  - Add menu item to remove files from Starred list (Corey Berla)
  - Don't activate menu button when clicking folder name (António Fernandes)
  - Don't offer "Properties" and "Add to Bookmarks" actions when they don't make sense (Eric Daigle, Corey Berla, António Fernandes)
* Properties enhancements
  - Wrap long filename words in Properties (anarchistcat)
  - Refine properties for root directory (Corey Berla)
  - Show error state for extensions properties (António Fernandes)
* General enhancements
  - Redesign trash infobar (Ignacy Kuchciński, Sam Hewitt)
  - Add tooltips to every headerbar control (Ronen Margolin)
  - Update and modernize libnautilus-extension documentation (Jan Tojnar)
  - Update appdata screenshots (Christopher Davis)
* Bugfixes
  - Fix various app chooser issues (Corey Berla)
  - Fix various batch rename dialog issues (Corey Berla)
  - Fix Highcontrast styles (Ignacy Kuchciński, António Fernandes)
  - Fix focus misbehaviours in the new views (Corey Berla)
  - Don't show URI escape codes in tooltips (Antonio Teixeira)
  - Show sharing infobar in gnome-user-share's fallback location (Corey Berla)
  - Fix icon size in file conflict dialog (António Fernandes)
  - Fix operations indicator animation (António Fernandes)
  - Mark missing translatable strings (Sabri Ünal)
  - Fix various memory leaks (Ignacy Kuchciński, Corey Berla)
  - Fix compilation errors (Jeremy Bicha, Ondrey Holy, Timo)
* Translation updates (GNOME Translation Project contributors)

Major changes in 43.beta.1
==========================
* Restore view options tooltip (António Fernandes)
* Mark new files for translation (Piotr Drąg)
* Look for extensions in their new installation directory (Jeremy Bicha)

Major changes in 43.beta
=========================
* Adapting main window elements to smaller sizes (Christopher Davis);
  - Make sidebar foldable.
  - Split toolbar contorls into top and bottom toolbars at small sizes.
* Restoring Disks integration (Corey Berla):
  - Open storage unit in Disks from Properties.
  - Format with Disks from the sidebar context menu.
* Absorbing features from core plug-ins (Corey Brela):
  - Provide infobar for Public folder, instead of gnome-user-share
  - Provide context menu action to open folders in Console.
  - Replace nautilus-send-to extension with Email portal.
* Remodeling plug-ins
  - List installed extensions plug-ins in About. (Corey Berla)
  - Implement new Properties API and port Image and Audio/Video (António Fernades)
  - Remove GTK-dependent API from libnautilus-extension (António Fernandes)
  - Bump libnautilus-extension versions.
* Improving search UI design
  - Use modern design patterns for type filter chooser (António Fernandes)
  - Elaborate FTS snippets and place them in a container (António Fernandes, Alan Day)
* Modernizing Properties window
  - Implement new "pages and rows" design (Peter Eisenmann, António Fernandes)
  - Move ability to set default app into Open With dialog (António Fernandes, Corey Berla)
* Reorganizing context menus (Allan Day, António Fernandes).
* Refining view visual styles
  - Saturate selection colors (Allan Day, Alexander Mikhay)
  - Add icon shadows (Jakub Steiner)
  - Refine layout of column editor dialog. (Allan Day, António Fernandes)
* Using more modern widgetry
  - Use AdwTabBar for detatchable tabs (Alexander Mikhaylenko, António Fernandes, Christopher Davis)
  - Use AdwEmptyState for empty folder views (Christopher Davis, António Fernandes).
  - Use AdwMessageDialog instead of GtkMessage. (Christopher Davis, Ondrej Holy)
* Resolving regressions from the GTK 3 to 4 switch:
  - Restore Accessibility relations (Corey Berla).
  - Restore location entry suggestions (Corey Berla).
  - Restore libcloudproviders integration (Ondrej Holy)
* Opening new tab with middle click on next and forward buttons (Corey Berla)
* Miscellaneous bugfixes (multiple contributos)
* Translation updates (GNOME Translation Project contributors)

Leftover known regressions in 43.beta
  - Lacks HiDPI icons
  - Lacks attention-grabbing animation on operations button

Major changes in 43.alpha
=========================
* Resolving regressions from the GTK 3 to 4 switch:
  - Reintroduce clipboard with GTK 4 (António Fernandes)
  - Reintroduce Drag’n’Drop with GTK 4 (Corey Berla, António Fernandes)
  - Reintroduce emblems independently of file icon (António Fernandes)
  - Reintroduce filter search tags with GTK 4 (António Fernandes)
  - Port audio-video-properties extension to GTK 4 (Corey Berla)
  - Restore sidebar features from GTK 3 (Corey Berla)
  - Fix other regressions from the GTK 3 to 4 switch (António Fernandes, Noëlle,Óscar Fernández Díaz, Ondrej Holy, Corey Berla, Ákos Horváth, Corey Berla)
* Modernizing view widgets
  - Port files grid view mode to GtkGridView (António Fernandes)
  - Reimplement files list view mode with GtkColumnView (António Fernandes)
  - Add checkerboard background for thumbnails with transparency (Utkarsh Gandhi, António Fernandes)
* Enhancing menus:
  - New menu item to open current folder in another application (António Fernandes)
  - Add menu item to copy current path to clipboard (Utkarsh Gandhi)
  - Redesign zoom controls as icon size controls (António Fernandes)
  - Context menu bugfixes (Owen D'Aprile, Ignacy Kuchciński)
  - Add context menu item to show Properties in Other Locations (Corey Berla)
  - Improve support for context menus on touchscreens
  - Show extensions in templates names (Roshan R)
  - Show sort menu options in list virw mode (António Fernandes)
  - Allow sorting in recent and search (António Fernandes)
* Other enhancements:
  - Use better in-app notifications with AdwToast (Christopher Davis)
  - Modernize "About" with AdwAboutWindow (Christopher Davis)
  - Refine pathbar appearance (Utkarsh Gandhi, António Fernandes)
  - Label '/' with the OS name (StarShot)
  - Keyboard shortcuts overlay updates (Tero Gusto)
* Miscellaneous bugfixes:
  - Search engine bugfixes (Ondrej Holy)
  - Floating satus bar bugfixes (Ignacy Kuchciński)
  - Fix popover crashes (Corey Berla)
  - Allow copying to a ramfs (Alister Sanders)
  - Stop computing remote folders item count when didabled (Corey Berla)
  - Fix batch rename for files with the same name in search results (Corey Berla)
  - Don't trigger keyboard shortcuts ouside their intended scope (Vanadiae)
* Maintenance work
  - Adapt to thumbnails API changes (Michael Catanzaro)
  - Depend on libportal and drop wallpaper fallback setting (Jeremy Bicha, António Fernandes)
  - Modernize build with new meson features (Maximiliano)
  - Bump extensions library version (António Fernandes)
* Translation updates (GNOME Translation Project contributors)

Leftover known regressions in 43.alpha
  - Lacks HiDPI icons
  - Lacks attention-grabbing animation on operations button

Major changes in 42.alpha
=========================
* Improve design of the file renaming UI (Peter Eisenmann, Allan Day)
* Improve visuals of the file conflict UI (Joshua Lee)
* Use GtkBuilder UI definitions for more components (António Fernandes, Apoorv Sachan)
* Fix "Move to"/"Copy to" from Starred (DillyPickly)
* Improve disposition of shell search provider (Marco Trevisan)
* Sort by subtype within type (rajat jain)
* Allow searching by creation time (Nishit Patel)
* Replace deprecated gexiv2 functions (Nishal Kulkarni)
* Fix extension API introspection annotations (Aaron Jacobs)
* Expand on extension API documentation (Aaron Jacobs)
* Add compressed archives to Recent files (Manny)
* Preparations for GTK 4 switch (Ernestas Kulik, António Fernandes, Matt Jakeman, Álvaro Costa, Suhaas Joshi)
* Complete the GtkFlowBox-based grid view (António Fernandes)
* Remove EelCanvas-based grid view (António Fernandes)
* Improve design of the path bar (António Fernandes)
* Fix geographical coordinates displayed format (Michael von Gunten)
* Port to GTK 4 (António Fernandes)
* Fix some GTK 4 switch regressions/warnings (António Fernandes, Ondrej Holy)
* Translation updates (GNOME Translation Project contributors)

Known major regressions in 42.alpha
  - Lacks Drag-and-Drop interatcion
  - Lacks clipboard interaction
  - Lacks HiDPI icons
  - Lacks MIME-type icons in list view
  - Has poor performance for large directories in grid view
  - Lacks attention-grabbing animation on operations button.
  - Doesn't display emblems
  - Doesn't display file filters as tags
  - Lacks "Format" context menu item in sidebar
  - Lacks Audio/Video properties page

Major changes in 41.1
=====================
* Cache Scripts and New Document menus to avoid lags (António Fernandes)
* Ellipsize subtitle label in trash bar to reduce minimum width (António Fernandes)
* Fix build with meson 0.60.0 (Albert Vaca Cintora)
* Don't change action when unchecking in File Conflict dialog (António Fernandes)
* Fix progress reporting when skipping during extraction (Ondrej Holy)
* Offer skipping in case of extraction failure only when there are more files (Ondrej Holy)
* Remove leftover files after extraction failure (Ondrej Holy)
* Set keyboard focus on the row with the selected archive format (Clyde Laforge)
* Translation updates

Major changes in 41.0
=====================
* Translation updates

Major changes in 41.rc
=========================
* Disable background "Properties" while searching (Felipe Borges)
* Don't duplicate set wallpaper when not using portal (Barnabás Pőcze)
* Translation updates (GNOME Translation Project contributors)

Major changes in 41.beta
=========================
* Fix comma placement in the floating status bar (Nick Montalbano)
* Use standard::edit-name attribute where appropriate (Anubhav Tyagi)
* Bring "Open with..." options together in context menu (Luis Bosque)
* Fix "Compress..." acting on file that was not the selected one (Anubhav Tyagi)
* Redesign "Compress..." dialog (Ondrej Holy, Allan Day)
* Provide creation of password-protected ZIP archives (Ondrej Holy)
* Fix search by date not working with Tracker engine (Nishit Patel)
* Add link to Privacy Settings from Trash (Eric Daigle)
* Indicate whether trash automatic emptying is enabled (Eric Daigle)
* Translation updates (GNOME Translation Project contributors)

Major changes in 41.alpha
=========================
* Replace deprecated gexiv2 symbols (Ondrej Holy)
* Make NautilusWindowSlot non-derivable (António Fernandes, Ernestas Kulik)
* Prevent closing popover when "Show Hidden Files" is toggled (Rodrigo Pedro)
* Hand preview updating over to FilesView (António Fernandes)
* Provide source .svg icon (Jakub Steiner)
* Fix missing "Open Scripts Folder" menu item (Ondrej Holy)
* Prevent reopening of previewer on window focus (Felipe Borges)
* Keep working directory when executing scripts (António Fernandes)
* Translation updates

Major changes in 40.1
=====================
* Fix File conflict dialog crashes on extensionless filenames (António Fernandes)
* Fix crashes when extracting encrypted archives (Ondrej Holy)
* Fix duplicated context menu entries for RAR archives (Marcos Simental)
* Translation updates

Major changes in 40.0
=====================
* Translation updates

Major changes in 40.rc
======================
* Group files depending on the opening app (Bastien Nocera, António Fernandes)
* Fix crashes when closing the last tab (António Fernandes)
* Revert text-based clipboard workaround and use the dedicated type again (António Fernandes)
* Use GNOME 40 empty view styling (Christopher Davis, António Fernandes)
* Translation updates

Major changes in 40.beta
========================
* Improve tab completion in the location entry (James Westman, António Fernandes)
* Make manual rename more convenient in File conflict dialog (António Fernandes)
* Add support for extracting password-protected archives (Felipe Borges, Ondrej Holy)
* Implement new single-page design of Preferences dialog (Adrien Plazas, António Fernandes)
* Use libhandy for window and headerbar (Christopher Davis, Adrien Plazas)
* Fix detection and handling of remote files (António Fernandes)
* Fix progress reporting in various cases (Ondrej Holy, Sachin Daluja)
* Fix Batch rename dialog crashes (Sachin Daluja)
* Preserve mtime of non-empty directories on move (Maxim Mikityanskiy)
* Translation updates

Major changes in 40.alpha
=========================
* Add support for creation date (António Fernandes)
* Fix several memory leaks (António Fernandes)
* Do not use default location instead of root in path bar (Ondrej Holy)
* Don't save window state when tiled (Elias Projahn)
* Search for tracker3 in PATH (Antoine Jacoutot)
* Use xdg-desktop-portal for setting wallpapers (Felipe Borges)
* Handle rotated images in Preferences dialog (James Westman)
* Fix Batch rename dialog crashes (Ondrej Holy)
* Fix double-click row check (António Fernandes)
* Translation updates

Major changes in 3.38.1
* Update starred URIs on move & rename (António Fernandes)
* Prevent recursion to speed up emptying trash (Ondrej Holy)
* Prevent stale items to be shown in starred view (António Fernandes)
* Revert icon emblem fixes in order to prevent performance issues (António Fernandes)

Major changes in 3.38.0:
* Fix missing Extract/Compress menu items (António Fernandes)
* Translation updates

Major changes in 3.37.92:
* Port to Tracker 3 (Sam Thursfield)
* Translation updates

Major changes in 3.37.91:
* Fix batch renaming using metadata (Max)
* Translation updates

Major changes in 3.37.90:
* Port Properties dialog to GtkBuilder including various enhancements (Apoorv Sachan, António Fernandes)
* Prevent crashes when file operation is cancelled (Ondrej Holy)
* Auto-escape filenames on NTFS and exFAT mounts (ignapk)
* Preserve navigation history after opening Other Locations (Sachin Daluja)
* Use g_clear_signal_handler instead of custom codes (Joshua Lee)
* Translation updates

Major changes in 3.37.3:
* Allow changing file owner under admin:/// scheme (Apoorv Sachan)
* Update outdated appdata info (Ondrej Holy)
* Translation updates

Major changes in 3.37.2:
* Fix broken tracker search engine under some locales (Cristiano Nunes, António Fernandes)
* Use tabular numbers for progress info (Diego Escalante Urrelo)
* Disable select-all while directory is loading (Ujjwal Kumar)
* Add newly created files to Recent (Sachin Daluja)
* Port to new PackageKit DBus API (Romeo Calota)
* Translation updates

Major changes in 3.37.1.1:
* Prevent jump to the old scrolling position after changing location (António Fernandes)
* Add org.gnome.Nautilus.FileOperations2 interface (Alberts Muktupāvels)
* Fix content type detection when opening files from remote locations (Ondrej Holy)
* Show notification on completion of file transfers if the window isn't focused (Sachin Daluja)
* Add support for zoom media keys (Sabri Ünal)
* Add dynamic tooltip for the toggle views button (Ujjwal Kumar)

Major changes in 3.37.1:
* Always show pathbar background to fix styling glitches (António Fernandes)
* Fix check to not clear clipboard after each move/copy operation (Artem Serostanov)
* Ignore hidden directories in the templates folder (Ondrej Holy)
* Add several missing shortcuts to the Keyboard Shortcuts dialog (Sabri Ünal)
* Unify pathbar and background context menus (Sachin Daluja)
* Refactor menu handling to fix repeated popover animations (António Fernandes)
* Mark Empty Trash and Delete All buttons as destructive actions (Alexey Chernyshov)
* Show infobar to allow installation of OSTree software (Philip Withnall)
* Honor umask when creating new files from templates (Ondrej Holy)
* Fix endless content size calculations in properties dialog (Ondrej Holy)

Major changes in 3.36.0:
* Translation updates

Major changes in 3.35.92:
* Fix crashes often happening when searching (Ondrej Holy)
* Say "Trash is Empty" only in the root of trash folder (Abdul Rauf)

Major changes in 3.35.91.1:
* Add support for hidden template files (Ondrej Holy)
* Fix conflict dialog for google-drive (Ondrej Holy)

Major changes in 3.35.90:
* Fix crashes after conflict dialog response (Ondrej Holy)
* Add support for numeric keypad for zooming (Sabri Ünal)
* Fix missing filename results when searching (Ondrej Holy)
* Fix compilation on Wayland-only systems (Javier Jardón)

Major changes in 3.35.2:
* Don't use hyphens when breaking filenames in multiple lines (António Fernandes)
* Fix drag and drop on scaled displays (Robert Mader)
* Add and use new icon for the development profile (Jakub Steiner, António Fernandes)
* Fix criticals and crashes when closing properties dialog (Ondrej Holy)
* Fix opening file previews in Sushi (Jan Alexander Steffens)
* Fix criticals after trashing file (Ondrej Holy)

Major changes in 3.34.0:
* Fix emblems not appearing on files in some cases (Colin Atkinson)
* Respect recursivity setting in shell search provider (Jiří Černý)
* Make recursive permission changes apply only to children (Carlo Lobrano)

Major changes in 3.33.90:
* Add tooltip to view menu button
* Show warning in read-only directories when pasting files (George Mocanu)

Major changes in 3.32.0:
* Much smoother search, no more hang ups (Xiang Fan)

Major changes in 3.31.90:
* New path bar design that improves discoverability of buttons (Carlos Soriano)
* Improve high contrast layout for accesibility (Jordan Petridis)
* New Nautilus icon (Jakub Steiner)
* Add coverage report (Carlos Soriano)
* Fix crashes (Antonio Fernandes, Ernestas Kulik, Marco Trevinho)
* Remove app menu (Peter)
* Add issue triaging automation (Carlos Soriano)
* Make CI centralized (Jordan Petridis)
* Make starred files feature available on Tracker tracked directories (Carlos Soriano)

Major changes in 3.30.0:
* Nothing new, enjoy 🍹

Major changes in 3.29.92:
* Revert showing search filter popover on ctrl-f (António Fernandes)
* Add more tests (Alexandru Fazakas) (woo!)
* Replace ambiguous slash with trash icon in path bar (Yi-Soo An)
* Fix path bar buttons not working with keyboard (António Fernandes, Carlo Lobrano)
* t (Carlos Soriano)
* Fix crash when opening broken bookmarks from other locations (Ernestas Kulik)
* Add warning about exceeded file name limit when renaming, etc. (António Fernandes)
* Add plumbing for desktop extension (clipboard, undo/redo, etc.) (Carlos Soriano)
* Tweak path bar styling (António Fernandes, Alexander Mikhaylenko, Jakub Steiner)

Major changes in 3.29.90.1:
* Flatpak improvements. Improved user facing experience and developer experience (Ernestas Kulik, Carlos Soriano)
* CI & CD set up. Increases stability, buildability and feedback cycle (Jordan Petridis, Ernestas Kulik, Carlos Soriano)
* Distribute icons horizontally in the icon view (Nikita Churaev)
* Implement new pathbar/search design (Allan Day, Antonio Ferndandes, Piotr Drag, Carlos Soriano)
* Implement new toolbar menus design (Carlos Soriano)
* Add background actions to the path bar (Carlos Soriano)
* Get background work ready for gtk4 port (Ernestas Kulik)
* Add recent search engine (Marco Trevisan)
* Implement tests for Nautilus most critical operations (Alexandru Fazakas)
* Show Recency column in recent view (Rahul Verma)
* Avoid recursivity in symbolic links (Ernestas Kulik)
* Add a button in properties dialog to open GNOME Disks (Rahul Verma)
* Add touch support for menus in views (Jan-Michael Brummer)
* Fix error when accesing a file with x-nautilus-search (Rahul Verma)
* Allow right clickin expanders (Alexandru Fazakas)
* Allow trashing/deleting Desktop dir (Antonion Fernandes)
* Improve about dialog visuals (Juraj Fiala)
* Fix path bar changing size when navigating (Nikita Churaev)
* Fix MB/MiB confusion in preferences dialog (Christophe Fergeau)
* Fix openning files failing from other applications in some cases due to DBus race (Ernestas Kulik)
* Implement devel style to differentiate development builds (Carlos Soriano)
* Improve handling for impaired (Joanmarie Diggs, Peter Vagner)
* Fix wrong labels and file count in operations progress (Antonio Fernandes)
* Remove special treatment for desktop files (Carlos Soriano)
* Remove special treatment for computer:/// (Carlos Soriano)
* Fix triggering maximum file name when renaming (Ernestas Kulik)
* Open search filters with popover open when using <ctrl>f (Stratila Andrei)
* Expose active windows for Ubuntu dash support (Philip Langdale)
* Show "Open With" for files in trash (George Mocanu)
* Provide more information in prperties dialog for files in trash (George Mocanu)
* Implement showing properties of current view from path bar (Wong Heung Sang)
* Avoid fuzzy icons in small sizes (Sam Hewitt)
* Warn if the renamed file will be hidden once renamed (Yash Jain)
* Improve and fix visuals in the new views (Carlos Soriano)
* Add show sidebar setting to the preferences dialog (Carlos Soriano)
* Remove experimental views UI setting in preferences dialog (Carlos Soriano)

Major changes in 3.28.0:
* Fix build failure (Ernestas Kulik)
* Translation updates

Major changes in 3.27.92.1:
* Fix build failures (António Fernandes, Ernestas Kulik)
* Break the build (Ernestas Kulik)

Major changes in 3.27.92:
* Don’t open files when double-clicking star icon (Alexandru Fazakas)
* Fix crashes caused by extremely long error messages (Ernestas Kulik)
* Don’t strip extensions from folder names in “Compress…” dialog (Rahul Verma)
* Set keyboard focus when programmatically selecting in list view (António Fernandes)
* Remove new folder name suggestion when there is an active selection (Alexandru Fazakas)
* Hide thumbnails when using small icons (Alexandru Fazakas)
* Reduce help overlay size (Carlos Soriano)

Major changes in 3.27.90:
* Enable closing tabs by middle-clicking (Carlos Soriano)
* Rename “favorite” files to “starred” (Carlos Soriano)
* Fix starring files with special characters (Carlos Soriano)
* Ellipsize tab labels less aggressively for large numbers of tabs (António Fernandes)
* Fix infinite loop when extracting encrypted archives (Ernestas Kulik)
* Remove support for external bulk rename tools (Carlos Soriano)
* Only show option to star files in indexed locations (Carlos Soriano)
* Fix batch renaming for files with special characters in metadata (Ernestas Kulik)
* Refactor extension library (Ernestas Kulik)
* Show notification when unstarring files and allow undo (Carlos Soriano)
* Fix AppStream metadata being installed in a deprecated location (Jeremy Bicha)

Major changes in 3.27.4:
* Better touch support (Jan-Michael Brummer, Antonio Fernandes)
* Remove desktop icons (Ernestas Kulik, Antonio Fernandes, Carlos Soriano)
* Add a close button for the path bar (Karuna Grewal)
* Improve Flatpak support, now access to devices too (Carlos Soriano)
* Improve trash performance (Ondrej Holy)
* Improve window default position (Ernestas Kulik)
* Improve starring files reliability (Alex Pandelea)
* Add Microsoft Office types for search (Carlos Soriano)
* Fix crash when detaching tabs (Nelson Benitez)
* Add XF86Back and XF86Forward as key shortcuts (Antonio Fernandes)
* Add keyboard navigability to the new views (Ernestas Kulik)
* Make wallpaper folder translatable (Carlos Soriano)
* Forbid more characters for FAT systems when renaming files (Ernestas Kulik)
* Add DjVu as pdf type (Carlos Soriano)
* Fix crash when expanding folders (Antonie Fernandes)

Major changes in 3.27.2:
* Add starring files (Alexandru Pandelea)
* Fix timestamps for files in the future (Pete Bantock)
* Never soft folders before files in search (Antonio Fernandes)
* Remove fts setting from preferences (Alexandru Pandelea)
* Reveal item when opened from the recent view (Nelson Benitez)
* Fix crash when expanding folders in list view (Antonio Fernandes)

Major changes in 3.26.0:
* Translations

Major changes in 3.25.92:
* Fix desktop file parsing errors (Jeremy Bicha)
* Bump GTK+ dependency version to 3.22.6 (António Fernandes)
* Add mnemonic to replace button in file conflict dialog (Martin Bříza)
* Show prefix matches first when searching (Alexandru Pandelea)
* Enable keyboard navigation in search type list (Ernestas Kulik)
* Fix list view column picker not being centered in certain locales (Robert Mibus)
* Make the path bar a drop target for files again (António Fernandes)
* Make sidebar visibility setting persistent (Jason Crain)
* Use spin button for thumbnailable file size limit setting (Vyas Giridhar)
* Only allow directories to be dragged onto sidebar for bookmarking (Nelson Benítez León)
* Make path bar clicks add new history entries (António Fernandes)
* Allow hiding unfocused search bar by pressing Escape (Ernestas Kulik)
* Hide location entry after losing keyboard focus (Ernestas Kulik)
* Allow deleting files with numpad delete key (António Fernandes)
* Forbid overwriting directories with files (Ernestas Kulik)

Major changes in 3.25.90:
* Fix use of return key for conflict dialog (Evgeny Shulgin)
* Fix use of return key when searching not activating the selected file (Alexandru Pandelea)
* Add stable Flatpak builds (Carlos Soriano)
* Fix wrapping file names after a dot (Jeremy Bicha)
* Use header bar for all dialogs (Carlos Soriano)
* Use portals for launching files in a sandbox with Flatpak (Ernestas Kulik)
* Show error on empty name on batch rename dialog (Diana Grecu)
* Change keyboard shortcuts for navigation of tabs similar to Firefox/Chrome etc. (Ernestas Kulik)
* Add a restore tab funcionality, similar to web browsers (Alexandru Pandelea)
* Fix rubberband with Wacom tablets (Jason Gerecke)
* Add Full Text Search (fts) to Nautilus so we search inside files content too (Alexandru Pandelea)
* Disable create link when clipboard is empty (Tiberiu Lepadatu)
* Disable zoom button if percentage is 100% (Diana Grecu)
* Bump Tracker dependency to version 2.0 (Carlos Garnacho)
* Make Tracker a hard dependency (Bastian Nocera)
* Assume Nautilus project is GPL3+ (Carlos Soriano)
* Allow decompressing archives on remote locations (Bastian Nocera)
* Add license to Nautilus extensions (Ernestas Kulik)
* Only use location in description for GNOME Shell search (Florian Mullner)
* Add tablet pad controllers for common actions (Carlos Garnacho)
* Fix <ctrl>+z when renaming a file not undoing the text (Ernestas Kulik)
* Use upstream and newer fallback icons (Ernestas Kulik)
* Provide mime type support for compressed archives, so Nautilus can be used for handling compressed archives outside of Nautilus too (Carlos Soriano)

Major changes in 3.25.1:
* Ported to Meson build system (Ernestas Kulik)
* Fix replacing directory with symlink (echo-devim)
* Focus when a new folder is created (Kevin Lopez)
* Do not consider directory names with dots as extensions (Evgeny Shulgin)
* Fix move to/copy to when searching (Alex Pandelea)
* Various fixes to the new experimental views (Carlos Soriano)
* Fix scripts order in submenu (Carlos Soriano)
* Fix open in new tab/window in Other Places (Carlos Soriano)
* Show new networks available while in Other Places view (Georges Basile Stavracas Neto)
* Avoid extraction of files if not enough space (Vyas)
* Fix not being able to drag the window from the path bar (Carlos Soriano)
* Add user preference for using the new views (Carlos Soriano)
* Fix DnD when using Google Drive (Ondrej Holy)

Major changes in 3.24.0:
* Translations

Major changes in 3.23.92:
* Fix count progress in operations when skipping files (Ernestas Kulik)
* Improve meson build (Ernestas Kulik)
* Selection and menus fixed for the experimental icon view (Carlos Soriano)
* Make Nautilus work with Flatpak and Builder (Carlos Soriano)

Major changes in 3.23.91:
* Fix long-time, hard to reproduce, and common crash on desktop with "auto layout" icons (Alex Pandelea)
* Port building system to meson (Ernestas Kulik)
* Make F2 toggle between selection modes, full file name or only file name withouth extension (Ernestas Kulik)
* Recent files are now always files that only the user used, rather than any program/daemon like Dropbox updating the access time (Carlos Soriano)
* Fix Nautilus tests with extexnsions points (Jan Tojnar)
* Fix crash on desktop when refreshing (Alex Pandelea)

Major changes in 3.23.90:
* Add <ctrl> Return as shortcut to open selected folder in new window (Felipe Borges)
* <ctrl> N now opens the window in the same location as the current view (Felibe Borges)
* Fixes on managing menus with keyboard (djb)
* Remove unused <ctrl> B shortcut (Jeremy Bicha)
* Use a better empty state for trash (Mohammed Sadiq)
* Fix floating bar hide on hover when using tabs (Ernestas Kulik)
* Syncronize gtk+ and Nautilus setting for sorting the folder first (Felipe Borges)
* Select entire names for folder when renaming (Razvan Chitu)
* Support to open folders withouth permission using polkit and the admin backend (Carlos Soriano)
* Fix trash operations progress report (Carlos Soriano)
* Improve performance setting metadata only when necesary (Carlos Soriano)
* Fix progress reporting when copying (rpm-build)
* Prevent toolbar menu dissapearing when "Hidden files" menu item is toggled (Neil Herald)
* Update app icon (Jakub Steiner, Lapo Calamandrei)
* Fix icon scale computation when changing DPI (Lionel Landwerlin)
* Add <ctrl> M as alternate shortcut for renaming for those laptops withouth "f" keys (Cristian Nancu)
* Fix crash when pressing enter on search (Alexandru Pandelea)
* Fix failed build with tracker disabled (Ernestas Kulik)
* Ask the user for using desktop files from unknown sources (Carlos Soriano)
* Improve the operations button animation in order to not need to show the operations popover (Carlos Soriano)
* Add an experimental icon view based on flow box with extra niceties under a gsetting preference (Carlos Soriano)

Major changes in 3.22.1:
* Multiple batch renaming fixes (Alex Pandelea, Carlos Soriano)
* Multiple compression integration fixes (Razvan Chitu, Carlos Soriano)
* Fix not showing "eject" and other options for devices in the context menu in the desktop (victoryang)
* Rework clipboard handling, fixing desktop<->Nautilus interaction (Carlos Soriano)
* Fix overlaping icons on desktop in some cases, noticeabily in Ubuntu (Ian Lane)
* Fix wrong progress information in operations when skipping files (Razvan Chitu)
* Fix gnome-shell search only searching for whole words (Jiri Cerny)
* Show location as default for list view on Recent (Carlos Soriano)
* Fix context menu position in Wayland or other non-global coordinates systems (Carlos Soriano)
* Update man page of nautilus (Ernestas Kulik)
* Add revealer for warnings in batch rename dialog (Lavinia Stefania)
* Add tooltips to batch rename dialog file names (Alex Pandelea)
* Port nautilus classes to G_DECLARE (Lavinia Stefania)
* Extend Nautilus File API for regular files (Neha Yadav)
* Don't crash for simple leaks on the views (Carlos Soriano)

Major changes in 3.22.0:
* Increase gtk+ depencency version (Michael Biebl)

Major changes in 3.21.92:
* Fix libgd warning (Bastien Nocera)
* Numerous batch renaming improvements and fixes (Alex Pandelea, Carlos Soriano)
* Detect .bz and .xz as extensions for renaming (Alex Pandelea)
* Fix operations popover too small (Ernestas Kulik)
* Add dummy --no-desktop option so Dropbox plugin works again (Carlos Soriano)
* Fix build when using the --disable-tracker compile time option (Carlos Soriano)

Major changes in 3.21.91:
* Implement batch renaming tool (Alex Pandelea)
* Implement compressed files support (Razvan Chitu)
* Rework the view menus (Neil Herald)
* Separate desktop handling from Nautilus (Carlos Soriano)
* Add missing cut shortcut (Pedro Beja)
* Add <ctrl>= as "zoom in" shortcut (Ernestas Kulik)

Major changes in 3.20.3:
* Support HDPI in desktop margins (Andrea Azzarone)
* Fix opaque desktop background after changing themes (Ernestas Kulik)
* Fix gnome-shell search not providing results or making the CPU at 100% even if closed (Carlos Soriano)

Major changes in 3.20.2:
* Fix white desktop background after changing themes (Sebastien Keller)
* Improve double click detection (Johannes Oertel)
* Fix path bar menu on wayland appearing on random places (Olivier Fourdan)
* Only save zoom level if the level has changed (Mike Gorse)
* Fix date difference calculation for attributes like Modified Date (Ernestas Kulik)
* Hide floating bar on hover (Carlos Soriano)
* Fix detection of remote systems for not thumbnailing (Ernestas Kulik)
* Fix sorting on Japanese locale (Ernestas Kulik)
* Fix gnome shell search provider not being recursive (Carlos Soriano)
* Fix copy operation lags (Razvan Chitu)
* Avoid unresponsiveness when file chooser is opened (Ernestas Kulik)
* Fix renaming duplicated logic on search and recent (Ernestas Kulik)
* Fix trash handling to delete files if disk is full (Mario Sanchez Prada)

Major changes in 3.20.1:
* Fix crash if using scripts (Carlos Soriano)
* Fix shortcuts to change views mode (Razvan Chitu)
* Do not switch focus to created tabs (Razvan Chitu)
* Fix margins on sidebar context popover (Sebastian Bacher)
* Fix the empty states icons blocking clicks for activating context menus (Georges Basile Stavracas)
* Show same name in the path bar as in other locations when using mounts (Razvan Chitu)
* Make more dialogs modal (Ernestas Kulik)
* Allow "move to" action in network locations (Carlos Soriano)
* Fix crash when searching and closing with multiple windows (Carlos Soriano)
* Fix path bar not updating to the new location when finalizing search (Carlos Soriano)
* Show an error dialog on falied connection to servers in the other locations view (Ernestas Kulik)
* Fix odd empty operations popover (Neil Herald)
* Fix hamburguer menu action not being available when closing a tab (Carlos Soriano)
* Select first item in the views only when searching (Carlos Soriano)
* Fix crash when creating a new window of nautilus from the shell when the application was not running (Carlos Soriano)
* Allow more applications to be set as default in network locations (Carlos Soriano)
* Make renamed or created files scroll the view to the position of the files (Carlos Soriano)

Major changes in 3.20.0:
* Improve path bar sliders sizing, making them less prominent (Carlos Soriano, Lapo Calamandrei)

Major changes in 3.19.93:
* Use better arrows for the path bar (Carlos Soriano)

sMajor changes in 3.19.2:
* Show free space in Other Places (Georges Stravacas)
* Add shortcuts window (Felipe Borges)
* Fix new window Gnome Shell dash item (Carlos Soriano)
* Add kudos data for Gnome Software (Cosimo Cechi)
* Check availability of PackageKit for installing extra apps (Cosimo Cechi)
* Fix overflow in 32 bits systems (Sebastian Bacher)
* Fix renaming popover misplaced in the desktop (Iain Lane)
* Fix blank square in the view after changing view modes or locations (Carlos Soriano)
* Fix crash when clicking preferences (Carlos Soriano)
* Widespread work on removing leaks, that usually causes crashes (Carlos Soriano)
* Operations start visibility improved, showing the popover (Carlos Soriano)
* Fix wrong date calculation (Carlos Soriano)
* Fix another issue with nautilus opening location in the wrong window (Carlos Soriano)
* Fix "move to" action (Carlos Soriano)
* Show SD cards and external hard drives in the sidebar, not in the Other Places view (Carlos Soriano)
* Fix nautilus not opening a new window when used from command line (Carlos Soriano)
* Fix crash using samba (Iain Lane)
* Allow 3rd party themes to tweak operations button color (Elias Aebi)
* Fix recurrent crash when closing Nautilus (Debarshi Ray)
* Avoid empty operations popover (Carlos Soriano)
* Fix nautilus opening locations in a different window than the one the user is using (Carlos Soriano)
* Fix Other Places lock ups (Benjamin Otte & Emmanuelle Bassi)
* Adapt rename entry to the width of the file and increase the minimum (Carlos Soriano)
* Increase max width of operations popover to fix ellipsize translations (Carlos Soriano)
* Fix recurrent crashers (Carlos Soriano)

Major changes in 3.18.1:
* Multiple crash fixes (Carlos Soriano)
* Use GtkPlacesSidebar hints to improve drag and drop experience (Carlos Soriano)
* Fix remote filesystem check for google drive (Carlos Soriano)
* Fix properties not being available on some file systems (Carlos Soriano)
* Fix not being able to trash on some file systems (Carlos Soriano)
* Fix calculation of operations button that was not showing soon enough in big operations (Carlos Soriano)
* Get filesystem type asynchronously, so the view is never frozen (Carlos Soriano)
* Make the delete shortcut also work for delete permanently on filesystem that does not support trash (Carlos Soriano)

Major changes in 3.18.0:
* Fixed various sidebar crashes (Carlos Soriano)
* Use a correct file number for copy/move operations (Carlos Soriano)
* Fix various operations crashes (Carlos Soriano)
* Google Drive support (Debarshi Ray)
* Fix desktop icons not appearing for the first time (Carlos Soriano)
* Fix searching on recursive mode but not working properly (Carlos Soriano)
* Fix remote warning label not showing sometimes (Carlos Soriano)
* Use better file renaming positioning when using keyboard shortcut (Andreas Reis)
* Fix a crash on Other Locations (Mathias Clasen)

Major changes in 3.17.91:
* Ground work for code isolation and clean up of views (Carlos Soriano)
* Don't add more items on the filechooser sidebar (Carlos Soriano)
* Adjust animation for progress button (Jakub Steiner)
* Track and fix all translation issues (Piotr Drag, Alexander Franke, Carlos Soriano)
* Improvements and fixes in the new "Other Locations" view (Carlos Soriano)
* Disable sorting on Recent and Search and ensure criterion correcteness (Carlos Soriano)
* Add a preference and disable by default automatic opening of folders while hovering on drag an drop operations (Carlos Soriano)
* Don't search recursively on remote locations, and provide feedback when that happens (Carlos Soriano)
* Fix major crashers and races (Carlos Soriano)

Major changes in 3.17.90:
* Don't show sort menu on search (Carlos Soriano)
* Use watch cursor with pointer (Carlos Soriano)
* Use popover for renaming (Carlos Soriano)
* Improve operations button feedback (Carlos Soriano)
* Code isolation of the model and view of nautilus (Georges Basile Stavracas Neto)
* Add a new "other places" view for networks and internal partitions (Georges Basile Stavracas Neto)

Major changes in 3.17.3:
* Ignore no desktop if not firt launch (Chow Loong Jin)
* Make the toolbar menu settings the only and permanent settings (Carlos Soriano)
* Use Modified Time for all locations except Recent (Carlos Soriano)
* Implement new design for operations feedback (Carlos Soriano)
* Hide sort menu on Recent (Carlos Soriano)
* Switch to list view if searching (Carlos Soriano)
* Provide smarter location displayed names (Carlos Soriano)
* Show feedback when there is no search results (Carlos Soriano)
* Fix floating bar loading feedback (Carlos Soriano)
* Add feedback when the current shown folder is empty (Carlos Soriano)

Major changes in 3.17.2:
* Fix window focus issues when starting nautilus (Carlos Soriano)
* Fix handling of command line options in diferent cases (Carlos Soriano)
* Decrease the padding on list view (Carlos Soriano)
* Use a dialog for creating folders (Georges Basile Stavracas Neto)
* Use a dialog for renaming files (Carlos Soriano)
* Allow F5 and ctrl+r as shortcuts for refresh the view (Carlos Soriano)
* Make the zoom slider the preference itself (Carlos Soriano)
* Allow opening with a different app than default for multiple files (Carlos Soriano)
* Fix view scrolling when selecting with ctrl + mouse (Georges Basile Stavracas Neto)
* Don't always make the sidebar visible on start (Antonio Fernandes)
* Allow opening folders with another app (Carlos Soriano)
* Show Delete Permanently on systems that does not support Trash (Carlos Soriano)
* Add Alt<down> shorcut for opening
* Fix some icons sizes inconsistency (Cosimo Cechi)
* Add public API documentation for Nautilus extensions (Cosimo Cechi)
* Add a gsetting to toggle recursive search (Felipe Borges)

Major changes in 3.16.0:
* Support multiple desktop names in XDG_CURRENT_DESKTOP (Dmitry Shachnev)
* Workaround distcheck (Carlos Soriano)

Major changes in 3.15.92:
* Fix double-clicking on password-protected webdav share, not showing the password dialog (Ross Lagerwall)
* Don't create desktop on protocols diferents than X11 (Carlos Soriano)

Major changes in 3.15.91:
* Dimmed labels for list columns (Cosimo Cechi)
* Fix new folder shortcut (Georges Basile Stavracas Neto)
* Fix delete shortcut in the trash (Carlos Soriano)
* Don't use libgd notifications and implement them with Gtk+ (Carlos soriano)
* Don't show notifications in desktop (Carlos Soriano)
* Esc shortcut for exiting search mode (Georges Basile Stavracas Neto)
* Fix translation problems with notifications (Carlos Soriano)
* Fix cluttered desktop icons due to the icon size changes (Carlos Soriano)
* Make toolbar buttons accesible for A11y (Carlos Soriano)
* Fix open with another app for multiple selection (Isaac Ge)

Major changes in 3.15.90:
* Bug fixes and clean ups for the GAction port (Cosimo Cechi)
* Add path as description of the Gnome shell provider (Carlos Soriano)
* Add in app notification when deleting items (Carlos Soriano)
* Set move to trash shortcut to just the Delete key (Carlos Soriano)
* Avoid hiding the search on small windows (Cosimo Cechi, Carlos Soriano)
* Improve file operations dialogs UI (Carlos Soriano)
* Show a warning dialog when the user uses the old move to trash shortcut (Carlos Soriano)
* Improve list view columns (Carlos Soriano)
* Add a new modified column with the time (Carlos Soriano)

Major changes in 3.15.4:
* Port to GAction
* Rework menus and zoom levels
* Use monospace font for permissions column (Matthias Clasen)
* Port to GNotification (Florian Müllner)
* Stop loading custom accel maps file
* Use inline toolbar for column chooser dialog (Robert Roth)
* Fix new window activation with desktop icons enabled
* Fix regression with --new-window option (Lubomir Rintel)
* Use mount name if available for file operations progress report
* Set max-width for value labels in properties (Lars Uebernickel)
* Increase default window width (Michael Catanzaro)

Changes in 3.14.0:
* Translation updates

Major changes in 3.13.92:
* Improve toolbar and pathbar styling with GTK 3.14
* Expand properties dialog notebook in its parent container
* Fix crash when using the rename field context menu in list view
* Fix crash when using a screen reader in canvas view
* Fix crash when changing icon captions setting (Volker Sobek)

Major changes in 3.13.91:
* Performance improvements for canvas and list views
* Remove duplicate actions in gear menu when app menu is not in use
* Fix CSS style for new GTK (Lapo Calamandrei, Alex Diavatis, António Fernandes)
* Fix handling of sort-directories-first setting (Matthias Clasen)

Major changes in 3.13.90:
* Fix problems with fast group/owner changes
* Fix user list for owner changes
* Use margin-start/end instead of deprecated margin-left/right
* Fix floating bar CSS style after Adwaita GTK move
* Fix build glitch with enums file (Volker Sobek)
* Translation updates

Major changes in 3.13.2:
* Fix a missing unref (Robert Ancell)
* Fix a crash in selection handling (Iain Lane)
* Use header bar for properties dialog (Matthias Clasen)
* Use new gear menu icon (Matthias)
* Include application-specific theming for Adwaita (Matthias)
* Share pathbar styling with GTK+ (Matthias)
* Translation updates

Major changes in 3.13.1:
* Port to be a DBusActivatable application
* Fix a crash when switching back from the trash folder
* Do not use legacy emblem names (David King)
* Sync the GTK+ setting for sort-directories-first (Matthias Clasen)
* Fix crash when enumerating windows (Robert Ancell)
* Use spaces between em dashes in file operations (Ross Lagerwall)
* Use headerbar in bookmarks window (Yosef Or Boczko)
* Fix arrow in connect server dialog for RTL languages (Yosef Or Boczko)

Major changes in 3.12.0:
* Translation updates

Major changes in 3.11.92:
* Only show one button for mixed Video CD/Video DVD media
* Add a force-desktop action to NautilusApplication (Ray Strode)

Major changes in 3.11.90:
* Port to GtkHeaderBar (Yosef Or Boczko, Matthias Clasen)
* Fix tab label not being update on removals or renames
* Fix minimum size requisition of Nautilus windows
* Fix remote mounts not being detected as removed (Daniel Schürmann)
* Fix high CPU usage when searching with criteria (Daniel Wyatt)
* Fix unwanted search entries on the desktop (Marc Deslauriers)
* Fix initial value of start-with-sidebar
* Fix some critical assertions
* Fix a crash when selecting an unsupported custom image (Nelson Benítez León)
* Remove Set as Background action on interactive DND
* Use unity-control-center when under Unity (Robert Ancell)
* Add film strip in nautilus rather than in totem (Bastien Nocera)

Major changes in 3.11.3:
* Don't perform deep counts on regular files (Ross Lagerwall)
* Fix overlapping filenames on hover in canvas view (Manuel Bachmann)
* Fix crasher when changing the symlinks cache (Michael Catanzaro)
* Standardize Help/About/Quit for the app menu (Michael Catanzaro)
* Remove Enter Location from the app menu (Michael Catanzaro)
* Use search bar style for the query editor (William Jon McCann)
* Support building against Tracker 0.18 (Dominique Leuenberger)

Major changes in 3.11.2:
- Bring back eject button in sidebar (Matthias Clasen)
- Fix rename entry rendering (Alex Larsson)
- Fix rename entry positioning (Alex Larsson)
- Avoid a crash if inhibit fails (Ross Lagerwall)
- Center tab labels (William Jon McCann)
- Fix DND move (Nelson Benitez Leon)
- Translation updates

Major changes in 3.10.0:
- Make search provider return results again (David King)
- Translation updates

Major changes in 3.9.92:
* Use new gtk_drag_begin_full API (Jasper St. Pierre)
* Increase default window width to fit four icons (Michael Catanzaro)
* Don't filter out NoDisplay applications from "Open With..."
* Fix desktop file categories (Elad Alfassa)

Major changes in 3.9.91:
* Use a GtkRevealer for the search bar
* Don't present redundant options for operations on single
  files (William Kunkel)
* Fix desktop window for newer GTK+ client side decorations
  (Christian Hergert, Matthias Clasen)
* Fix double menu when right clicking on the pathbar (Stefano Facchini)
* Fix headerbar appearance with latest GTK+ (Yosef or Boczko)
* Fix copy/cut/paste accels not working correctly

Major changes in 3.9.90:
* Fix support for HiDpi displays
* Replace control characters when fixing filenames for FAT
* Fix crash while dragging an expander in list view
* Don't use deprecated GtkStock and GtkImageMenuItem
* Fix "Reset to Defaults" not resetting columns in List
  view (Garret Regier)
* Use more friendly strings in the Location column in
  List view (Garret Regier)
* Add Access Date column in Recent (Garret Regier)
* Add Location column by default in search views (Garret Reiger)
* Fix search not remembering per-view settings (Garret Reiger)
* Use new GTK titlebar look (Yosef Or Boczko)
* Fix hidden files setting not correctly refreshing on
  change (Srinivasa Ragavan)
* Fix incorrect click target in canvas view under certain
  circumstances (Srinivasa Ragavan)
* Fix DnD glitches on pathbar buttons (Nelson Benitez Leon)
* Show invalid filename dialog when copying, if required (Nelson Benitez Leon)

Major changes in 3.9.3:
* Shade rubberbands on the desktop using the wallpaper color (Ted Gould)
* Port to GtkPlacesSidebar (Federico Mena Quintero)
* Check for available mail clients before enabling sendto
  extension (Plamena Manolova)
* Enter location bar upon entering "~" (Garrett Regier)
* Add a menu item to open parent folder of search/recent
  items (Garrett Regier)
* Use Shift+Ctrl+Z, not Ctrl+Y, for Redo (Adam Dingle)
* Remove multicontext menu items from editable entries

Major changes in 3.8.2:
* Don't grab focus to search entry needlessly (Rui Matos)
* Increase default size to fit 4 columns of icons (Michael Catanzaro)
* Remove no-longer-existing keys from GConf conversion
* Change 'x-nautilus-search:' To 'Search' in tooltips (Ting-Wei Lan)
* Translation updates

Major changes in 3.8.1 are:
* Use a consistent name for applications in the Open With context menu
* Don't follow symbolic links when searching recursively
* Increase default sidebar width
* Fix resetting view to default preferences not working (Michael Wood)
* Fix behavior of search entry with external Input Methods (Rui Matos)
* Fix partial ranking order of search results
* Fix move of special icons on the Desktop triggering file operations
* Fix copy action not working in Recent

Major changes in 3.8.0 are:
* Fix inconsistency in handling of NoDisplay=true applications
* Translation updates

Major changes in 3.7.92 are:
* Ensure target directories exist when restoring trash contents
* Export non-VFS URIs to DnD selections
* Hide Change Background desktop action g-c-c is not installed
* Fix double tap not working on certain touchscreen devices
* Fix for removal of org.gnome.desktop.background draw-background setting
* Fix inability to move desktop icons to non-primary displays in certain
  configurations

Major changes in 3.7.91 are:
* Export an OpenLocations property over DBus (Marco Trevisan)
* Add a way to reuse and raise existing windows already opened to a
  given location (Marco Trevisan)
* Use an ARGB window for the desktop (Matthias Clasen)
* Stop drawing the desktop background
* Register our GtkApplication with gnome-session
* Fix Tracker search not working correctly
* Fix activation of search provider results
* Fix nautilus --quit from terminal not working

Major changes in 3.7.90 are:
* Add back a Treeview option for list view. This is off by default, and
  is backed by a checkbox in the Preferences dialog
* Add a "Connect to Server" item in the Network section of the sidebar
* Add a "Format..." item in volume context menus in the sidebar
* Fix accelerators not showing up in gear and view menus
* Use G_APP_INFO_CREATE_NEEDS_TERMINAL instead of handrolled
  code (William Jon McCann)

Major changes in 3.7.5 are:
* Switch to hovered locations on DnD (William Jon McCann)
* Support a --force-desktop commandline option for classic mode
* Add a separate desktop file for classic mode integration
* Use a better position for navigation button popup menus
* Fix many memory leaks (Pavel Vasin)
* Fix a crasher when a file in trash has reserved characters in the filename
* Fix a crasher when closing the sidebar immediately after construction
* Fix a crasher closing the properties dialog while calculating folder size
* Fix backup files showing up in search provider results
* Fix floating bar buttons being added twice

Major changes in 3.7.4 are:
* Support a --select commandline option to force selection of the passed-in URI
* Add source hints to notifications (Matthias Clasen)
* Modernize build infrastructure (Javier Jardon)
* Use public GTK-a11y support instead of our own hacks
* Fix a crasher in the Shell search provider

Major changes in 3.7.3 are:
* Update search provider to org.gnome.Shell.SearchProvider2 interface
* Rely on GIO to parse ".hidden" files
* Consistently use unicode ellipsis instead of three periods (Jeremy Bicha)
* Use a different label for removing a file from "Recent" (Paolo Borelli)
* Restore the previous behavior wrt. framing for custom icons
* Share the "show hidden" GSetting option with the GTK+
  file chooser (Timothy Arceri)
* Fix missing unmount sync notification under some circumstances
* Fix infinite loop while deep counting the size of "/" (Phillip Susi)
* Fix wrong filename when restoring file from trash (Timothy Arceri)

Major changes in 3.7.2 are:
* Request to render larger thumbnails by default
* Don't quote the current location name in search bar
* Use "Run" in menus when launchine executables
* Fix stray Empty Document item in New Document menu

Major changes in 3.6.3 are:
* Fix symbolic links on remote volumes not activating default action
* Fix duplicated query editor filter rows when changing search location
* Fix search toolbar disappearing with very long folder names
* Fix missing Trash action after "Recent" was visited
* Fix missing frame around thumbnails for some zoom factors
* Fix crash when unmounting remote volumes

Major changes in 3.6.2 are:
* Open default location for remote shares when mounting
* Fix missing search results from Tracker for names that contain hyphens
* Fix missing item selection in the sidebar when starting up
* Fix search string being eaten by a hidden entry under certain circumstances
* Fix missing tooltips on stock toolbar buttons

Major changes in 3.7.1 are:
* Turn on again recursive search for the simple engine
* Enable incremental loading for search directories
* Add extra information to image properties page
* Show free space pie chart for the local root filesystem
* Resolve symbolic links before launching a file
* Avoid sync I/O when reading bookmark locations
* Don't add non-existent XDG folders to the sidebar
* Don't offer to remove built-in XDG folder bookmarks
* Fix black input field when renaming a file in icon view with XIM enabled
* Fix wrong return location when unmounting a remote mount
* Fix notebook tabs not properly switching after timeout when hovered
* Fix search toggle button state inconsistent when switching between tabs
* Fix crasher when using the Tracker engine from the Shell search provider
* Fix crasher in Shell search provider
* Fix crasher when unmounting a volume under certain circumstances

Major changes in 3.6.1 are:
* Fix floating bar not disappearing on search finish
* Fix fullcolor icons appearing in the pathbar for mount roots
* Fix drag and drop of multiple rows in list view
* Fix search relevance not being applied correctly when searching
* Fix sidebar visibility switch applying to all windows
* Fix search location when moving to a search directory in Back/Forward
  history
* Fix missing search results with non-ASCII characters
* Fix Home/Trash not showing up in shell provider results
* Fix startup notification not working when opening multiple windows
* Fix search results not focusing when activated from the Shell
* Fix error dialog not showing up when entering a non-existant location
  in Connect to Server
* Fix inability to open files after cancelling a rename in list view under
  some circumstances
* Fix desktop icons not following the primary monitor workarea when multihead
  is used with the desktop enabled
* Fix crasher when search string changes too fast
* Fix crasher when enabling search while loading a directory
* Fix crasher when trying to open a saved search file
* Fix crasher when Tracker is installed but not running
* Fix crasher in the shell search provider for bookmarks/mounts with an
  empty name

Major changes in 3.6.0 are:
* Fix toggling of hidden files visibility in searches
* Fix base directory appearing in search results
* Fix missing search results under some locales
* Fix unmounted mounts showing in shell search provider results
* Fix a crasher when a window is closed while the view is loading

Major changes in 3.5.92 are:
* Add a Shell search results provider
* Add a NautilusDirectory-based search engine implementation for network
  directories
* Improve performance and stability of the search engine
* Change the Type column to only show basic type information
* Preserve view selection when exiting search
* Use a symbolic icon for the location entry
* Fix wrong order of files when searching in canvas view
* Fix inability to drop on current directory in list view
* Fix crash when trying to undo failed directory creations
* Fix positioning of detached tabs
* Fix symlink creation for remote shares
* Fix duplicate entries in the sidebar
* Fix inability to clear entry in Connect to Server dialog
* Fix view selector flashing while switching views
* Plug a number of memory leaks
* Tweak the color scheme for the pie chart in mount properties
* Remove the SELinux context column for list view

Major changes in 3.5.91 are:
* New design for the Connect to Server dialog
* Add the possibility to detach tabs using drag and drop
* Add paste and location properties actions to the gear menu
* Use symbolic icons in the sidebar for drives and mounts
* Follow 12h/24h GSettings preference for view date display
* Cleanup icon view caption strings
* Fix wrong zoom level restored at startup
* Fix unparented mount/eject error dialogs
* Fix drag and drop for unwritable locations
* Fix stray templates bar when no templates directory is defined
* Fix Open With menu showing for apps that don't support URIs and files
* Fix item count not updating in realtime for directories in Properties
* Fix missing keybindings for Back/Forward/Up/Go Home
* Fix missing history context menu on navigation buttons
* Fix missing Create Link context action
* Fix missing frame around custom icons
* Fix broken behavior with multiline filenames
* Plug a number of memory leaks
* Remove context menu on blank list view space

Major changes in 3.5.90 are:
* Reorganize application and gear menu, and add a menu for view actions
* Add a View options selector to the toolbar
* Add cluebars for Templates and Scripts special directories
* Add ability to reorder bookmarks
* Improve strings in the Autorun prompt
* Improve error message strings
* Improve the image Properties page
* Improve the Permissions page in the Properties window
* Improve the layout of the Bookmarks dialog
* Use the dropped text paragraph as name when creating new files
  using DnD of text snippets
* Use double quotes instead of ASCII quotes for filenames
* Change default action for executable text files to Display
* Change the view mode and zoom level to be per-window instead of per-folder
* Remove support for Manual layouting in icon views outside of Desktop
* Remove the Octal permissions list view column
* Fix segfault when no search results are found

Major changes in 3.5.5 are:
* Combine results from both search providers
* Use a ranking algorithm for search results
* Preselect first search result
* Add a keybinding for the gear menu
* Improve styling for the search query editor
* Fix Ctrl+V not working correctly
* Fix previewers not being activated correctly
* Fix search not to trigger on the desktop window
* Fix pathbar scroll button styling bugs

Major changes in 3.5.4 are:
* Add Copy To and Move To actions
* Add a notification while ejecting volumes
* List view:
  - New date format display
  - Use a list model instead of a tree model for list view
  - Use a better default column order
  - Change some list column names
  - Use 32px icons by default
  - Tweak padding
* Search:
  - "Just type" search
  - Combine the search bar and the query editor
  - Tracker engine performance improvements and fixes
* Sidebar:
  - Add a recent files place
  - Use symbolic icons
  - Improve order of the items
* Toolbar:
  - Change toolbar layout to the GNOME 3 style
  - Don't show titlebar when maximized
  - Use a linked style for the pathbar
* Menus:
  - Migrate the menubar to a gear menu
  - Remove "Go" menu
  - Remove "Bookmarks" menu
* Remove "Text beside icons" option for icon view
* Fix loading string not disappearing in image properties on load

Major changes in 3.5.3 are:
* Fix accessibility implementation of rename entries and icon view
* Fix DnD not working on sidebar bookmarks
* Fix thumbnails failing to display in icon view
* Fix crasher after ejecting a volume from the sidebar
* Fix crasher on gtk-shell-shows-app-menu GtkSetting change
* Fix possible crasher when cancelling a rename operation
* Use GtkSearchEntry

Major changes in 3.5.2 are:
* Add a way to create a new directory for selection
* Don't pack multiple x-content bars in the view
* Show icons x-content bar application launchers
* Hide New Document menu when no templates are installed
* Remove statusbar
* Remove "Go->Computer"
* Remove compact view
* Remove extra panes and tree sidebar
* Fix pathbar buttons disappearing for too long titles
* Fix sidebar typeahead find being triggered
* Fix image properties label not wrapping for long width
* Don't trigger context menu for sidebar headings
* Don't show old 'note' emblems
* Reintroduce GTK accel map loading/saving and migrate it to XDG dirs
* Remove markup from GtkBuilder strings

Major changes in 3.5.1 are:
* Add an application menu
* Don't show sliders up to the file system root in the pathbar
* Add support for AFP shares in the Connect to Server dialog
* Don't remove selection when clicking on a row out of name boundaries
* Fix a wrapping issue with numeric strings in some circumstances
* Fix rename field selection color for backdrop state
* Don't select all icons on Ctrl+A when the search entry is focused
* Remove desktop-is-home-dir GSetting
* Remove custom accel map loading/saving
* Use new XDG location for GTK bookmarks file

Major changes in 3.4.1 are:
* Don't display comment field for desktop files
* Fix off-by-one error in file operation counts
* Fix mouse hardware back/forward buttons not working correctly
* Fix "Undo Trash" for files with non-ASCII characters
* Fix name corruption for untitled files under some circumstances

Major changes in 3.4.0 are:
* Fix a regression where "Open With" was hidden for folders
* Translation updates

Major changes in 3.3.92 are:
* Fix scrolling in compact view to work with latest GTK
* Fix Ctrl+Scroll zooming to work with latest GTK
* Don't hide Open With applications for subtypes of application/x-desktop
* Add support for the "network" GVolume class identifier
* Fix a crash at exit with certain extensions that keep refs of the
  NautilusFileInfos
* Fix initial focus row when moving the focus into the Places sidebar
* Fix Shift+Click selection when going back/forward in browsing history
* Fix packing of desktop file box in properties view
* Fix pathbar button sizing when a file watched by the pathbar changes name
* Fix properties window not being able to shrink size
* Remove unused --enable-profiler configure option

Major changes in 3.3.91 are:
* Ensure pathbar scrolling works with latest GTK
* Fix a crash when unmounting volumes with non-empty trash
* Fix a race condition leading to a crash when closing window slots
  under certain circumstances

Major changes in 3.3.90 are:
* Don't make the inactive pane UI elements insensitive
* Fix a crash when searching in list and compact view
* Fix a crash when creating a file from a template
* Use ngettext plural forms for undo strings

Major changes in 3.3.5 are:
* Introduce Undo support for common file operations
* Fix a crash when middle clicking icons on the desktop
* Fix split view actions not updating properly
* Fix wrong places sidebar selection under some locales
* Fix a crash when enabling desktop icons handling
* Support build against Tracker 0.13/0.14
* Make the rubberband animation obey the global GtkSetting

Major changes in 3.3.4 are:
* Show both the current file counter and the total files in file operations UI
* Lazily initialize the notification daemon
* Move the UI files and icons into GResources
* Refactor of NautilusWindowPane and NautilusWindowSlot code
* libnautilus-extension GIR coverage has been improved

Major changes in 3.3.3 are:
* Implement the org.freedesktop.FileManager1 DBus interface
* Show context menu for current folder when clicking empty space
  in list view
* Sort XDG dirs in the places sidebar according to the current locale
* Fix handling of Ctrl+T on the desktop window
* Fix icon view wrap-around key navigation
* Fix rubberband scrolling in maximized windows
* Fix a crasher when closing a window
* Don't use deprecated GLib and GTK functions

Major changes in 3.3.1 are:
* Show a Properties item in the sidebar for mounts
* Use GtkStyleContext to draw editable label elements
* Port to use GtkGrid
* Don't use deprecated GThread API
* Fix pie chart background rendering in Properties view
* Fix a crasher when activating a sidebar item
* Cleanup old libeel boilerplate code

Major changes in 3.2.1 are:
* Consolidate typeahead find entry for icon view
* Fix a crasher when middle-clicking empty space in the places sidebar
* Fix a crasher when trying to delete files from the tree sidebar
* Fix a crasher when ejecting a removable device under some circumstances
* Fix a crasher when trying to activate the previewer in a list view
  with no selection
* Fix a crasher when symbolic icon theme is not available
* Plug some memory leaks
* Fix the build when Tracker FTS is enabled

Major changes in 3.2.0 are:
* Fix a couple of drawing regressions introduced in 3.1.92
* Lots of translation updates

Major changes in 3.1.92 are:
* Hopefully fix once and for all NautilusWindow keybindings
* Don't hide the floating bar on hover if it's interactive
* Fix canvas accessibility implementation for GTK 3.2
* Don't warn when opening multiple files with one application
* Correctly remember remote passwords when asked so
* Add a new topic-based help menu
* Fix default list view sorting order
* Don't warn when a mount operation fails with ALREADY_MOUNTED
* Select the item on right click in the Tree sidebar
* Scroll to the selected file when opening an URI from the cmdline
* Read the emblem icon names from the metadata
* Use libtracker-sparql directly as an optional dependency
* Streamline icon container rendering code to use gtk_render_*
* Correctly remember "Keep Aligned" and other desktop metadata
* Invalidate the text size when changing the DPI xsetting
* Strip the hardcoded theme bits
* Add Unity desktop file compatibility
* Use XDG_CURRENT_DESKTOP when possible

Major changes in 3.1.90 are:
* Remove the built-in audio previewer

Major changes in 3.1.4 are:
* Remove the 'Create Launcher' options from the desktop
* Improve the 'File System' entry in the places sidebar
* Remove 'Clear History' from the 'Go' menu
* Fix location bar not expanding full width in the toolbar
* Use new g_format_size() instead of g_format_size_for_display()

Major changes in 3.1.3 are:
* Add an 'Add Bookmark' item in sidepane context menu
* Fix --no-default-window not working when an URI is specified
* Use g_cclosure_marshal_generic()

Major changes in 3.1.2 are:
* Use GtkOverlay for the floating bar
* Move the floating bar away from the cursor on hover
* Add an autostart desktop file
* Add metadata::custom-icon-name key for custom icons
* Fix opening the wrong directory when launching an instance 
  from the command line
* Misc crashers

Major changes in 3.1.1 are:
* Add a DBus previewer interface to support e.g. the Sushi previewer
* Rework handling of _NETSCAPE_URL dnd links
* Optimizations in the sorting/layouting code for Icon View
* Misc bugfixes

Major changes in 3.0.1.1 are:
* Fix some crashers
* Don't show file transfer progress twice

Major changes in 3.0.1 are:
* Fix white background bug when drawing desktop icons
* Fix crash while ejecting volumes from the places sidebar
* Fix enter not working in the places sidebar
* Fix conflict dialog labels and entry sizing
* Fix drawing artifacts in the search bar
* Fix single click preferences mismatch
* Fix additional details label colors when using a11y themes
* Fix some minor/sporadic crashers
* Fix libnotify and libexif version checks

Major changes in 3.0 are:
* Use Ctrl+Delete as keyboard shortcut to trash files
* Make sure we always open new windows from the desktop
* Fix a crasher

Major changes in 2.91.4 are:
* Fix eject button hover in places sidebar
* Use new gnome-help pages for help buttons
* Fix a crasher when toggling desktop_is_home_dir
* Fix a memory leak

Major changes in 2.91.93 are:
* Fix some memory leaks

Major changes in 2.91.92 are:
* Use a raised button for Search
* Tweak the floating bar background 
* Only show the "Loading..." floating bar after half a second of loading
* Style cluebars according to mockups
* Fix some split view regressions
* Misc bugfixes

Major changes in 2.91.91 are:
* Allow the dbus manager to run as a service
* Create folders in subdirectories in list view, when possible
* Make sure we don't focus headers in the places sidebar
* Don't activate 'Rename' in the sidebar for non-bookmarks
* Fix the list view not updating anymore after creating an empty file
* Fix regressions in rename widget focus
* Fix some UI regressions from the latest changes

Major changes in 2.91.90.1 are:
* Make modules of extensions pulling in ORBit resident, to avoid
  ORBit's atexit()'s handler to call into unloaded code
* Cleanup some unused code

Major changes in 2.91.90 are:
* Huge changes in the user interface, to match GNOME3 mockups
* Remove the spatial mode
* Updated tracker search engine to use libtracker-sparql
* Consistently use "Home" instead of the username
* Rename the GSettings schema path to /org/gnome/nautilus
* Remove the ability for extensions to create toolbar items

Major changes in 2.91.9 are:
* Remove GConf dependency completely
* Fade-out eyecandy for selection rubberband
* Use notifications instead of a status icon for transfer progress
* Change launcher name to 'Files'
* Fix a couple of crashers and UI regressions

Major changes in 2.91.8 are:
* Propagate custom icons to bookmarks
* Don't quit the application if there are file operations running
* Better keynav in the places sidebar
* Use symbolic icons for the notification area
* Fix some drawing regressions while renaming
* Fix issues with the default sort order selection
* Completely remove GConf dependency
* Large refactor of NautilusWindow/NautilusView architecture
* Cleanup installed desktop files
* Fix a couple of crashers
* Build with GCC 4.6

Major changes in 2.91.7 are:
* Adapt to GTK+ 2.99.0 deprecations
* Fix a crasher in the pathbar
* Use a consistent name for the Home folder
* Use a consistent name for the 'Create New Folder/Document' menu items
* Build tweaks

Major changes in 2.91.6 are:
* Fix build with GTK+ 2.91.7

Major changes in 2.91.5 are:
* Tweak sidebar appearance with CSS
* Remove 'exit-with-last-window' preference
* Remove support for saving state with XSMP
* Fix some UI GtkStyleContext regressions
* Fix a11y for NautilusIconCanvasItem
* Properly support '~' in the location bar

Major changes in 2.91.4 are:
* Port to the new GtkAppChooser widget family
* Port to GtkStyleContext
* Add DBus interfaces for copying files and emptying trash
* Remove Beagle search support
* Remove History and Notes sidebar
* Use a new simpler debug infrastructure
* Make the preferences an app-wide singleton window
* Fix some drawing regressions

Major changes in 2.91.3 are:
* Remove autorun and automount machinery, it moved to gnome-settings-daemon
* Don't install the 'File Management Properties' binary; there's now
  a capplet in gnome-control-center for the autorun system settings.
* Fix interaction with the session manager
* Don't use gtk_[h|v]_separator_new
* Identify OGG Vorbis files as music in the search UI
* Require new gnome-desktop

Major changes in 2.91.2 are:
* Use GSettings for desktop background
* Cleanups of the emblem-related code
* Fix some bad interactions with GApplication
* Fix an annoying crasher

Major changes in 2.91.1 are:
* Fix a number of GTK+ 3 regressions
* Port to the new GApplication API
* Add a settings key to make the background fade effect optional
* Add a settings key to register an external mass-renamer
* Drop support for old EXIF/XMP APIs
* Move the nautilus-sendto extension module in-tree

Major changes in  2.91.0.1 are:
* Fix a crash related to GtkSpinner
* Fix the filename cell renderer to use the new GtkSizeRequest functions

Major changes in 2.91.0 are:
* New UI for the 'Places' sidebar
* New UI for the 'Connect to server' dialogue
* Highlight the eject button upon hovering in the Places sidebar
* Make file conflict dialog strings I18N-friendly
* Port to GTK3 new drawing functions
* Cleanup background-related code
* Various crashers and glitches fixes

Major changes in 2.90.1 are:
* Port to GSettings
* Port to cairo drawing
* Remove the "Backgrounds and Emblems" feature
* Use GEmblemedIcon to draw icon emblems in list/tree views
* Cleanup of libeel's obsolete code
* Always show free space in the status string
* Disable icon scaling outside the desktop
* Various minor UI fixes 

Major changes in 2.31.5 are:
* Expand and collapse folders with +/- in list view
* Ask for confirmation when opening a large number of files
* Rename .desktop files also change their name on disk
* Support overriding .gnome2 directory
* Save passwords for the session by default
* Remove deleted folders from the pathbar
* Require GTK+ 2.90.5

Major changes in 2.31.4 are:
* Depend on GTK+ 3.0
* Replace libunique with GApplication
* Don't show 'File Browser' anymore in the window title

Major changes in 2.31.3 are:
* Port to GDBus
* Change the default order for files in special directories
* Support relative paths in the location entry/dialog.
* Translation updates

Major changes in 2.31.2 are:
* Use folder icons as window icons in browser and spatial mode
* Add 'Trashed On' and 'Original Location' columns in the trash
* Implement transparent icons for cut files
* Change default thumbnail size
* Fix a number of bugs related to bookmarks
* Translation updates

Major changes in 2.31.1 are:
* New dialog to handle conflicts within file copy/move operations
* New button in the trashbar to restore selected items
* Use XDG_CONFIG dir to store configuration. The old configuration files
  will be migrated there automatically.
* Use async I/O to save .gtk-bookmarks
* Fix a number of issues related to DnD in the places sidebar
* New icon for audio preview
* Don't show Unmount when showing Eject/Safe Removal
* Bump libnautilus-extension API version
* Fix a number of UI glitches
* Translation updates

Major changes in 2.30.1 are:
* Translation updates
* Support for tracker 0.8.0
* Fix crashes
* Fix emblem scaling in zoomed view
* Fix sensitivity of split-view related menu items
* Control-L closes the extra view first, not the window

Major changes in 2.30.0 are:
* By default, don't exit with last window even if desktop is
  not visible. This way we still run to handle e.g. volume
  monitoring. If you don't want this, change
  /apps/nautilus/preferences/exit_with_last_window
  to True in gconf
* Don't show weird border around desktop
* Correctly put focus on view for new windows
* Extra view does not get focus when created
* Add nicer thumbnail border
* Fix crash when hiding search bar
* Fix build on sun compiler
* Support AIFF for audio preview
* Translation updates

Major changes in 2.29.92.1 are:
* Fix compilation due to deprecated GTK_WIDGET_STATE symbol
* Fix libm linking
* Updated Portuguese translation

Major changes in 2.29.92 are:
* Make view default focus in new windows
* Put tabs at the top again
* Don't use deprecated gtk widgets
* Allow Alt-<num> to switch tabs
* Dynamically load tracker support
* Don't auto-close the window you initiated an unmount in

Major changes in 2.29.91 are:
* Make it possible to have backgrounds spanning multiple monitors.
* Better handling of closing windows when device is unmounted
* Use GtkSpinner instead of custom widget
* Translation updates

Major changes in 2.29.90 are:
* Fix copy-pasted tooltip string
* Translation updates

Major changes in 2.29.2 are:
* Align sidebar header and location bar
* Remove tabs menu
* Update translations

Major changes in 2.29.1 are:
* Make browser mode the default
* Add split view mode
* Browser UI reorganization
* Better background support on multi-monitor setups
* Support new "default location" on mounts (supported by ftp and sftp)
* Add extension api to lookup NautilusFileInfo objects
* Make the search toolbar button a toggle button
* Ctrl+shift does multiple range selection in list view

Major changes in 2.28.0 are:
* Translation updates
* Don't load non-images for thumbnailing when zoomed
* Made desktop window a native X window for nicer redrawing
* Fix leaks

Major changes in 2.27.92 are:
* Fix crash on logout
* Translation updates
* Always show app icon in open with popup menu
* fix duplicate id in ui file
* Fix warning in new power manager inhibiting

Major changes in 2.27.91 are:
* Migrate old-style nautilus metadata to gvfs metadata
* Fix viewing of very small image files
* Respect disable_command_line option
* Reverse mouse button used for back/forward to same as firefox
* Always show menu icons for menu items representing files
* Inhibit suspend during file operations
* Cancel audio preview when deleting the previewed file

Major changes in 2.27.4 are:
* Add support for starting and stopping drives
* Use the new GVfs metadata framework
* Support new style unmount operations; this will provide a nice dialog when
  unmounting a busy drive mount
* Add application icons to the Open With context menu
* Reload xdg-user-dirs according to the user preferences

Major changes in 2.27.2 are:
* Support ctrl-drop in list view
* Allow user defined keyboard shortcuts for extension items
* Fix crash on click on toolbar
* Fix crash on entering empty location
* Added daemon-mode (don't exit with last window)
* Display info about the selected item in the information sidebar
* Sort applications in open with

Major changes in 2.27.1 are:
* Drop GTK+ deprecated symbols
* Display the application icon in the popup menu
* Fix autorun hints for Win32 software media
* Allow shift+return during typeahead find
* Update desktop icons according to DPI changes
* Use the correct folder icon fallbacks
* Autogenerate ChangeLog and use shave to display the build output

Major changes in 2.26.2 are:
* Fix issue with default dnd type when dragging to a parent directory
* Fix icon view RTL layout in compact view
* Make sure spatial geometry is always saved when closing windows
* Save and load custom accelerator maps
* Check for PackageKit before showing dialog using it
* Add "location" column
* Show both unmount and eject in menus for mounts that support both

Major changes in 2.26.1 are:
* Better handling of thumbnail scaling
* Support XDS in list view
* Make session loading work
* Start Nautilus on requested screen
* Fix crashes
* Fix possible infinite layout loop in compact mode
* Update fallback icon to not look like gnome 1.x
* Fix some cases of sync i/o
* Handle non-gvfs uris like e.g. mailto and http links with queries in links

Major changes in 2.26.0 are:
* Stable release
* Fix crash due to broken gdk-pixbuf tga loader
* make sure thumbnails are updated even when zoomed up
* fix crash in media settings preferences

Major changes in 2.25.93 are:
* Use ConsoleKit to make sure we only autorun on active sessions
* Never show unmount if we show an eject menu item
* Show the gvfs reported owner/group names
* Don't allow changing default app for folders
* Fix "can't unmount same location twice" bug

Major changes in 2.25.92 are:
* Set mmap limit to avoid desktop background memory not being returned to the os
* Warn when source overwrites destination in move
* Don't put "link to ..." in front of symlinks unless there are name conflicts
* Fix desktop flicker on theme change
* Require desktop file app launchers to be executable
* Support making symlinks on remote locations (if supported by backend)

Major changes in 2.25.91 are:
* Use G_DEFINE_TYPE_* instead of hand-written types
* fix: opening a new window restores minimised ones
* fix renaming of desktop files
* Handle new kinds of GIcons
* Don't display shadowed mounts

Major changes in 2.25.4 are:
* Don't show desktop files from other desktops than Gnome on the desktop
* Support crossfades of desktop backgrounds
* Don't snap desktop icons outside right margin
* Fix crashes and leaks

Major changes in 2.25.3 are:
* Remove CD/DVD creator from places menu and sidebar
* Allow deleting custom emblems
* Fix crashes
* Don't show read-only emblems in trash
* Trash performance fixes
* General performance fixes
* Update to new PackageKit API

Major changes in 2.25.2 are:
* Merged eel into nautilus
* Use single glib/gtk includes
* Support PackageKit application search
* Fix new windows not appearing after successful mount
* Remove support for old KDE trash dirs

Major changes in 2.25.1 are:
* Remove depencency on libgnome & gnome-vfs
* Fix crashes
* Chop trailing space characters when moving to FAT file system
* When DnD'ing, COPY instead of MOVE, when the source is not deletable
* Don't set default when opening with other app, just add to open with list.
* Don't make copies of files from readonly source (e.g. CDROM) readonly
* Don't show cancel dialog when showing the "run or display" dialog

Major changes in 2.24.0 are:
* Icon/compact view:
   * Follow run-time changes to set of icon text attributes to be displayed
   * Invalidate icon label when changing zoom level or “text besides icon”
* List view:
   * Properly offer textual drag target
* Request centered autorun dialog
* Always sort folders before files, even if sort criterion is reversed
* Always assume that trash directories are local
* Fix Small leaks and thinkos

Major changes in 2.23.92 are:
* Icon/compact view:
   * Allow to select range in addition to current selection, when pressing ctrl
     and shift at once [not yet doable in list view]
   * Fix layout timestamp storage when moving items around on desktop
* List view:
    Default to reverse sort order for date columns (i.e. recent to old)
* Improve “Clear History” confirmation dialog
* Use GdkAppLaunchContext instead of EelAppLaunchContext
* Fix small leaks

Major changes in 2.23.91 are:
* Make autorun work for blank media
* No more pixelated SVGs displayed for desktop items with absolute icon SVG paths
* Use consistent labels, mnemonics and icons for trash and delete actions
* Icon container (i.e. icon view and compact view)
  * RTL support for vertical layout
  * Always reveal entire rows or columns of icons
  * Nicer icon container bounds
  * (Again) vastly improved keyboard navigation, especially in RTL mode
  * No more overlapping desktop icons, when files are added or volumes mounted
    while Nautilus is not running. This is implemented with metadata timestamps when
    the desktop icons are laid out.
  * Rewrite large chunks of icon canvas text size handling
  * Clear underlying items if hovered or selected item overlaps them
* List View
  * Make scripts work when items in nested list view subdirectories are selected
* Usual minor fix & polish galore

Major changes in 2.23.90 are:
* Truncate long item labels in the icon view and on the desktop
   + icon_view/text_ellipsis_limit and desktop/text_ellipsis_limit GConf
     preferences added (defaults to three lines)
   + expand when hovering, or when selecting a file
* Support restoring of multiple items from trash at once
* Handle scroll events on the path bar
* Fix “same file system” (i.e. copy vs. move) DND check for desktop
* Fix search for content type in simple search backend
* Fix running of scripts on the desktop
* Use more archive file types for file-roller integration for remote locations
* Consolidate zoom handling internals
* Show file name instead of URI in the bookmark editor window for local files
* Polish “Visible Columns“ list view dialog

Major changes in 2.23.6.1 are:
* Fix display name of computer:// icons

Major changes in 2.23.6 are:
* Support transferring files with reserved FAT characters to a FAT file system
  Replace them with an underscore if neccessary
* Use x-content/* MIME type to associate applications with hotpluggable media
* Path bar
  * enable control-left click and middle-click interaction for path bar buttons
  * dynamically handle hierarchy changes in the path bar 
* Icon view keyboard navigation
  * Use linear selection instead of rectangle selection in when pressing shift
  * Still offer rectangular selection when pressing ctrl and shift 
  * Only wrap around horizontally in horizontal layout mode,
  * Only wrap around vertically in vertical layout mode
  * Never wrap around when in rectangle selection
* Icon view now remembers last position when reloading in vertical layout
* List view: Do not request mass redraw when dragging
* Clear display name when changing file name
* Only show "... All" actions ("Skip All", ...) in file operation dialogs if more
  than one file is transferred
* Identify to GNOME session as file manager, not as generic desktop application

Major changes in 2.23.5.1 are:
* Fix crasher in spatial mode when closing window with ctrl-w
* Work around GTK+ tree view bug for sidebar eject button click area
* Some popup menu fixes
* Do not use C_() due to intltool bug

Major changes in 2.23.5 are:
* Add tab support to browser mode
* Add "restore from trash" functionality (only per item)
* Path bar and notebooks can be used as fully functional URI drop targets
* Places sidebar
  * Add eject buttons to volumes
  * Fix bookmark reordering
  * Make DND indication consistent with GTK+ file chooser
* Async I/O
  * Use NautilusFile instead of GFile for path bar display name
  * Use NautilusFile for DND "same FS" check
* Fix navigation where window was inconsistently "stuck" between two
  directories, i.e. the view was not completely changed.
* Fix huge leak - status bar messages were never popped from the stack
* Always grab focus on location change, even if view is reused
* Icon view fixes
  * If no icon is selected, but an icon has the keyboard focus, select it when
    pressing space.
  * Move keyboard focus after a file has been removed
  * Fix double-clicking of half-shown items
* Thumbnailing changes
  * Never scale up any thumbnails
  * Compose and scale thumbnails on the fly
  * Speed up loading of large image files used as their own thumbnails
* Display emblems for small icon sizes
* Offer clipboard contents as text/uri-list
* Use UTF-8 dash for properties window instead of "--"
* Misc
  * Allow to build without XMP
  * Require beagle 0.2.4
  * Require intltool 0.36.3.

Major changes in 2.23.4 are:
* Fix background extension submenus for background context menus
* Fix thumbnailing
  * Always re-thumbnail if a file without any thumbnail changes
  * Always re-thumbnail if a failed thumbnail is not up to date
* Make zoom level specifications consistent (33% vs. 25%), round to 66% rather than 67%.
* Never hide hidden or backup files in trash
* Always copy file entire metadata when copying. Fixes timestamp preservation.
* Remove desktop emblem from desktop directory, since the folder now uses a desktop icon

Major changes in 2.23.3 are:
* Use bilinear interpolation instead of hyperbolic. Massively speeds up thumbnailing.
* Fix thumbnail frame size calculation
* Rework properties dialog
  * Remove "Launcher" tab, and move all the launcher properties to "Basic"
  * Hide useless file info widgets from "Basic" tab for special locations like "computer:///".
* Support adding files to archives via file-roller
* Add location popup context menu to all path bar buttons
* Fix location popup context menu separators
* Add "Paste Into" item to location popup context menu
* Do not count the same inode twice when calculating directory sizes
* Never copy to "trash:///", never move to "burn:///"
* Never maximize windows opened from shell if a custom geometry has been specified
* Properly close windows displaying the media root location when ejecting a medium
* Empty the clipboard when copying/moving with DND to a container
* Remove libbackground
* Require eel 2.23.2 due to directory background API changes.

Major changes in 2.23.2 are:
* Increase default thumbnailing size limit
* Various fixes to keyboard handling in icon and list view
* Use description from gio as window title
* Fix double click behaviour in list view
* Remember windows size when closed while maximized
* Always use single click policy in the places sidebar
* Fix selection handling after canceling delete operation
* Improve autorun behaviour
* Improve internal error handling
* Fix adding emblems
* Fix gconf preferences description
* Improve list column page indentation
* Prevent recursive move/copy into itself
* Show mount dialog for already mounted shares too
* Prevent autogenerated file names from overflowing the max filename length
* Use ellipsis as per HIG
* Fix leaks
* Fix crashes
* Build fixes
* Translation updates

Major changes in 2.23.1 are:
* Support new gnome-session autostart semantics.
* Unify session save/restore routines with "--restart" and "--load-session"
* Allow to invert selection
* Do not automount mount points inside hidden hierarchies
* Add NautilusFileInfo APIs: can_write(), get_mount(), get_parent_info()
* Add initial Gtk-doc support.
* Remove some dead code.

Major changes in 2.22.1 are:
* Fix crashes and leaks
* Fix emblem display in property page
* Fix mime choosing to not always create application/x-ext-<extension> type
* Actually mount location in external connect to server dialog
* Fix thumbnail size limit checks
* Fix "show hidden" to also show backup files
  (was broken in some situations)
* Verify that tracker is running before using it
* Fix desktop file icon handling with absolute filenames
* Use GDesktopAppInfos to launch desktop files
* Don't follow symlinks for deep file count
* Fix audio preview with later gstreamer
* Make "move file over directory" overwrite case work
* Sometimes we failed to ask for overwrite when move
  operations falled back to copy + delete
* Make sure we correctly transcode filenames when merging
  directories if the directory is on another filesystem.
* Some moves were reported as copies, not moves in the ui
  which could cause not up-to-date directory displays
* Don't center file progress dialog if its already displayed

Major changes in 2.22.0 are:
* Fix typo in strings
* Fix crashes
* Use a better icon for the progress dialog
* Have a mount menu for mountable files, not an unmount one
* Handle broken bookmark files bette
* Sniff x-content type asynchronously
* Don't look for autorun stuff on non-local files
* Allow setting permissions on remote shares
* Fix "delete all" button in delete dialog
* Show custom icons at right size
* Fix some performance issues on nonlocal mounts

Major changes in 2.21.92 are:
* Build fixes
* Fix crashes and leaks
* Fix handling of desktop file launchers
* Better handling of desktop file icons
* Semitransparent DnD icon support (when composited)
* Avoid showing progress info when dialogs are shown
* Allow minimize of progress window
* Handle beagle >= 0.3.0
* Close properties dialog on escape
* Make custom icons work again
* Fix fuzzy icons
* Duplicate file if copies to the source directory
* Support open with dialog for multiple selected files
* Ressurect connect to server dialog
* Allow theming of free diskspace chart colors

Major changes in 2.21.91 are:
* String cleanups
* Inhibit autorun for things we mount ourselves
* Fix crashes and leaks
* Only show selinux context if selinux detected
* Default to move, not copy when dragging from trash
* Don't autorun/automount non-local mounts
* Fix case where we could run out of file descriptors
* Handle drop of files on the desktop
* Fix sensitiveness of delete from trash menu item
* Fix open with context menu in always-use-browser mode

Major changes in 2.21.90 are:
* Use thousand separators in all numbers (if used by locale)
* Fix leaks
* Performance improvements
* Update to latest glib APIs
* Fix bug that lost metadata from older versions
* Fix crashes
* Enable paste into folder for desktop icons
* Better finding of autorun files on case sensitive media

Major changes in 2.21.6 are:
* Regenerate thumbnails when files change
* Fix crashes
* New autorun and automount support
* Allow unmount of current location if its a mountpoint

Major changes in 2.21.5 are:
* Add autorun/automount feature
* Better handling of sensitivity of delete menu items
* Better handling of mount/unmount/eject in many places
* Fix for extensions with submenus
* Fix crashes
* Updated some icons to the Tango look
* Fix some portability issues

Major changes in 2.21.2 are:
* Update pkg-config files with new extensions dir
* Add some gio features to extension API
* Handle dnd of desktop icons
* Update to latest gvfs/gio API
* Implement some missing unmount/eject operations

Major changes in 2.21.1 are:
* Totally replaced gnome-vfs use with gio
* New implementation of file operations like copy/move with
  a shared progress dialog
* Lots of cleanup  

Major changes in 2.20.0 are:
* Load thumbnails asynchronously
* Support direct save DnD (XDS)
* Fix up octal permission display
* Store window keep-above and stickines state across sessions

Major changes in 2.19.91 are:
* Be more robust against broken extensions
* Set current working directory right on desktop when running scripts
* Fix crash on file:///#
* Update to cope with the new size of emblem icons

Major changes in 2.19.90 are:
* Auto-size list view filename column again
* New message for service unavailable error
* UI terminology consistency fix
* Build fix

Major changes in 2.19.6 are:
* Fixes to UI manager usage
* Better string ellipsation
* Consistent focus behaviour for toolbar buttons
* Support for XMP image metadata
* Improved keyboard handling in connect to server dialog
* I18n fixes and string clarifications
* Add more tooltips and use new gtk+ tootips API
* Better handling of unreadable directories during search
* Fix various crashes
* Translation updates

Major changes in 2.19.5 are:
* Build fixes
* Fix leaks
* Fix crash
* Improved JPEG metadata handling
* Fix information sidebar layout
* Translation updates

Major changes in 2.19.4 are:
* Allow activating the zoom context menu by keyboard
* Allow renaming of the network servers icons
* Use new desktop capplet
* Better handling of unicode search terms
* Fix program name in about dialog
* Fix keyboard shortcuts in preferences dialog
* Fix leak in zoom context menu
* Fix typos in error and warning messages
* Fix crash in properties dialog

Major changes in 2.19.3 are:
* Added support for xdg-user-dirs
* A11y fix in the file properties dialog
* Build fix
* Don't show folder handler in menu editor
* Added alpha support for icon frames
* Updated thumbnail frame

Major changes in 2.19.2 are:
* Fix crashes and leaks
* Add open in place sidebar context menu
* Make default icon sizes match xdg icon sizes better
* Fix hang with recursive symlinks
* Make name column wider
* Add trash to places sidebar
* Support for thumbnail icon size preference
* Disk free pie chart in properties dialog

Major changes in 2.18.0.1 are:
* Reverted accidental commit

Major changes in 2.18.0 are:
* Fix up desktop file categories
* Some sparse code cleanups
* Don't make filename column expand

Major changes in 2.17.92 are:
* Don't display homedir as "desktop" in pathbar when in home-as-desktop mode
* Use GtkLabel ellipsizing
* Ellipsize filename column in list view
* Don't show unsupported methods in connect-to-server dialog
* Fix crashes

Major changes in 2.17.91 are:
* Change file management capplet category
* Avoid showing "empty" in the tree while loading directory
* Prompt for empty trash on unmount
* Capitalize lin" in "Link to ..." names
* Fix crashes and memory leaks

Major changes in 2.17.90 are:
* Add nautilus_file_info_get_activation_uri for extensions
* Zero-pad seconds in progress display
* Fix permissions of files created from templates
* Support multimedia keys
* Fix leaks
* Fix crashes

Major changes in 2.17.1 are:
* Empty trash button in trash
* New menu icons for new document/folder/window
* Ring buffer for debugging
* Fix spinner size
* Open location dialog on desktop defaults to home
* Remove metadata on external delete events
* Draw text selection rectangle using cairo
* Jump to selection on sort order change
* Fix gsequence crash
* Freeze icon view while renaming
* New theming features for icon view
* New icon in about dialog
* Handle scroll button while rubberbanding
* Ellipsize menu button at 16 chars

Major changes in 2.16.3 are:
* Revert a patch that caused icons to move around
* Fix crash introduced in 2.16.2

Major changes in 2.16.2 are:
* Fix a lot of crashes
* Handle throbbers with different sizes
* Don't add a newline when pasting filenames
* Better a11y relationships betweeen widgets
* Make nautilus --quit not be restarted by session
* Fix occasional stuck grabs when rubberband selecting 
* Don't timeout typeahead when scrolling with mouse wheel
* Add X-GNOME-Bugzilla-Version to desktop files
* Fix desktop icon overlap problem

Major changes in 2.16.1 are:
* Default to search in current directory for non-indexed search
* Fix clash with symbol names in gtk+

Major changes in 2.16.0 are:
* Handle enter activation when using typeahead search
* Avoid using gnome_vfs_is_local in wrong places
* Translations

Major changes in 2.15.92.1 are:
* Fix crash on startup

Major changes in 2.15.92 are:
* Fix crash on changing owner/group of file
* Fix double free
* Make sure all strings are displayed translated

Major changes in 2.15.91 are:
* Use gtk recent files code
* Fix file change notification regression
* Don't display raw form of selinux contexts
* Import lates EggSequence with bugfixes
* DnD fixes
* Read .hidden symlinks
* Fix down navigation in last column, next to last row

Major changes in 2.15.90 are:
* Submenu support for extensions
* Improved beagle daemon detection
* Enable D'n'D reordering in the places sidebar
* New icons for trash operations
* Add a button/text toggle button to the location bar
* Fix leak

Major changes in 2.15.4 are:
* New permission dialog with recursion and selinx support
* Improve extension interface
* Add complete session management
* Handle removal of the displayed location more elegantly
* Use proper nautilus-cd-burner icon
* Support dropping uris, urls and text to subfolders
* Fix leaks and warnings

Major changes in 2.15.2 are:
* Don't allow formating of mounted floppies
* Perfomance fixes
* Don't use deprecated eel features
* Use less memory when thumbnailing

Major changes in 2.15.1 are:
* Improve startup performance
* Use GOption
* Fix selection box width calculation
* Improve file permission handling
* Add volume operations to the file menu, tree and places sidebar
* New po/LINGUAS handling
* Smarter date handling for images
* HIG fixes
* Fix various typos
* Fix about dialog to work with current gtk+
* Fix crashes
* Show network volumes in the places sidebar
* Fix progress dialog showing the wrong file
* Code cleanups

Major changes in 2.14.1 are:
* Translation updates
* Code cleanups
* Use --no-desktop option for all desktop files
* Startup performance improvements
* Make files copied from read-only source writeable
* Don't allow bookmarking x-desktop:///
* Add help buttons to several dialogs
* Fix SVG file identification
* Properly break down URIs for connect to server ui
* Don't reposition icons on reload
* Show unmounted but user-visible drives in the places sidebar
* Display more info in the progress dialog when preparing 
* Smarter DnD target selection
* Smaller close icon in the sidebar title
* GnomeGoals: Use po/LINGUAS

Major changes in 2.14.0 are:
* Fix deadlock when dragging over list view in some conditions
* Fix keynav details in text beside icon mode
* Don't show folder count for smb shares
* Fix crash on middle click of file
* Fix a crash when leaving a directory
* Close window when folder moves to trash
* Fix deep count in properties dialog in some cases
* Avoid calculating mime lists for activation
* Fix text drawing in RTL mode when using text besides icons
* Remove blank error dialog on mount when using gnome-mount

Major changes in 2.13.92 are:
* Better filename linebreaking at punctuation marks.
* List view: If a rename moves the file in the view, scroll to the new position
* Better handling of broken filename encoding for link targets
* Some desktop icon positioning fixes
* Browser mode: don't close window on up if current directory has been removed
* Pass original files, not target files to property page providers.
  This allows property page extensions to look at desktop files and symlinks.
* Various small optimizations
* Leak fixes
* Build fixes

Major changes in 2.13.91 are:
* Fix a desktop icon positioning bug
* Fix opening saved searches file from outside nautilus

Major changes in 2.13.90 are:
* Add option to always use the location bar to the preferences dialog
* Enable the icons in the places sidebar as drop targets
* Fix for desktop volume icon positioning
* Show detailed file size in the properties dialog
* HIG fix for the delete from trash dialog
* Fix icon scaling for images with extreme ratios
* Fix leaks & crashes

Major changes in 2.13.4 are:
* Open modules with BIND_LOCAL
* Disable network icon on desktop by default
* Add Network to places menu
* Fix sort by atime
* Some HIG fixes
* Add support for searching for custom mime type
* store custom icons for folders as relative patch if in folder
* Much better activation of multiple files
* Bumped the default image size thumbnailing limit
* Handle new background image zooming mode
* Add optional support for Tracker indexer
* Fix leaks & crashes

Major changes in 2.13.3 are:
* Added initial support for search
* Fixed memleaks
* Don't frame thumbnails with alpha channel
* Better handling of opening multiple files
* New resize knob icon
* View update optimizations
* No titles for alert dialogs
* Add network desktop icon
* Use access() to determine permissions

Major changes in 2.13.2 are:
* Fix mime list problem introduced with sort change
* Build fixes
* Keyboard support for icon stretching
* Finally fix tree sidebar crash
* ctrl-shift-g goes backwards in typeahead
* Add Skip all button in copy/move conflict dialog
* Position new files/folders correctly in manual layout mode
* Nicer UI for setting custom file icons
* Fix CD icon positioning on desktop
* Fix desktop redraw issues on non-100% zoom levels
* Use the same home icon always

Major changes in 2.13.1 are:
* Adds volume/drive api for modules
* Better sizes of stock icons in many places
* GtkTreeView style typeahead
* '/' opens location dialog/entry
* middle click in browser mode opens new window
* Handle cancellation of authentication better
* Add format menu item for floppy drives

Major changes in 2.12.1 are:
* Pass all selected files to menu extensions, not only one per mimetype
* Use much fewer file monitors
* Fix text size on startup with non-standard default zoom size
* Some fixes to trash handling and unmount
* Fix some desktop icon positioning details
* Copy thumbnails when copying files
* Autofill connect to server dialog when possible
* Always show deep counts in properties page
* Fix leaks and crashes
* Correctly escape filenames for display in progress dialog

Major changes in 2.12.0 are:
* Fix icon layout in text-beside-icons mode in some cases
* Fix template creation on volumes other than the same as /tmp
* Expand file uris correctly on desktop when passing to scripts
* Workaround crash on audio preview in burn:
* Fix handling of global show hidden files preference
* Fix crash caused by earlier memleak fix
* Don't redraw windows/desktop on focus in/out

Major changes in 2.11.92 are:
* Enable emblem dropping to the list view
* Disallow deleting special locations from the location button popup
* Don't show "Open Folder" as application option in context menus
* Disallow custom icons for the trash
* Cleanups & Leak fixed

Major changes in 2.11.91 are:
* Don't allow renaming of the desktop folder
* Make moves within burn:// possible
* Fixes to property browser drag and drop code
* Add Explorer-style keybindings
* Add timestamps to metafiles
* Make ESC switch back to the pathbar
* Use saner check for mime mismatching
* Make progress dialog minimizable
* UI fixes

Major changes in 2.11.90 are:
* Handle dnd more efficently
* Use file-manager icon for browser windows
* Use hover underline and cursor for single click mode
* Make labels selectable in the sidebar
* Improve sound preview process handling
* UI fixes to path- and sidebar

Major changes in 2.11.4 are:
* Allow dnd of text on view to create a new file
* show hostname in progress dialogs
* use pathbar in location toolbar
* busy curson when loading folder in browser mode too

Major changes in 2.11.3 are:
* Turn the list view into a tree
* No dnd drop rect on the desktop
* Use gtk bookmars as bookmark source
* Add bookmarks to spatial mode
* New places sidebar
* better sort order for filenames with numbers in them
  (needs glib 2.7.x)
* Better handling of font sizes wrt zoom in icon view
* Fix leaks

Major changes in 2.11.2 are:
* Fix sort order for size/count/time
* ctrl+scrollwheel changes zoom, ctrl-= zooms in
* better handling of cut and paste in notes text view
* Add smb domain field in connect to server dialog
* nicer handling of drops from mozilla
* no properties menu item for desktop context menu
* shift-f2 renames with the whole name initially selected
* sort by emblem only looks at user-set emblems
* scroll to icon when selected and partially visible

Major changes in 2.11.1 are:
* Use authentication in external connect to server app
* UI polish
* Allow DnD of location button icon.
* Context menus on location button and location label in browser
* Fix memory leaks
* Fix crashes
* Speed up delete in list view
* Fix rename in list view breaking when there was a file change
* Removed "new terminal" from desktop context menu
  If you want this, install the nautilus-open-terminal extension,
  its much better than this feature ever was.
* Don't thumbnail files constantly if they're changing
* Fixed a loop that could happen on remote locations when removing
  a directory.
* Add properties of the current folder menu item to background
  context menu
* Use --no-desktop in default folder handler to avoid taking over
  the desktop if you don't run gnome.

Major changes in 2.10.1 are:
* Use less memory for desktop background
* Make authentication work for the external connect-to-server dialog
* Fix leaks
* Redraw less in the list view when deleting

Major changes in 2.10.0 are:
* Some fixes for startup notification to avoid focus-stealing
* Center the file management prefs dialog

Major changes in 2.9.92 are:
* Avoid doing i/o to tree root nodes before they are used.
  This means we don't get authentication callbacks.
* Correct handling of startup notification
* Fix crashers in desktop icon context menus when unmounting volumes
* Make property page for home icon on desktop show the right size
* Prevent the progress dialog from displaying strange ETAs
* Make backspace key open parent folder in list view

Major changes in 2.9.91 are:
* Fix some crashes
* Don't pop up mozilla dnd ask dialog under windows
* Change the look of the path button to make it easier to find
* Some changes to the look/text of the progress dialog
* Fix panel size detection on 64bit machines
* Allow open with menu on folders

Major changes in 2.9.90 are:
* Better window titles for browser windows
* Better icons for burn: & computer: in the ui
* Allow eject of unmounted devices
* Better handling of DnD from mozilla
* Make connect to server dialog available as separate app
* Use GtkAboutDialog

Major changes in 2.9.2 are:
* Use the new mime API
* Fixed bug in finding empty spots on the desktop
* Handle drags to special desktop icons (trash...)
* Fix crash in clipboard code
* Fix crash with non-unique volume filenames
* Better handling of sizes for image-file-as-icon
* Fill in ctrl-l dialog correctly for desktop
* Fix crash in bookmark dialog if parent window goes away

Major changes since 2.8.2 are:
* Bonobo not used for nautilus views
* GtkUIManager used for the ui, not BonoboUI

Major changes since 2.8.1 are:
* On mime mismatch, allow open with default app as open with
* On dnd of mozilla link, create desktop file with .desktop ending
* Delay activation when keyboard navigating in tree sidebar
* Add open new window menu item in browser mode
* Fix race condition that made up not alway select the folder
* Better error message when there is no handler for a file
* Fix throbber right-alignment with latest bonoboui
* Alt-up selects the directory you came from
* Display a frame on DnD hover if accepting
* Fix off-by-one bug in icon positioning on DnD
* Make creating new files in list view auto-rename
* Add the icon text to the DnD icon
* Add eject to volumes in free sidebar
* Don't close browser window when the showed path is unmounted
* Save browser window geometry
* Handle the new env vars for filesystem charset

Major changes since 2.8.0 are:
* Update to latest egg-recent
* Fix memory leaks
* Clear clipboard after a cut file is pasted
* Properly escape uris created by connect to server dialog
* Better alignment of icon labels
* Allow move (not copy) of a file to another filesystem
* Fix reordering of selection when a listview is resorted
* Allow keynav on desktop
* Fix crash in sort-by-emblems mode
* Performance fixes when selecting files
* Performance increase in folder load
* Allow pasting files as text
* Fix nautilus extensions such as file-roller menus
* Made select by pattern work in trash
* Fixed cut/paste of text when renaming in listview
* Always use homedir icon for homedir

Major changes since 2.7.92 are:
* Destroy metadata hashtable in right way, fixes crash
* Fix crash in list view when changing views
* Translation updates

Major changes since 2.7.4 are:
* Fix crash when transfer rate near zero
* Fix crash when renaming in list view and changing directory
* Fix double call of eel_preferences_remove_callback on shutdown
* Use default folder view from gconf instead of now broken gnome-vfs mime setting
* Some fixes to the handling of open with
* Faster way to get the group list for a user
* Don't make progress dialog on copy to desktop appear on all workspaces
* Fix sort by size in computer view

Major changes since 2.7.2 are:

* Fix remaining time reporting in progress dialog
* Nicer connect to server dialog
* Various bugfixes and memleak fixes

Major changes since 2.7.1 are:

* Added spatial/browser pref to the prefs dialog
* Use ctrl+q to add all windows
* On shift-double-click on a non-folder, close the window after.
* Bug fixes
* Show estimated time remaining in the progress dialog.
* per-window show hidden files setting
* Don't warn about mime-type mismatches if the handler is the same 
  for both mime-types.
* Date formatting improvements
* Killed start-here
* Changed to use the new mime spec and UI

Major changes since 2.6.2 are:
* Desktop file editior property page
* Display server name in window title for remote URIs
* Add setting to not show volumes on desktop
* Prevents read-only emblem from being shown on desktop icons
  when user is in root group
* Fix dnd start coordinates when zoomed
* Start apps in the directory they are launched from
* Add close all windows to spatial window menu  

Major changes since 2.6.1 are:
* Accessibility/keynav/theming fixes
* Leak fixes
* .desktop file updates
* Fixed help buttons in the preferences dialog 
* Portability fix
* Use initial click position to anchor icon dnd
* Crash fix in the file properties dialog
* Don't overlap the close icon and text label when the sidepane
  is very small.

Major changes since 2.6.0 are:
* Fix various crashes and leaks
* Use correct icon for filesystem in treeview
* Place unplaced windows over the parent window
* Fix non-ascii typeahead
* Faster property dialog for operations on many files
* Faster list view
* Fill open location dialog with initial path
* Add down arrow to location button
* Make shift close window behind in more places
* Allow smaller spatial windows
* Allow svg backgrounds
* Fix ignore kde trash directory hack
* By default set per-folder background in spatial mode

Major changes since 2.5.91 are:
* Translation updates

Major changes since 2.5.90 are:
* Handle failures when opening new window better (don't loop)
* visiting and accept modifiers were reversed in list view
* Build fixes

Major changes since 2.5.8 are:
* Beter typeahead in list view
* "browse" context menu item in more places
* Added go -> cd burner in browser mode
* Fallback to normal icon view if there is a problem launching another view
* Close windows on unmounted directories
* Fix crashes
* Longer delay until cancel open dialog opens

Major changes since 2.5.7 are:
* Fix crash
* Nicer names for toplevel uris
* Browse folder works in more places
* Added preference to always use browser windows
* Warn when sniffed/extension-matched mime type disagrees
* Show applications for both sniffed and extension-matched
  mimetype in the open with menu

Major changes since 2.5.6 are:
* Fix icon lookup crash
* Fix property page crash
* Some a11y fixes
* Use new background capplet name
* Fix rename keyfocus issue
* Scroll to icon after rename
* Fix ogg previewing
* Some HIG rephrasing of strings
* Fix crash on rename of empty selection
* Update help userguide links
* Paste menu sensitivity fix
* Rename selection keynav now behaves better from the start

Major changes since 2.5.5 are:
* hig/ui tweaks
* ngettext support
* distribute nautilus-list-view-ui.xml
* New mimetype detection approach
* performance fixes
* non-modal open with other dialog
* Don't show small svgs as themseleves (always thumbnail)
* update egg-recent

Major changes since 2.5.4 are:
* Extension system for emblem, property page, menu item, and 
  list view column plugins.
* Editable list view columns
* Don't expand symlinks when following them.
* Busy cursor in loading spatial windows
* Icon-view style typeahead in the list view.
* Emblems in the list view
* Added a location button to spatial windows
* Removed tab icon nav from the icon view
* Add a context menu to the tree side pane. 
* Pop up folder menu in list view background
* Turn on home icon on the desktop by default
* Added status bar info when no files are selected
* Got rid of unnecessary EelGenerousBin/EelInputEventBox usage
* HIG fixes
* Bugfixes

Major changes since 2.5.3 are:
* Use GtkIconTheme instead of GnomeIconTheme
* Show visited folders differently
* Better mouse/keynav in icon and list view
* Save window geometry on window close
* HIG message dialogs
* File templates support

Major changes since 2.5.2 are:
* Accessibility fixes
* Better initial size of navigation window
* Close all parents closes all parents
* Focus the next item after delete in list view 

Major changes since 2.5.1.1 are:
* Don't do unnecessary i/o on remote locations
* handle broken symlinks that go unbroken
* various bug fixes
* some accessibility fixes

Major changes since 2.5.1 are:

* Fixed a NautilusFile leak
* DISABLE_DEPRECATED fixes.

Major changes since 2.5.0 are:

* Start of new volume handling system
* deprecaton clean
* fixed leaks
* performance fixes

Major changes since 2.4.0 are:

* Spatial / Navigational split

* Themed icon for desktop window

* Exif image properties

* Fixes for query-drags

* Don't allow renames to "" in list view

* Expand treeview rows on double click

* Change desktop grid size

* Don't disable deprecated API

* Pattern selection

* No incremental display of files

* Various bug fixes

Major changes since 2.3.90 are:

* don't migrate .gnome-desktop if it is a symlink

* Fix messed up home/trash icons for new users

* Handle xpm icons correctly in desktop files

* Handle non-utf8 user names

Major changes since 2.3.9 are:

* Fix warning on theme changes

* Sometimes the home and trash icons became blank and unusable

* Auto-hide KDE trash directory in desktop directory.

Major changes since 2.3.8 are:

* Fix history sidepane crash

* Add keynav rectangle selection

* Better error string for missing proxy hostnames

* Handle arrow keys on numerical keypad

Major changes since 2.3.7 are:

* Handle write protected gconf keys better

* Make "Write to CD" button higher priority

* Small bugfixes

Major changes since 2.3.6 are:

* Fixed zoom-to-fit in the zoom control.

* Selected files are colorized with the selection color.

* Doesn't create new windows when mounting CD-ROMS.

* Improved the gutter-on-the-right problem. 

* Updates the disks menu when fstab changes

* Performance enhancements for icon layout.

* Added support for total size and total count for multi-file property dialogs.

* String fixes

* Added documentation on nautilus internals

* Various fixes

Major changes since 2.3.5 are:

* .hidden file support

* Improved context menus

* Speed improvements in the list and tree views

* Multi-rooted tree view

* Update emblems list after adding custom emblems

* Prefer existing windows from the command line in open-in-new-window 
  mode

Major changes since 2.3.4 are:

* Startup notification support when launching files.

* Selection fixes

* Crash fix in the properties dialog

* Icon theme changes in the tree view fixed

* gcc 3.3 build fixes

* Desktop icon bug fixes

* Panel transparency fix

Major changes since 2.3.3 are:

* Added a "text beside icons" pref to the icon view

* Use the authentication manager in the adapter component

* Bonobo context menus can supply an icon

* Zoom control uses stock widgets

* The property dialog can edit multiple files

* HIG-compliance improvements

Major changes since 2.3.2 are:

* Made the throbber themable using icon themes
  (requires gnome-icon-theme 1.0.4)
  
* Get manager selection for desktop

* Fix some bugs in new desktop code

* fixed icon position for DnD in the listview

* Fixed spacing in dialogs to comply better with the HIG

* Use the authentication manager from libgnomeui instead
  of our own.

* Fix keynav bug with space in listview


Major changes since 2.3.1 are:

* Disabled the limit on the number of files in a directory.

* Change desktop directory to ~/Desktop

* Major change to how desktop icons are handled

* Some accessibility fixes

Major changes since 2.2.3 are:

* Performance increases on directory loads.

* Integrate nautilus-cd-burner

* "Keep Aligned" mode on desktop

* Cygwin & AIX port

* Uses new gnome_vfs_show_url API to activate files

* Better bookmarks UI

* Change in how attributes are stored internally.

Major changes since 2.2.2 are:

* Lots of fixes to the list view keyboard and mouse handling

* Lots of fixes to the icon view keyboard and mouse handling

* Automatic notes emblem (requires gnome-icon-theme 1.0.2)

* Correctly scale icons in list view

* No more tearing when zooming the icon view

* Don't select the extension for rename in the list view

* Easier to trigger auto scrolling during drag and drop in the icon
  view 

* Much better thumbnail queue handling. Visible thumbnails are
  prioritized.
  
* Scroll to previous position on directory reload

* Show volume and free space in the property dialog for directories

* Clean up by name doesn't leave icons outside the screen anymore

* Fix show backup/hidden files and some default view preferences

* Set the Nautilus application name used when grouping in the task
  list.

* Converted NautilusFile to a GObject

* Make the thumbnail size prefs not affect external thumbnailers, as
  it makes little sense for e.g. videos.

* Allow you to exit nautilus-file-management-properties

* Fix crash when droping from other app to Nautilus

* Use startup notification when launching Nautilus

* Don't save window geometry when maximized

* Added code to migrate Nautilus 1.0.x scripts

* Added some docs about keyboard and mouse navigation in nautilus views.

* Better accessibility support in the icon view

* Some other small bugfixes and polish

Major changes since 2.2.1 are:

* Going back/forwards scrolls to the position you left

* Better support for Gtk+ themes on the toolbar and location bar

* Disable the "switch to manual layout" dialog

* Ctrl-dragging on a selected file doesn't de-select it

* Save the current active side pane

* Now easier to hit icons, since you can also click on the transparent
  parts.

* Select the directory name for renaming when creating a new directory

* Select the base name (not extension) when renaming a file

* List view smaller zoomlevel by default

* Text view has copy to clipboard functionallity

* Padding and alignment changes in the preferences dialog

* Performance enhancement for embedded text

* The delete key now works on the desktop

* Added back the "erase" emblem to the Backgrounds & emblems dialog

* Better accessibility support for the icon view

* Refresh listview when icon theme changes

* Correct font size when renaming and not 100% zoomed view

* Remove all usage of deprecated APIs

* Use monospace font in text view

* Added 1 gigabyte pref tor max thumbnailing size

* Handle floppies and cdroms mounted outside /mnt

* Fix duplicated entries in context menu.

* Don't session manage NautilusViews

* Multi-head fixes for the preference dialog

* Leak fixes

* Fix bonobo-activation forkbomb


Major changes since 2.2.0.2 are:

* Fix name collisions in trash

* fix image properties crash

* multihead fixes

* allow .svgz rendering

* correct icons dor zip disks

* fix button ordering for transfer error dialogs

* memory leaks fixed

* "slow context menu" fixed

* Fixed smb passwords getting "stuck".

Major changes since 2.2.0.1 are:

* Background crash fix

* Embedded text fix

Major changes since 2.2.0 are:

* NautilusView refcounting fix

* New translations

Major changes since 2.1.91 are:

* i18n fixes

* List view fixes

* Reverted the symlink change.  Now resolves symlinks when following
  them.

* Context menu corba usage fix

* Reload thumbnails when files changes

* Small fixes

Major changes since 2.1.6 are:

* No flicker on startup.

* Faster expose of the desktop

* Don't resolve symlinks when follow them

* Small bugfixes

Major changes since 2.1.6 are:

* Multihead fixes

* Fixed delete-in-rename-deletes-file bug

* UI review improvements

* Resolved the conflict between Edit and Empty Trash that was causing
  the desktop to be badly stuck.

* Small bugfixes

Major changes since 2.1.5 are:

* Don't depend on libgnomecanvas

* Don't put icons under panel

* Use new icons for start-here

* Better window titles for e.g. fonts:///

* Handle thumbnail preferences


Major changes since 2.1.4 are:

* Handle icon theme changes better

* Query drag with middle button instead of right-click.
  This allows faster context menus.

* Bugfixes

Major changes since 2.1.2 are:

* Remove unused code.

* Lots of smalll bugfixes.

* Make bonobo property pages regular controls instead of NautilusViews.

* Mimetype-sensitive context menu plugins

* Restructure the cut-and-paste code.

Major changes since 2.1.1 are:

* New preferences dialog and capplet.

* Pluggable file property pages.

* New Image properties page.

* Emblem sidebar work.

* Handle rootwindow drops.

* Background drag and drop changes

* The music view has been removed.

Major changes since 2.1.0 are:

* Multihead support

* Emblem sidebar

* Emblems handled with icon themes

* Uses new pango wrap mode in icon view

* Work on exterminating Nautilus themes

* Recent files support

Major changes since 2.0.7 are:

* Nautilus now uses the system icon theme.

* The sidebar tabs have been replaced with a new widget.

* The icon container uses the new eel canvas.

* UI cleanups.

* Various bugfixes.

Major changes since 2.0.6 are:

* Fixed the assertion failure on startup

* CD handling updates

Major changes since 2.0.5 are:

* Fixed volume handling bug with thrash that made it impossible
  to unmount removable media while using fam.

Major changes since 2.0.4 are:

* Follow thumbnailing prefs for svgs too

* Correctly handle old non-utf8 trash and home links

* Fix the "icons stacked in top left corner" bug

* Various small bugfixes.

Major changes since 2.0.3 are:

* Don't show progress dialog for fast operations

* Mime handling fixes

* crux theme tweak

* small performance enhancements

* Various bugfixes.


Major changes since 2.0.2 are:

* Drag and drop has been implemented in the list view.

* Performance enhancements in the icon factory.

* Various bugfixes.


Major changes since 2.0.1 are:

* List view doesn't hang anymore.

* Reflect changes in the eel background api.

* Fix for crash when invoking "nautilus -q".


Major changes since 2.0.0 are:

* Various UI cleanups from the ui review

* Various bugfixes

* The Gnome Nautilus theme now follows the gtk+ theme better

* Window geometry is stored even in open-directories-in-same-window mode

* All executable bonobo components moved into libexec.

* Some performance improvements

* Accessibility fixes

* Add support for kernel supermount patch

* Read desktop file icons according to the icon theme specification

* New throbber for the gnome theme

* large version of trash icon

* Better handling of disk ejecting

* Proper handling of launching desktop files according to the spec



Major changes since 1.0.x are:

* Port to Gtk+ 2 and the Gnome 2 platform.

* Major performance improvements.

* Userlevels are removed.

* Lots of small UI changes in order to comply with the Gnome 2 Human
  Interface Guidelines.

* Preferences dialog has been trimmed down.

* Anti-aliased mode has been removed. If you want anti-aliased text,
  you need to use the Gtk+ 2 anti-aliased text mode.

* New emblems added to the default set of emblems.

* Support for editing vfolder menus using nautilus.

* Made most normal component in-process.

* Accessibility support.

* Drop support for public metadata.

* The news was sidebar disabled/removed

* Image view component removed, we now use Eye of Gnome.

* Bugfixes


Minor new features:

* Drop-shadow for text on the desktop

* Alt-drag image and pick set-as-background

* New progress dialog window-icon shows progress visually.

* You can use Alt-left/right/up/down to navigate the icon view using
  the keyboard.

* Ability to easily create launchers on the desktop.