summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: d4fa87f9f55b0229351ab2a36b6d77dbe4173717 (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
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
2006-03-06	Benedikt Meurer <benny@xfce.org>

	* autogen.sh, configure.in.in, po/LINGUAS: Read the set of available
	  languages from po/LINGUAS and substitute them when autogen.sh is
	  run. This way we can continue to use glib-gettext.
	* docs/manual/, po-doc/, configure.in.in, Makefile.am: Import Daichi's
	  initial japanese translations for the user manual.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* po/POTFILES.in: Add Thunar-folder-handler.desktop.in here.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* Thunar-folder-handler.desktop.in, Makefile.am: Install folder handler
	  .desktop file for Thunar. This way firefox and thunderbird can use
	  Thunar to open folders.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.2.3svn.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Depend on libexo >= 0.3.1.4.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.2.2alpha2.
	* configure.in.in: Bump soname.

2006-03-05	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-xfer.c, thunar/thunar-preferences-dialog.c: Fix
	  en_GB words to their american english counterparts.
	* po/*.po, po/Thunar.pot: Update translations.

2006-03-04	Benedikt Meurer <benny@xfce.org>

	* po/de.po: Update german translations.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, thunar/thunar-gdk-pixbuf-extensions.{c,h},
	  thunar/thunar-icon-renderer.c: Some of the gdk-pixbuf extensions were
	  moved to libexo. Use the libexo ones.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-stock.{c,h}, thunar/thunar-create-dialog.c,
	  thunar/thunar-standard-view.c: Add stock items THUNAR_STOCK_RENAME
	  and THUNAR_STOCK_CREATE and use them for the create and rename
	  dialogs. Bug #1523.
	* po/de.po: Fix german translations.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add zh_TW to XDT_I18N().
	* THANKS: Add translator credits for Hydonsingore Cia
	  <hydonsingore@mail.educities.edu.tw>.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_get_drop_file):
	  Allow to drop into full details view. Thunar will accept drops to
	  the current folder on all non-executable regular files. Bug #1343.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* po/de.po: Fix typo.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* po/*.po: Previous commit removed the semicolons from the "Recommended
	  applications" and "Other applications" strings. Update the po files
	  accordingly.

2006-03-02	Benedikt Meurer <benny@xfce.org>

	* thunar-uca/thunar-uca-chooser.c(thunar_uca_chooser_init): Fix the
	  vertical icon alignment.
	* thunar-uca/thunar-uca-editor.c(thunar_uca_editor_command_clicked):
	  Verify that an absolute filename is given. Else GtkFileChooser will
	  complain.
	* thunar-uca/thunar-uca-editor.c(thunar_uca_editor_icon_clicked): Same
	  story.
	* thunar/thunar-dialogs.c, thunar/thunar-dialogs.c, 
	  thunar-uca/thunar-uca-chooser.c, thunar-uca/thunar-uca-provider.c:
	  "%s." is really not something that must be translated.
	* thunar/thunar-chooser-dialog.c, thunar/thunar-chooser-model.{c,h}: Use
	  bold font for the titles.
	* po/Thunar.pot, po/*.po: Update po files.
	* po/de.po: Updated the german translations. Thanks to Fabian Nowak
	  <timystery@arcor.de>.

2006-03-01	Benedikt Meurer <benny@xfce.org>

	* docs/manual/C/Thunar.xml.in: Add "Frequently Asked Questions".
	* thunar/thunar-location-buttons.c(thunar_location_buttons_clicked):
	  Make sure the new active button is visible on the location button bar.
	* ThunarHelp.in, Makefile.am: Add ThunarHelp script, which is used to
	  display the Thunar user manual.
	* thunar/thunar-dialogs.{c,h}, thunar/Makefile.am: Add new helper method
	  thunar_dialogs_show_help(), which is used to open the documentation
	  browser.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add "Contents"
	  item to the "Help" menu.
	* thunar/thunar-chooser-button.c(thunar_chooser_button_file_changed):
	  Fix typo.
	* po/Thunar.pot, po/*.po: Merge new strings.
	* po/de.po: Updated the german translations.

2006-03-01	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, docs/Makefile.am, docs/manual/: Import initial parts
	  of the user manual.
	* HACKING: Update repository URLs.
	* docs/README.volumes: Update notes.

2006-02-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-standard-view.{c,h}: Remember the scroll offset when
	  changing directory and apply saved scroll offset once a folder is
	  loaded again.

2006-02-27	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c(thunar_path_entry_common_prefix_append): Do
	  not append a slash for the current directory. Otherwise a slash will
	  automatically be appended while browsing folders under certain
	  conditions, and the slash will be selected, but that is not what we
	  want.

2006-02-27	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-create-dialog.c(thunar_create_dialog_init): Use "Create"
	  instead of "Ok" for the button label.
	* thunar/thunar-standard-view.c: Add tooltip for the "Paste Files"
	  action. Update the tooltip for the "Paste Files into Folder" action.
	* thunar/thunar-standard-view.c(thunar_standard_view_action_rename):
	  Use "Rename" instead of "Ok" for the button label.

2006-02-27	Benedikt Meurer <benny@xfce.org>

	* thunar/main.c, thunar/thunar-application.{c,h},
	  thunar/thunar-dbus-client.{c,h}, thunar/thunar-dbus-service-infos.xml,
	  thunar/thunar-dbus-service.c, po/Thunar.pot, po/*.po: Revert the
	  previous commit. Lightweight session management won't work for
	  Thunar, instead XSM should be implemented. Bug #1415.

2006-02-27	Benedikt Meurer <benny@xfce.org>

	* thunar/main.c, thunar/thunar-application.{c,h},
	  thunar/thunar-dbus-client.{c,h}, thunar/thunar-dbus-service-infos.xml,
	  thunar/thunar-dbus-service.c: Add session management support based on
	  the ExoXsessionClient class. Bug #1415.
	* po/Thunar.pot, po/*.po: Update translations.

2006-02-26	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_drag_begin):
	  Release the drag path list, just in case drag_end() wasn't called
	  before (Gtk+ is somewhat buggy here, but I wasn't able to locate
	  the bug yet).
	* thunar/thunar-window.c(thunar_window_action_location_bar_changed):
	  Add "reload" button to the toolbar.
	* thunar/thunar-shortcuts-view.c, thunar/thunar-details-view.c: Use
	  ExoTreeView, which provides a tree view with single-click support.
	* thunar/thunar-standard-view.c, thunar/thunar-icon-view.c: The internal
	  widgets now both provide the "single-click" property, so we can
	  connect it in the ThunarStandardView constructor.

2006-02-25	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump soname.
	* thunar-vfs/thunar-vfs-info.{c,h}: Add working_directory parameter to
	  thunar_vfs_info_execute() to allow xfdesktop to launch applications
	  with $HOME as working directory, as requested on the xfce mailing
	  list. Bug #1473.
	* docs/reference/thunar-vfs/tmpl/thunar-vfs-info.sgml: Update API docs.
	* thunar/thunar-file.c(thunar_file_execute): Update to the new API.

2006-02-25	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: And of course eu and sv.
	* configure.in.in: Set PACKAGE_BUGREPORT to thunar-dev@xfce.org.

2006-02-25	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: And add fi to XDT_I18N().

2006-02-25	Benedikt Meurer <benny@xfce.org>

	* THANKS: Add translator credits for Jari Rahkonen (fi).

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-hal.c(thunar_vfs_volume_hal_update): All
	  volumes provided by USB devices are now marked as removable.
	* thunar/thunar-shortcuts-model.c(thunar_shortcuts_model_iter_for_file):
	  Also check volumes here.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar-uca/thunar-uca-chooser.c: Fix two typos that already survived
	  for too long.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* THANKS: Add translator credits for Piarres Beobide (eu) and Daniel
	  Nylander (sv).

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c(thunar_details_view_button_press_event),
	  thunar/thunar-shortcuts-view.c
	  (thunar_shortcuts_view_button_press_event): Properly verify the event
	  modifier state according to the default modifier mask.
	* thunar/thunar-icon-view.c: Add interactive search capabilities to the
	  ThunarIconView based on the latest changes to ExoIconView. Bug #1359.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* autogen.sh: Be sure to run svn info with LC_ALL=C.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-shortcuts-model.{c,h}, thunar/thunar-shortcuts-view.c:
	  Make sure the path is still valid when renaming. Update the shortcuts
	  rename to alter the mode of ThunarTextRenderer, rather than the
	  "editable" property, which is not valid for ThunarTextRenderer.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-bar.{c,h}, thunar/thunar-window.c,
	  thunar/thunar-location-buttons.c, thunar/thunar-location-dialog.{c,h},
	  thunar/thunar-location-entry.c, thunar/thunar-standard-view.{c,h}:
	  Focus the location selector when the user types "/" or "~" into the
	  main view, to stay compatible with GtkFileChooser.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c(thunar_window_action_about): Add credits for
	  Young Hahn <youngjin.hahn@gmail.com> to the about dialog.
	* thunar/thunar-preferences.c, docs/README.thunarrc: Add new preference
	  MiscSingleClick, which controls whether single click navigation
	  should be used.
	* thunar/thunar-preferences-dialog.c(thunar_preferences_dialog_init):
	  Add single/double-click options to the preferences dialog.
	* thunar/thunar-pango-extensions.{c,h}: Add new helper function
	  thunar_pango_attr_list_underline_single(), which returns a Pango
	  attribute list for single-underlined text rendering.
	* thunar/thunar-text-renderer.c: Add "follow-prelit" property, which
	  controls whether the text renderer should highlight text using the
	  single underline attribute when a row/item is highlighted.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-shortcuts-view.c, thunar/thunar-standard-view.c: Add
	  support for single click navigation to the details and icon views,
	  and also to the shortcuts view. Bug #1396.
	* po/Thunar.pot, po/*.po: Merge new strings.
	* po/de.po: Update german translations.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-view-ui.xml, thunar/thunar-launcher-ui.xml,
	  thunar/thunar-shortcuts-pane-ui.xml, thunar/thunar-window-ui.xml,
	  thunar/thunar-standard-view-ui.xml: Cleanup the ui description files.
	* thunar-vfs/thunar-vfs-link-job.c, thunar-vfs/thunar-vfs-util.c,
	  thunar/thunar-create-dialog.c, thunar/thunar-icon-factory.c,
	  thunar/thunar-location-entry.c, thunar/thunar-window.c,
	  thunar/thunar-properties-dialog.c, thunar/thunar-standard-view.c,
	  thunar-uca/thunar-uca-provider.c: Further string cleanups.
	* thunar/thunar-location-bar.{c.h}, thunar/thunar-window.c:
	  ThunarLocationBar derives from ThunarComponent now, so the location
	  bar widget is able to add its own custom actions to the ui manager.
	* thunar/thunar-location-entry.c: Implement ThunarComponent here.
	* thunar/Makefile.am, thunar/thunar-location-buttons-ui.xml,
	  thunar/thunar-location-buttons.c, thunar/thunar-location-button.c:
	  Let ThunarLocationButtons handle the menu for ThunarLocationButton
	  managed by it. Also add a accelerator <Alt>Down for "down-folder",
	  similar to GtkFileChooser. Bug #1472.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-02-24	Benedikt Meurer <benny@xfce.org>

	* THANKS, configure.in.in, icons/: Import new Thunar icon, designed by
	  Young Hahn <youngjin.hahn@gmail.com>.

2006-02-19	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Turn the side
	  pane choice(s) into toggle actions and add <control>B as keyboard
	  accelerator for the shortcuts pane, similar to the way its done in
	  Firefox.

2006-02-18	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-button.c: Change icon to "drop icon" while
	  dragging over a location button that can accept the drop.
	* thunar/thunar-location-button.c: Add context menu to the location
	  buttons as requested on thunar-dev.

2006-02-18	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-button.c: Set toggle button state to
	  inconsistent while holding down middle mouse button to give
	  the user some visual feedback.

2006-02-18	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-button.{c,h}, thunar/Makefile.am,
	  thunar/thunar-location-buttons.c: Put the location button stuff into
	  a new class ThunarLocationButton.
	* po/POTFILES.in: Add thunar-location-button.c here.

2006-02-16	Benedikt Meurer <benny@xfce.org>

	* THANKS: Change Nick's email address as requested.
	* thunar-vfs/thunar-vfs-volume-none.h: Properly internalize the
	  get_type() methods.

2006-02-15	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-unlink-job.c(thunar_vfs_unlink_job_execute):
	  Ignore ENOENT errors returned by thunar_vfs_scandir() as well, to
	  fix the problem with not being able to delete broken links on
	  Linux.
	* thunar/thunar-application.c: Generate unique roles for the Thunar
	  toplevel windows in preparation of session management support.
	* thunar/thunar-dbus-service-infos.xml, thunar/thunar-dbus-service.c:
	  Add Terminate() method to the org.xfce.Thunar interface, which allows
	  to properly shutdown a daemon instance.
	* thunar/main.c, thunar/thunar-dbus-client.{c,h}: Add -q/--quit command
	  line option, which terminates a running daemon instance. Also cleanup
	  the --daemon handling.

2006-02-15	Benedikt Meurer <benny@xfce.org>

	* FAQ, thunar/thunar-icon-view.c: Add mouse gesture for "Reload" as
	  "move mouse down". The mouse gesture can still be canceled by placing
	  the cursor back to its initial position (+/- 40px).

2006-02-15	Benedikt Meurer <benny@xfce.org>

	* THANKS, thunar-uca/thunar-uca-editor.c: Apply patch provided by
	  Nick Schermer <nickschermer@gmail.com> to fix a crash in the
	  thunar-uca plugin if the icon specified for an action cannot
	  be loaded. Bug #1458.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-xfer.c, thunar-vfs/thunar-vfs-chmod-job.c,
	  thunar-vfs/thunar-vfs-chown-job.c: Be more consistent with error
	  messages.
	* thunar/thunar-shortcuts-view.c: Even more consistency.
	* thunar/thunar-abstract-dialog.{c,h}, thunar/Makefile.am: Add new
	  abstract class ThunarAbstractDialog, which overrides GtkDialog::close
	  and provides additional keybindings for the "close" action. Bug #1380.
	* thunar/thunar-chooser-dialog.c, thunar/thunar-create-dialog.c,
	  thunar/thunar-location-dialog.c, thunar/thunar-preferences-dialog.c,
	  thunar/thunar-properties-dialog.c: Derive from ThunarAbstractDialog,
	  so all dialogs/windows in Thunar can be closed using the same
	  keyboard shortcuts and people can customize these shortcuts using
	  the standard GtkBindingSet mechanism. Bug #1380.
	* po/Thunar.pot, po/*.po: Update translations.
	* po/de.po: "Gerät auswerfen" is probably not the best translation
	  for "Eject Volume". ;-)
	* po/de.po: Even more love for the german translation.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* icons/16x16/Makefile.am, icons/16x16/stock_thunar-group.png,
	  icons/16x16/stock_thunar-user.png: Remove the "thunar-user" and
	  "thunar-group" stock icons.
	* thunar/thunar-permissions-chooser.c, thunar/thunar-stock.{c,h}: Do
	  not display "thunar-user" and "thunar-group" stock icons in the
	  permissions chooser any more, as it makes the dialog look busy.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* acinclude.m4, configure.in.in: Print build configuration summary.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.c(thunar_file_get_emblem_names): Use "cant-write"
	  emblem for non-writable files owned by the user, to make it obvious
	  why an application will not be able to save the file (unless the
	  application uses a write to temporary, rename, unlink temporary
	  procedure).
	* thunar/thunar-location-buttons.c(thunar_location_buttons_forall): Do
	  not include the slider buttons unless include_internals is TRUE.
	* thunar/thunar-location-buttons.c: Remove buttons from the path bar
	  whenever a displayed directory is deleted. Bug #1451.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-creat-job.c, thunar-vfs/thunar-vfs-info.c,
	  thunar-vfs/thunar-vfs-mkdir-job.c,
	  thunar-vfs/thunar-vfs-transfer-job.c,
	  thunar-vfs/thunar-vfs-unlink-job.c,
	  thunar-vfs/thunar-vfs-volume-hal.c, thunar/thunar-dnd.c,
	  thunar/thunar-gdk-extensions.c, thunar/thunar-preferences.c: Cleanup
	  error messages.
	* po/Thunar.pot, po/*.po: Update translations.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-hal.c: Pass NULL for error on first
	  attempt to launch pumount.
	* thunar/thunar-folder.c: Properly merge the current files with the
	  previous files when reloading the folder content. This finally fixes
	  bug #1457.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-hal.c: Fallback to mount/umount if
	  pmount is not available. Requires fstab-sync to synchronize with HAL
	  volumes.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-hal.c: Work-around HAL bug #5279, where
	  the UDIs array returned by libhal_drive_find_all_volumes() is not
	  properly NULL-terminated.

2006-02-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-shortcuts-model.c: Include non-removable volumes in
	  the list of hidden volumes.
	* thunar-vfs/thunar-vfs-volume-hal.c: Determine the volumes from the
	  drives on startup, instead of FindDeviceByCapability(volume), as
	  that seems to be what GNOME does. Maybe one day, there'll be a
	  usable HAL documentation, and hardware will really just work.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* acinclude.m4, configure.in.in, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs-volume-hal.c, thunar-vfs/thunar-vfs-volume.c,
	  thunar-vfs/thunar-vfs-volume-freebsd.{c,h},
	  thunar-vfs/thunar-vfs-volume-none.{c,h}: Do not use AC_CONFIG_LINKS()
	  anymore and let the user select it's preferred volume manager using
	  the --with-volume-manager configure switch.
	* po/POTFILES.in: Update file list.
	* po/Thunar.pot, po/*.po: Update translations.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-hal.c: Properly update volume state
	  after eject and unmount.
	* README: List optional HAL dependency.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-dbus-service.c: Print a warning to stderr, instead of
	  using g_warning() if unable to connect to the session bus.
	* configure.in.in, thunar-vfs/thunar-vfs-volume-hal.c: Update to use
	  HAL 0.5.x API.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-folder.c(thunar_folder_reload): Properly cancel any
	  previous job to make sure it will terminate as soon as possible.
	  Bug #1457.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.c(_thunar_vfs_info_new_internal): Fix
	  typo in hidden file detection.
	* thunar-vfs/thunar-vfs-volume.{c,h}: Add a few new volume types.
	* docs/reference/thunar-vfs/tmpl/thunar-vfs-volume.sgml: Update API
	  docs.
	* thunar-vfs/thunar-vfs-volume-hal.{c,h}, thunar-vfs/Makefile.am,
	  configure.in.in: Import the Linux/HAL implementation of the volume
	  manager. It's still a bit rough, but it seems to work ok. Works only
	  with pmount-hal currently, but that shouldn't be a problem. Bug #999.
	* thunar/thunar-shortcuts-model.c: Handle the addition/removal of
	  volumes and do not open a file for volume shortcuts as that may
	  prevent the volume from being unmounted properly.
	* thunar-vfs/thunar-vfs-volume.c: Setup a watch cursor on the given
	  window when ejecting, mounting or unmounting a volume, so the user
	  gets some feedback during the time it takes to perform the operation.
	* po/POTFILES.in: Add new file.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-02-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-enum-types.{c,h}, thunar/thunar-list-model.h: Rename
	  ThunarListModelColumn to ThunarColumn and add an enum type for it.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-list-model.c, thunar/thunar-path-entry.c: Use the new
	  ThunarColumn enum type.
	* thunar/thunar-gobject-extensions.c: Add transformation function for
	  GtkSortType to string.
	* thunar/thunar-preferences.c, docs/README.thunarrc: Add LastSortColumn
	  and LastSortOrder preferences, which contain the last selected sort
	  settings. Bug #1342.
	* thunar/thunar-standard-view.c: Apply default sort settings on con-
	  struction and save new defaults whenever the sort settings are
	  changed by the user. Bug #1342.
	* po/Thunar.pot, po/*.po: Update translations.

2006-02-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file-monitor.{c,h}, thunar/Makefile.am: Add new class
	  ThunarFileMonitor, which allows other objects stay informed about
	  changes to ThunarFile's without having to connect signal handlers to
	  every ThunarFile. Bug #1447.
	* thunar/thunar-file.c: Emit ThunarFileMonitor signals as appropriate.
	  Bug #1447.
	* thunar/thunar-folder.c, thunar/thunar-list-model.c: Use the newly
	  added ThunarFileMonitor to monitor files for changes and deletion
	  without having to connect and disconnect signal handlers to each and
	  every file. Bug #1447.

2006-02-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-throbber-fallback.png: Import better throbber fallback
	  icon, thanks to Brian Schott <brian-schott@cox.net>.

2006-02-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_cmp): Remove the safety
	  checks here, showing up too high in the profiler stats, and invalid
	  arguments to this function will be detected earlier (for debug
	  builds).

2006-02-10	Benedikt Meurer <benny@xfce.org>

	* docs/reference/thunar-vfs/: Update thunar-vfs API docs.
	* thunar/thunar-throbber-fallback.png, thunar/thunar-throbber.c: Use
	  smaller throbber, so we don't increase the height of the menu bar.

2006-02-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-1.pc.in: Add gthread-2.0 to the dependencies.
	* thunar-vfs/thunar-vfs.c(thunar_vfs_init): Make sure the GThread
	  system is initialized.
	* thunar/main.c(main): thunar_vfs_init() will initialize GThread.
	* thunar-vfs/thunar-vfs-info.c, thunar-vfs/thunar-vfs-types.h: Add flag
	  THUNAR_VFS_FILE_FLAGS_HIDDEN, which tells whether a given file should
	  be considered hidden.
	* thunar/thunar-file.{c,h}: Use the THUNAR_VFS_FILE_FLAGS_HIDDEN flag
	  and implement thunar_file_is_hidden() as simple macro.
	* thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text): Fix
	  a typo in the multi-selection ngettext() call.
	* thunar/main.c(main): Call gdk_notify_startup_complete() if the remote
	  LaunchFiles() succeeds.

2006-02-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-text-renderer.c(thunar_text_renderer_set_widget): Use
	  the base text direction specified by Gtk+. Also, do not interpret
	  line separators in file names.
	* thunar-vfs/thunar-vfs-listdir-job.c,
	  thunar-vfs/thunar-vfs-marshal.list: Add boolean return value to the
	  ThunarVfsListdirJob::infos-ready signal, and allow handlers to take
	  over ownership of the infos list to avoid having to allocate a new
	  list (which reduces both performance overhead and the negative effects
	  on the data cache). Handlers must take care when using this feature,
	  documentation has been updated to explain the details.
	* thunar/thunar-folder.c: Take over ownership of the list provided by
	  "infos-ready" and just replace the ThunarVfsInfo's with ThunarFile's
	  for the initial load case. For the reload case, there's no real gain
	  in taking over ownership, so we keep the existing behaviour there.

2006-02-09	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-provider-factory.c: Initialize the factory on demand.
	* thunar-vfs/thunar-vfs-scandir.c(thunar_vfs_scandir_collect_fast): Use
	  a larger buffer to speed up loading large directories.
	* thunar-vfs/thunar-vfs-mime-database.c: Initialize the MIME desktop
	  stores on demand.

2006-02-09	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.h: Use cast checks instead of type checks here, as
	  they will be optimized away with regular builds. Debug builds will
	  still include the checks.
	* thunar/thunar-application.c, thunar/thunar-chooser-button.c,
	  thunar/thunar-chooser-dialog.c, thunar/thunar-chooser-model.c,
	  thunar/thunar-clipboard-manager.c, thunar/thunar-create-dialog.c,
	  thunar/thunar-emblem-chooser.c, thunar/thunar-file.c,
	  thunar/thunar-folder.c, thunar/thunar-gobject-extensions.h,
	  thunar/thunar-history.c, thunar/thunar-icon-factory.c,
	  thunar/thunar-icon-renderer.c, thunar/thunar-icon-view.c,
	  thunar/thunar-launcher.c, thunar/thunar-list-model.c,
	  thunar/thunar-location-buttons.c, thunar/thunar-location-entry.c,
	  thunar/thunar-path-entry.c, thunar/thunar-permissions-chooser.c,
	  thunar/thunar-progress-dialog.c, thunar/thunar-properties-dialog.c,
	  thunar/thunar-shortcuts-icon-renderer.c,
	  thunar/thunar-shortcuts-pane.c, thunar/thunar-standard-view.c,
	  thunar/thunar-statusbar.c, thunar/thunar-text-renderer.c,
	  thunar/thunar-throbber.c, thunar/thunar-window.c: We don't need
	  to implement G_OBJECT_WARN_INVALID_PROPERTY_ID() for regular builds,
	  as GObject will perform the required checks, but we need it for
	  debug builds to make sure the switch statement is complete.

2006-02-08	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-util.{c,h}, thunar-vfs/thunar-vfs.symbols: Add
	  new function thunar_vfs_canonicalize_filename().
	* thunar-vfs/thunar-vfs-path.c(thunar_vfs_path_new): Use
	  thunar_vfs_canonicalize_filename() on absolute paths.
	* docs/reference/thunar-vfs/: Update the thunar-vfs API docs.
	* thunar/thunar-dialogs.{c,h}: Use a generic parent parameter instead of
	  a GtkWidget, so this method is also usable if no GtkWidget is none,
	  but the dialog must appear on a specific screen.
	* thunar/thunar-application.{c,h}: Add a "daemon" property, which
	  determines whether Thunar will exit once the last window is closed.
	  Remove the D-BUS service here. Add process_filenames() method, to
	  process the list of filenames given on the command line. Bug #1384.
	* thunar/main.c: Attach the D-BUS here.
	* Makefile.am, org.xfce.Thunar.service.in: Add Thunar specific service
	  file.
	* thunar/thunar-dbus-service-infos.xml, thunar/thunar-dbus-service.c:
	  Add the org.xfce.Thunar interface here, with currently only a
	  LaunchFiles() method, which can process Thunar command line parameters
	  in a remote instance. Bug #1384.
	* thunar/thunar-dbus-client.{c,h}, thunar/Makefile.am: Add convenience
	  wrapper for the D-BUS LaunchFiles() of the org.xfce.Thunar interface,
	  which is used on startup to first try to reuse an existing instance.
	  This way new folder windows will popup instantly if an instance of
	  Thunar is already running.
	* org.xfce.Thunar.service.in, org.xfce.FileManager.service.in,
	  thunar/main.c: Add --daemon option and use it when starting from the
	  message bus. Pass all additional parameters as file names to a run-
	  ning remote instance or to ThunarApplication as fallback. Bug #1384.
	* examples/xfce-file-manager.py, examples/Makefile.am: Add a simple
	  example how to communicate with the file manager using the D-BUS
	  Python bindings.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-02-08	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c(thunar_window_action_about): Fix the copyright
	  date.

2006-02-07	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-application.{c,h}: Add thunar_application_take_window(),
	  which is used to add a GtkWindow to the internal application windows
	  list. The application will not exit until the last controlled window
	  is closed by the user.
	* thunar/thunar-file.{c,h}: Use a generic parent parameter for the
	  thunar_file_launch() method.
	* thunar/thunar-chooser-dialog.{c,h}: Use a generic parent paramter for
	  the thunar_show_chooser_dialog() method, and let the application take
	  over control of the dialog window.
	* thunar/thunar-gdk-extensions.{c,h}, thunar/Makefile.am: Import method
	  thunar_gdk_screen_open() from Terminal, which opens a GdkScreen from
	  a full qualified display name.
	* README, configure.in.in: Add optional check for D-BUS.
	* thunar/Makefile.am, org.xfce.FileManager.service.in, Makefile.am,
	  thunar/thunar-dbus-service-infos.xml, thunar/thunar-application.{c,h},
	  thunar/thunar-dbus-service.{c,h}: Initial import of the basic D-BUS
	  service for Thunar, the org.xfce.FileManager implementation. See the
	  thunar-dbus-service-infos.xml file for a description of the current
	  interface.
	* po/Thunar.pot, po/*.po: Update the translations.

2006-02-07	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-cleaner.c: Also cleanup the defaults.list
	  file, replacing previously merged desktop-ids and dropping references
	  to no longer existing .desktop files.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-cleaner.c, thunar-vfs/Makefile.am,
	  configure.in.in: Add a simple utility program thunar-vfs-mime-cleaner,
	  which cleans up the user's $XDG_DATA_HOME/applications directory and
	  removes all automatically generated .desktop files (either generated
	  by Thunar or Nautilus) whose associated program is no longer installed
	  on the user's system. In addition, it tries to combine duplicated
	  .desktop whose Exec values are equal to further the reduce the
	  overhead.
	* thunar-vfs/thunar-vfs-mime-database.c: Invoke thunar-vfs-mime-cleaner
	  every five minutes.
	* thunar-vfs/thunar-vfs.symbols, thunar-vfs/thunar-vfs-*.h: Add
	  G_GNUC_WARN_UNUSED_RESULT to all methods, whose return value should
	  never be ignored. This should help to avoid memory leaks in the
	  future.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-chmod-job.c, thunar-vfs/thunar-vfs-chown-job.c,
	  thunar-vfs/thunar-vfs-listdir-job.c, thunar-vfs/thunar-vfs-scandir.c,
	  thunar-vfs/thunar-vfs-scandir.h, thunar-vfs/thunar-vfs-transfer-job.c,
	  thunar-vfs/thunar-vfs-unlink-job.c: The directory scanning is now
	  cancelable. Bug #1239.
	* thunar/thunar-icon-factory.c: Properly reload/regenerate thumbnails
	  when image files are changed. Bug #1435.
	* thunar-vfs/thunar-vfs-mime-application.c
	  (thunar_vfs_mime_application_new_from_file): Check TryExec (or Exec)
	  first prior to allocating a ThunarVfsMimeApplication for a .desktop
	  file, whose associated program cannot be run. Bug #1436.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Autoscroll while dragging to a
	  ThunarStandardView widget. Bug #1304.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-templates-action.c: Use "show" instead of "map" to
	  create the Templates menu, to make sure the menu position is
	  determined properly.
	* README, configure.in.in, thunar/thunar-icon-view.c: Use cairo only
	  with Gtk+ >= 2.7.1.
	* thunar/thunar-shortcuts-view.c(thunar_shortcuts_view_init): Display
	  typeahead search for the shortcuts view.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-transfer-job.c(thunar_vfs_transfer_job_execute):
	  Try to use g_rename() first when moving files, and only fallback to
	  copy&delete if either the target exists (which requires user inter-
	  action to resolve the issue) or the rename didn't work, i.e. source
	  and target are not on the same filesystem. Bug #1229.
	* thunar-vfs/thunar-vfs-volume.{c,h}: Add thunar_vfs_volume_is_disc()
	  to allow applications to decide whether to eject or unmount a
	  volume.
	* thunar/thunar-shortcuts-view.c
	  (thunar_shortcuts_view_button_press_event): Use the newly added method
	  thunar_vfs_volume_is_disc() to determine whether to display Eject or
	  Unmount.
	* thunar/thunar-side-pane.{c,h}: Derive ThunarSidePane from
	  ThunarComponent instead of ThunarNavigator.
	* thunar/thunar-launcher.c, thunar/thunar-standard-view.c,
	  thunar/thunar-window.c: Use the class name as name for the action
	  groups.
	* thunar/thunar-shortcuts-pane-ui.xml, thunar/thunar-shortcuts-pane.c,
	  thunar/thunar-window.c, thunar/thunar-window-ui.xml,
	  thunar/Makefile.am: Add new action to add a folder (or a list of
	  folders, depending on the selection content) to the shortcuts pane.
	  Bug #1397.
	* thunar/thunar-throbber.c, thunar/thunar-throbber-fallback.{h,png},
	  thunar/Makefile.am: Use the "process-working" icon for the throbber,
	  as specified by the Icon Naming Specification, with an internal
	  fallback to a modified version of the Tango "process-working" icon.
	* configure.in.in, icons/Makefile.am, icons/scalable/,
	  icons/16x16/Thunar.png, icons/16x16/Thunar.png,
	  icons/24x24/Thunar.png, icons/48x48/Thunar.png: Revert to the previous
	  Thunar icon.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Use G_GINT64_FORMAT instead of "lld" as format for the file size.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* Thunar.desktop.in: Add "GTK" to the Categories.

2006-02-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c: Make sure to catch the tab key even for
	  the ThunarLocationEntry case. This doesn't work if the completion list
	  is visible, tho (Gtk+ bug/limitation). Bug #1346.

2006-02-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-chooser-dialog.{c,h}: Add a new convenience function
	  thunar_show_chooser_dialog().
	* thunar/thunar-launcher.c(thunar_launcher_open_files),
	  thunar/thunar-file.c(thunar_file_launch): Use the new function
	  thunar_show_chooser_dialog() here.
	* thunar/thunar-gtk-extensions.{c,h}: Add a new convenience function
	  thunar_gtk_ui_manager_get_action_by_name(), which is unfortunately
	  missing from GtkUIManager.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c: Use
	  thunar_gtk_ui_manager_get_action_by_name() to locate the launcher
	  actions in the UI manager.
	* thunar/thunar-file.{c,h}: Add a new convenience function
	  thunar_file_list_get_applications(), which can be used to determine
	  the set of applications that can be used to open a given set of
	  files.
	* thunar-uca/thunar-uca-chooser.c(thunar_uca_chooser_delete_clicked):
	  Save the model after removing a custom action.
	* thunar/thunar-launcher.{c,h}, thunar/thunar-chooser-dialog.{c,h},
	  thunar/thunar-launcher-ui.xml, thunar/Makefile.am, 
	  thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c,
	  thunar/thunar-window-ui.xml, thunar/thunar-window.c: Replace the
	  previous ThunarLauncher class with a more advanced one, which has
	  access to the GtkUIManager. The new implementation also displays
	  which application will be used to open files, based on Jonathan
	  Blandfords suggestion for Nautilus. Bug #1428.
	* thunar-vfs/thunar-vfs-mime-action-private.h, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs-mime-action.{c,h},thunar-vfs/thunar-vfs.symbols,
	  thunar-vfs/thunar-vfs-mime-handler-private.h, thunar-vfs/thunar-vfs.h,
	  thunar-vfs/thunar-vfs-mime-handler.{c,h},
	  thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs-mime-database.c: Import ThunarVfsMimeAction
	  class to support desktop actions in Thunar. The abstract base class
	  ThunarVfsMimeHandler is used to avoid duplicating the existing code
	  for ThunarVfsMimeApplication in ThunarVfsMimeAction, and it will also
	  make it easier to handle both ThunarVfsMimeApplication's and
	  ThunarVfsMimeAction's in the user interface code. Bug #1374.
	* docs/reference/thunar-vfs/: Update the Thunar-VFS API docs.
	* thunar/thunar-chooser-button.c, thunar/thunar-chooser-dialog.c,
	  thunar/thunar-chooser-model.c, thunar/thunar-file.c,
	  thunar/thunar-launcher.c: Update to the new ThunarVfsMimeHandler and
	  ThunarVfsMimeApplication interface.
	* thunar/thunar-launcher.c: Display desktop actions in the file context
	  menu and the "File" menu, based on the newly added ThunarVfsMimeAction
	  class. Bug #1375.
	* po/POTFILES.in: Update the file list.
	* po/Thunar.pot, po/*.po: Merge new strings.
	* po/de.po: Update german translations.
	* configure.in.in, icons/: Change the Thunar icon to the new one
	  provided by Young Hahn <youngjin.hahn@gmail.com>. Any artists around
	  to make it look even better?

2006-02-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-permissions-chooser.c
	  (thunar_permissions_chooser_file_changed): Display the program check
	  box only for files which we will actually execute.
	* thunar/thunar-permissions-chooser.c: Add a warning text to the
	  permissions chooser for folders, whose exec and read flags are
	  inconsistent. Add a button to allow the user to fix the folder
	  permissions automatically if inconsistent.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-02-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}: Add method thunar_file_list_to_path_list(),
	  which transforms a list of ThunarFile's to a list of ThunarVfsPath's.
	* thunar/thunar-clipboard-manager.c
	  (thunar_clipboard_manager_get_callback): Use newly added function
	  thunar_file_list_to_path_list() here.
	* thunarx/thunarx-file-info.c(thunarx_file_info_list_copy): Use a
	  slightly more efficient implementation here.
	* thunarx/thunarx-file-info.{c,h}, thunarx/thunarx.symbols: Add a boxed
	  type for a list of ThunarxFileInfo's.
	* docs/reference/thunarx/: Update the thunarx API docs.
	* thunar/thunar-launcher.c: Use the new boxed type for the list of
	  selected files, rather than a pointer.
	* thunar/thunar-navigator.c(thunar_navigator_get_type): Add requirement
	  on G_TYPE_OBJECT.
	* thunar/thunar-component.{c,h}: Add new interface ThunarComponent for
	  those parts of a ThunarWindow that require access to both the UI
	  manager and the currently selected files. ThunarComponent extends
	  ThunarNavigator.
	* thunar/thunar-view.{c,h}: The ui-manager property is now in 
	  ThunarComponent and ThunarView inherits ThunarComponent.
	* thunar/thunar-standard-view.{c,h}: Implement ThunarComponent interface
	  as required by ThunarView now. This way other components will be able
	  to determine the selected files and set the selected files without
	  having to interact with the ThunarView implementation directly.
	* thunar-vfs/thunar-vfs-info.c(thunar_vfs_info_get_free_space): Be sure
	  to use statvfs(2) for IRIX. Bug #1425.
	* thunar-vfs/thunar-vfs-volume.h(ThunarVfsVolumeManagerIface): Reserve
	  some space for future expansion now.
	* thunar-vfs/thunar-vfs-*.c, docs/reference/thunar-vfs/: Some updates
	  to the Thunar-VFS API documentation.
	* po/Thunar.pot, po/*.po: Update translations.

2006-02-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c(thunar_path_entry_init): Update to the
	  new show-hidden settings name. Bug #1424.

2006-02-02	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Check for statvfs() and statfs(), and required
	  header files.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs-volume.{c,h},
	  thunar-vfs/thunar-vfs-volume-bsd.c, thunar-vfs/thunar-vfs.symbols:
	  Move the get_free_space() method from ThunarVfsVolume to ThunarVfsInfo
	  so we can use it even if no volume manager implementation is avail-
	  able for the target system. Bug #1420.
	* thunar/thunar-file.h: Add get_free_space() method to ThunarFile, so
	  we can easily determine the amount free space for a given volume
	  based on a file located on that volume. Bug #1421.
	* thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text): Use
	  new method thunar_file_get_free_space().
	* thunar/thunar-properties-dialog.c: Display the amount of free space
	  on a certain volume in the properties dialog for folders.

2006-02-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-throbber.c: Fix typo in GDK_WINDOWING_X11. Cannot use
	  gdk_cairo_region() with GDK < 2.7.1.

2006-02-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Make it
	  easier to distinguish hidden and backup files from regular files.
	* docs/README.thunarrc, thunar/thunar-preferences.c: Rename the
	  DefaultShowHidden preference to LastShowHidden.
	* thunar/thunar-preferences-dialog.c, thunar/thunar-window.c: Drop the
	  "Show hidden files" option from the preferences dialog. Instead Thunar
	  now preserves the users last selection. This way, the "Show hidden
	  files" behaviour is now consistent with the rest of the file manager.
	  Bug #1417.

2006-02-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-shortcuts-model.{c,h}: Drop obsolete method
	  thunar_shortcuts_model_file_for_iter() from ThunarShortcutsModel.
	* thunar-vfs/thunar-vfs-volume.{c,h}, thunar-vfs/thunar-vfs.symbols:
	  Add eject(), mount() and unmount() methods to the ThunarVfsVolume
	  interface. The interface is therefore mostly done now, maybe some
	  small additions required for certain backends in the future. Bug #995.
	* docs/reference/thunar-vfs/: Update the API docs.
	* thunar-vfs/thunar-vfs-volume-bsd.c: Implement eject(), mount() and
	  unmount() for the BSD backend.
	* thunar/thunar-shortcuts-view.c: Allow users to mount, unmount and
	  eject volumes using the shortcuts pane. Volumes will also be mounted
	  automatically if you select "Open", "Open in New Window" or just
	  double click them. But all this is currently only available to BSD
	  users.
	* docs/README.volumes: Add notes about the volume manager.
	* po/Thunar.pot, po/*.po: Merge new strings.
	* po/de.po: Another four strings translated!

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_scroll_event):
	  Zoom-in on scroll down, zoom-out on scroll up, to be compatible with
	  Firefox.

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Open a dialog when renaming a file.
	  Bug #1413.
	* thunar/thunar-standard-view.c(thunar_standard_view_action_delete):
	  Use "Cancel" and "Delete" buttons in the delete confirmation dialog,
	  as suggested by Jasper.
	* thunar/thunar-progress-dialog.c(thunar_progress_dialog_error),
	  thunar/thunar-permissions-chooser.c
	  (thunar_permissions_chooser_job_error): Use "Close" button for the
	  error dialogs.
	* po/Thunar.pot, po/*.po: Merge new strings.
	* po/de.po: Some work on the german translations.
	* docs/reference/thunar-vfs/tmpl/: Update thunar-vfs API docs.

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c: Don't recreate plugin pages if
	  the file changes, but instead let the plugins connect to the file's
	  "changed" signal and update their user interface appropriately.
	  Bug #1355.

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}, thunarx/thunarx-file-info.{c,h},
	  thunarx/thunarx.symbols: Move "changed" and "renamed" signals from
	  ThunarFile to ThunarxFileInfo, so plugins can use these signals to
	  stay informed about changes to files. First part of bug #1354.
	* docs/reference/thunarx/: Update the API documentation.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs-types.h:
	  Drop the inode field from the ThunarVfsInfo struct, as we don't
	  need it anyway and it can cause trouble with systems where ino_t's
	  size depends on whether largefile support is active or not.

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-scandir.c: Use g_access() if available.
	* thunar-vfs/thunar-vfs-info.c(_thunar_vfs_info_new_internal): Fix a
	  bug where the path name was g_free()'d for .desktop files with non
	  ASCII file names.
	* thunar-vfs/thunar-vfs-path.c(thunar_vfs_path_to_string): Apply simple
	  optimization here: Prefer the stack memory over heap memory when
	  constructing the absolute path.

2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-util.c(thunar_vfs_humanize_size): Use "kB"
	  instead of "KB".

2006-01-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Disable the "create-document" action
	  on non-writable folders.
	* thunar-vfs/thunar-vfs-scandir.c: Return an error when trying to scan
	  a directory for which the user has no execute permissions. Bug #1408.
	* thunar/thunar-file.c(thunar_file_get_emblem_names): Add "cant-read"
	  emblem to folders, where we don't have permissions to enter. Second
	  part of fix for bug #1408.

2006-01-31	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.c: Treat .desktop files of Type=Link as
	  executable as well, and when requested to execute such a file, extract
	  the URL and pass it to exo-open for further processing. Bug #1369.

2006-01-31	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-exec.c(thunar_vfs_exec_parse): Use exo-open
	  instead of hardcoding Terminal as terminal emulator. Bug #1400.

2006-01-31	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Depend on exo 0.3.1.3.
	* thunar-vfs/thunar-vfs-listdir-job.c: Make sure the list head always
	  points to a valid ThunarVfsInfo list, even if an error occurred while
	  stat()'ing files in a given directory. Bug #1390.
	* thunar/thunar-window.c(thunar_window_action_about): Use the newly
	  added exo_url_about_dialog_hook() functions to open links in the
	  about dialog.

2006-01-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_scroll_event): Add
	  support to zoom in/out using Control+MouseWheel.

2006-01-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c(thunar_window_action_open_templates): Improve
	  the text for the "About Templates" dialog. Thanks to Brian for the
	  suggestion. Bug #1392.

2006-01-30	Benedikt Meurer <benny@xfce.org>

	* thunar/Makefile.am, thunar/thunar-throbber.{c,h}: Import the
	  ThunarThrobber widget class, which display a loading animation
	  similar to the one found in Firefox.
	* thunar/thunar-statusbar.{c,h}: Drop the statusbar icon, as it's
	  confusing, since it refers to the current folder instead of the
	  selected items, but the text displayed in the statusbar refers to the
	  selected items.
	* thunar/thunar-window.c: Add a ThunarThrobber to the menu bar, and use
	  it to display loading animation instead of the statusbar icon.
	* thunar/thunar-window.c: Add additional reload shortcut GDK_F5.
	* docs/README.thunarrc, thunar/thunar-preferences.c,
	  thunar/thunar-window-ui.xml, thunar/thunar-window.c: The statusbar
	  is optional now. Bug #1395.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-01-30	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add ru translations.
	* THANKS: Add ru translator credits for Andrey Fedoseev
	  <andrey.fedoseev@gmail.com>.

2006-01-29	Benedikt Meurer <benny@xfce.org>

	* docs/README.thunarrc: Add missing preferences.
	* thunar/thunar-preferences.c: Rearrange stuff.

2006-01-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-enum-types.{c,h}: Add ThunarZoomLevel and ThunarIconSize
	  required for the zoom-level support.
	* docs/README.thunarrc, thunar/thunar-preferences.c: Changed property
	  ShortcutsIconSize to ThunarIconSize, required for the upcoming
	  changes to ThunarIconRenderer. People starting Thunar for the first
	  time after this upgrade will notice that the size of the shortcuts
	  icons is too small because of this change. Either edit thunarrc and
	  change ShortcutsIconSize appropriately or just remove thunarrc and
	  let Thunar recreate it with sane defaults (your settings will be lost
	  then). Add two new preferences LastDetailsViewZoomLevel and
	  LastIconViewZoomLevel.
	* thunar/thunar-icon-renderer.{c,h}: The size property is now of type
	  ThunarIconSize, rather than plain int.
	* thunar/thunar-view.{c,h}: Add zoom control methods to the ThunarView
	  interface.
	* thunar/thunar-standard-view.{c,h}, thunar/thunar-standard-view-ui.xml,
	  thunar/thunar-window-ui.xml, thunar/thunar-window.{c,h},
	  thunar/thunar-details-view.c, thunar/thunar-icon-view.c: Add support
	  for seven different zoom levels to Thunar based on the previous
	  changes. This fixes bug #1357, and thereby implements one of the most
	  oftenly requested features.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-01-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-buttons.c: Add support to drop on pathbar
	  buttons, as requested in bug #1344.

2006-01-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_files_removed): Fix bug
	  where only the first file was removed.
	* thunar/thunar-folder.{c,h}: Add new method thunar_folder_reload(),
	  which explicitly forces the ThunarFolder to reload its contents.
	  This fixes bug #1360.
	* thunar/thunar-view.{c,h}: Add new method thunar_view_reload() to the
	  ThunarView interface.
	* thunar/thunar-standard-view.c: Implement thunar_view_reload() for the
	  ThunarStandardView class, using the newly added thunar_folder_reload()
	  method.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add a "Reload"
	  item to the "View" menu, using "Ctrl+R" as accelerator to stay com-
	  patible with Firefox, Nautilus, etc. This fixes bug #1361.
	* thunar/thunar-standard-view.c
	  (thunar_standard_view_drag_data_received): Reload the contents of the
	  target folder after a successful XDirectSave. This fixes bug #1362.
	* po/Thunar.pot, po/*.po: Merge new strings.

2006-01-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-templates-action.c: Add support for sub folders below
	  the ~/Templates folder. This fixes reopened bug #1391.
	* thunar-vfs/thunar-vfs.symbols, thunar-vfs/thunar-vfs-info.{c,h}: Add
	  thunar_vfs_info_read_link(), which determines the target from a
	  symbolic link.
	* thunar/thunar-file.h: Add method thunar_file_read_link() as wrapper
	  to thunar_vfs_info_read_link().
	* thunar/thunar-properties-dialog.c: Display the "Link Target" for
	  symbolic links. This fixes bug #1394.

2006-01-28	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-chmod-job.c(thunar_vfs_chmod_job_execute),
	  thunar-vfs/thunar-vfs-chown-job.c(thunar_vfs_chown_job_execute):
	  Properly emit and release an error that occurred on the last file.
	* THANKS, thunar/thunar-shortcuts-view.c: Add support to open shortcuts
	  in new windows using the context menu or double-middle-clicks, based
	  on a patch by Laurent Meunier <meunier.laurent@laposte.net>. This
	  fixes bug #1381.
	* docs/README.thunarrc, thunar/thunar-preferences.c,
	  thunar/thunar-window.c: Remember the window dimensions whenever the
	  size of a window is changed and use the last saved window dimensions
	  for newly created windows. This fixes bug #1389.
	* thunar/thunar-pango-extensions.{c,h}: Add new helper function
	  thunar_pango_attr_list_big_bold(), which returns a pango attribute
	  list for big, bold text rendering.
	* thunar/thunar-permissions-chooser.c
	  (thunar_permissions_chooser_ask_recursive): Use big, bold label for
	  the dialog title to stay consistent with GtkMessageDialog.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-creat-job.{c,h},
	  thunar-vfs/thunar-vfs.{c,h}, thunar-vfs/thunar-vfs.symbols: Add new
	  class ThunarVfsCreatJob, which is used to create empty files for a
	  given list of paths.
	* docs/reference/thunar-vfs/tmpl/thunar-vfs-operations.sgml,
	  docs/reference/thunar-vfs/thunar-vfs-sections.txt: Update API docs.
	* thunar/thunar-application.{c,h}: Add thunar_application_creat() as
	  wrapper for the newly imported ThunarVfsCreatJob.
	* thunar/thunar-application.{c,h}: Add thunar_application_copy_to() to
	  copy files from one location to another, rather than copying files
	  from different sources to exactly one folder.
	* thunar/thunar-create-dialog.c(thunar_create_dialog_set_filename):
	  If the suggested file name contains a dot, pre-select only the text
	  up to the dot.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c,
	  thunar/thunar-templates-action.{c,h}, thunar/Makefile.am: Add support
	  for Templates in a way compatible with what Nautilus does currently.
	  This is part one of the fix for bug #1391.
	* thunar/thunar-preferences, docs/README.thunarrc: Add new property
	  "misc-show-about-templates", which determines whether the "About
	  Templates" dialog will be shown when entering the Templates folder.
	* icons/16x16/stock_thunar-templates.png, icons/16x16/Makefile.am,
	  thunar/thunar-stock.{c,h}: Add new stock icon "thunar-templates".
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add "Templates"
	  to the "Go" menu, which will open the ~/Templates folder (it will be
	  created on-demand) and popup a message describing the purpose of the
	  ~/Templates folder. This is part two of the fix for bug #1391.
	* po/POTFILES.in: Add new files here.
	* po/*.po: Merge new strings.

2006-01-25	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.c, thunar-vfs/thunar-vfs-xfer.c: Apply
	  patch provided by Daichi to add several translator hints to
	  thunar-vfs.
	* thunar/thunar-properties-dialog.c
	  (thunar_properties_dialog_key_press_event): Support Ctrl+W for clo-
	  sing the properties dialog, to be consistent with the main windows.

2006-01-25	Benedikt Meurer <benny@xfce.org>

	* THANKS, configure.in.in: Add nl to XDT_I18N(). Add translator credits
	  to THANKS.

2006-01-25	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-util.c(thunar_vfs_humanize_size): Use "GB"
	  instead of "G", "MB" instead of "M" and "KB" instead of "K", to
	  make it more obvious what the value means (this fixes bug #1367).

2006-01-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-chooser-dialog.c, thunar/thunar-chooser-model.c,
	  thunar/thunar-clipboard-manager.c, thunar/thunar-create-dialog.c,
	  thunar/thunar-emblem-chooser.c, thunar/thunar-file.c,
	  thunar/thunar-folder.c, thunar/thunar-history.c,
	  thunar/thunar-icon-factory.c, thunar/thunar-icon-view.c,
	  thunar/thunar-launcher.c, thunar/thunar-list-model.c,
	  thunar/thunar-navigator.c, thunar/thunar-open-with-action.c,
	  thunar/thunar-path-entry.c, thunar/thunar-progress-dialog.c,
	  thunar/thunar-properties-dialog.c, thunar/thunar-standard-view.c,
	  thunar/thunar-statusbar.c, thunar/thunar-text-renderer.c,
	  thunar/thunar-view.c, thunar/thunar-window.c: Remove various internal
	  strings from the list of translatable strings to reduce confusion
	  for translators.
	* po/*.po: Update translations.

2006-01-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-enum-types.{c,h}: Import enum types required for the
	  desktop background management.

2006-01-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-preferences.c(thunar_preferences_set_property): No need
	  to call g_object_notify() here, as GObject does that automatically
	  whenever set_property() is being called.
	* thunar/thunar-preferences.c: Remove useless safetly checks in
	  get_property() and set_property(), since GObject already makes sure
	  that the property id is valid.

2006-01-23	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Display size only for regular files, as it's misleading for other
	  file system entities.
	* po/*.po: Merge new strings. Some work on the german translations,
	  we really need a german translator!

2006-01-23	Benedikt Meurer <benny@xfce.org>

	* docs/README.thunarrc, thunar/thunar-preferences.c: Add new preferences
	  ShortcutsIconEmblems and ShortcutsIconSize, which control the
	  appearance of the shortcuts view.
	* thunar/thunar-gobject-extensions.c: Add transformator for string to
	  int transformations.
	* thunar/thunar-icon-renderer.{c,h},thunar/thunar-shortcuts-model.{c,h},
	  thunar/thunar-shortcuts-icon-renderer.{c,h}, thunar/Makefile.am,
	  thunar/thunar-shortcuts-view.c: Import ThunarShortcutsIconRenderer
	  class, which is derived from ThunarIconRenderer and allows us to draw
	  icon cells consistently throughout the file manager. This also fixes
	  bug #1340, which requests to display emblems for the icons in the
	  shortcuts pane. Both the display of emblems in the shortcuts pane
	  and the size of the icons in the shortcuts pane are now configurable
	  through the thunarrc file (for the emblems, there's also a menu item
	  in the context menu).

2006-01-23	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.2.1svn.
	* thunar/thunar-file.{c,h}: Make thunar_file_accepts_drop() easier to
	  use.
	* thunar/thunar-standard-view.c(thunar_standard_view_get_dest_actions):
	  Keep up with the thunar_file_accepts_drop() changes.
	* docs/reference/thunarx/tmpl/thunarx-preferences-provider.sgml: Let
	  gtk-doc remove it's empty line here, for whatever reason.

2006-01-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.2.0alpha.
	* configure.in.in: Bump library interface version.
	* configure.in.in: Depend on libexo 0.3.1.2.
	* po/*.po: Update translations.
	* TODO: Remove obsolete TODO items.

2006-01-14	Benedikt Meurer <benny@xfce.org>

	* THANKS, configure.in.in, po/pl.po: Add initial polish translations,
	  thanks to Tomasz MichaĹ‚ Ĺukaszewski <T.Lukaszewski@aster.pl>.
	* thunar/thunar-icon-factory.c, thunar/thunar-preferences-dialog.c,
	  thunar/thunar-preferences.c, thunar/thunar-standard-view.c: Make
	  thumbnails configurable.
	* po/*.po: Merge new strings.

2006-01-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c(thunar_path_entry_init): The property
	  "popup-single-match" was introduced in Gtk+ 2.8. Thanks to Erik
	  for the pointer.

2006-01-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-text-renderer.c(thunar_text_renderer_render): Render
	  focus indicator when following state. Part two of fix for bug #1321.

2006-01-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-preferences.c, FAQ: Store preferences in an .ini file,
	  $XDG_CONFIG_HOME/Thunar/thunarrc, similar to what Terminal does, so
	  users can easily adjust hidden settings, and don't have to dive into
	  the details of managing a tdb database file.
	* thunar/thunar-icon-view.c, thunar/thunar-path-entry.c,
	  thunar/thunar-preferences-dialog.c, thunar/thunar-preferences.c,
	  thunar/thunar-standard-view.c: Rename "default-folders-first" to
	  "misc-folders-first" and "default-text-beside-icons" to
	  "misc-text-beside-icons", as those preferences aren't defaults.
	* thunar/thunar-standard-view.c(thunar_standard_view_scroll_event),
	  thunar/thunar-preferences.c: Add a new hidden preference,
	  MiscHorizontalWheelNavigates, which controls whether the horizontal
	  mouse wheel should be used to navigate back and forth within a
	  Thunar view. This fixes bug #1319.
	* docs/Makefile.am, docs/README.thunarrc: Add brief overview of the
	  various Thunar configuration settings.

2006-01-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Fix compiler warnings. Again bug
	  #1318.

2006-01-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c(thunar_path_entry_changed): Make older
	  compilers happy. Fixes bug #1318.

2006-01-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-chooser-dialog.c(thunar_chooser_dialog_response): If
	  the default application was changed successfully, emit "changed" on
	  the file so everybody updates its state.
	* thunar/thunar-chooser-button.{c,h}, thunar/thunar-properties-dialog.c:
	  Import the ThunarChooserButton, which allows people to change the
	  default application from within the properties dialog.
	* po/POTFILES.in, po/*.po: Merge new strings.

2006-01-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c(thunar_path_entry_activate): If we have
	  a pending completion, accept the completion first, without activating
	  the entry. This makes it more consistent with the behaviour when
	  completing from the popup window.
	* thunar/thunar-path-entry.c(thunar_path_entry_parse): Properly
	  transform all parts of the filename to the local encoding.
	* thunar/thunar-text-renderer.c(thunar_text_renderer_set_widget):
	  Calculate the approx. character dimensions based on the font metrics
	  for the active widget font.
	* thunar/thunar-window.c(thunar_window_action_go_up): Handle errors
	  properly.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c:
	  Add support to view the properties of the current folder.
	* thunar/thunar-file.{c,h}, thunar/thunar-location-buttons.c, 
	  thunar/thunar-shortcuts-model.c, thunar/thunar-window.c: Change
	  special file naming (home and root folder) to be consistent with
	  what GtkFileChooser does.
	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Display only the name of the file in the dialog title.
	* thunar/thunar-standard-view.c: Add support for the XDS protocol.
	* README: Add notes about supported standards.

2006-01-09	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-util.{c,h}: Add thunar_vfs_expand_filename(),
	  which is used to expand filenames that start with the tilde character.
	* docs/reference/thunar-vfs/thunar-vfs-sections.txt,
	  docs/reference/thunar-vfs/tmpl/thunar-vfs-util.sgml: Update
	  documentation.
	* thunar/thunar-permissions-chooser.c: Implement cancel-semantics for
	  the recursive permissions dialog.
	* thunar/thunar-permissions-chooser.c: Add tooltips.
	* thunar/thunar-list-model.{c,h}: Additional column to access the real
	  file name (in UTF-8 encoding).
	* thunar/thunar-path-entry.{c,h}: Add support for auto path completion.
	* thunar/thunar-file.{c,h}: Add thunar_file_launch() to automatically
	  launch a given ThunarFile without having to manually figure out the
	  proper action.
	* thunar/thunar-location-entry.c, thunar/thunar-window.c: If the
	  ThunarPathEntry returns a non-directory file, just try to launch it.
	  This allows users to just open files right away from the path entry
	  without having to lookup the file in the icon/details view.
	* thunar/thunar-standard-view.c, THANKS: Allow people to use the
	  horizontal mouse wheel to navigate back/forward. Based on a patch
	  provided by Danny Milosavljevic <danny.milo@gmx.net>.
	* po/*.po: Merge new strings.

2006-01-08	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c
	  (thunar_vfs_monitor_queue_notification): Don't use strcmp() here, as
	  the notification's filename may be NULL.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols: Drop
	  thunar_vfs_info_chmod() and thunar_vfs_info_chgrp() again.
	* thunar-vfs/thunar-vfs-chmod-job.{c,h}, thunar-vfs/thunar-vfs.{c,h},
	  thunar-vfs/thunar-vfs-chown-job.{c,h}, thunar-vfs/Makefile.am: Add
	  new classes ThunarVfsChmodJob and ThunarVfsChownJob as replacements
	  for the thunar_vfs_info_chmod() and thunar_vfs_info_chgrp() functions.
	  These jobs can operate recursively. Add interfaces to the new classes,
	  thunar_vfs_change_mode() and thunar_vfs_change_group().
	* docs/reference/thunar-vfs/: Update documentation.
	* thunar/thunar-file.{c,h}: Drop thunar_file_chmod(),thunar_file_chgrp()
	  and thunar_file_is_chgrpable(), as we'll use the asynchronous jobs
	  added to Thunar-VFS now.
	* thunar/thunar-advanced-permissions-dialog.{c,h},
	  thunar/thunar-change-group-dialog.{c,h},
	  thunar/thunar-permissions-model.{c,h},
	  thunar/thunar-permissions-view.{c,h}, thunar/Makefile.am,
	  thunar/thunar-properties-dialog.c: Ditch the ACL aware permissions
	  user interface, as it's unlikely that ACL support will be there for
	  1.0 and so there's no need to reduce the usability of the permissions
	  user interface yet.
	* thunar/thunar-pango-extensions.{c,h}: Add new Pango helper method
	  thunar_pango_attr_list_small_italic().
	* thunar/thunar-enum-types.{c,h}: Import new files to contain enum
	  types that don't fit anywhere else and provide conversation functions
	  for these types.
	* thunar/thunar-permissions-chooser.{c,h}, thunar/Makefile.am,
	  thunar/thunar-properties-dialog.c: Import simplified permissions
	  chooser, similar to the Aqua Finder one, with support to change
	  permissions recursively for folders.
	* thunar/thunar-preferences-dialog.c, thunar/thunar-preferences.c: Add
	  option "misc-recursive-permissions", which controls whether
	  permissions are always/never applied recursively, or whether Thunar
	  should ask the user everytime a permission flag is changed.
	* icons/16x16/, thunar/thunar-stock.{c,h}: Remove now obsolete icon
	  thunar-permissions-other. Rename the user and group icons.
	* po/*.po, po/POTFILES.in: Update file list. Merge new strings.

2006-01-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-text-renderer.c: Don't determine the focus-padding and
	  focus-line-width style properties on every call to get_size() when
	  used within the icon view.

2006-01-04	Benedikt Meurer <benny@xfce.org>

	* thunar/Makefile.am, thunar/thunar-pango-extensions.{c,h}: Add common
	  PangoAttrList's here, to avoid allocating them over and over again,
	  and of course to avoid markup, which makes translator's life easier.
	* thunar/thunar-location-buttons.c, thunar/thunar-preferences-dialog.c,
	  thunar/thunar-progress-dialog.c, thunar/thunar-properties-dialog.c:
	  Use common PangoAttrList's provided by the thunar-pango-extensions.
	* thunar/thunar-permissions-view.c(thunar_permissions_view_init): Use
	  italic font for the warning to make it easier to distinguish the text
	  from the other parts of the GUI.
	* thunar/thunar-chooser-dialog.c(thunar_chooser_dialog_update_header):
	  Also setup the window icon in addition to the header image icon.

2006-01-04	Benedikt Meurer <benny@xfce.org>

	* docs/reference/thunar-vfs/thunar-vfs-sections.txt,
	  thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  docs/reference/thunar-vfs/tmpl/thunar-vfs-info.sgml: Add method
	  thunar_vfs_info_chmod() to change the permissions of a file
	  identified by a given ThunarVfsInfo.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  docs/reference/thunar-vfs/thunar-vfs-sections.txt,
	  docs/reference/thunar-vfs/tmpl/thunar-vfs-info.sgml: Add method
	  thunar_vfs_info_chgrp() to change the group id of a file identified
	  by a given ThunarVfsInfo.
	* thunar-vfs/thunar-vfs-user.c(thunar_vfs_user_load): Properly
	  substitute '&' in real names.
	* icons/16x16/, icons/Makefile.am, configure.in.in, thunar/Makefile.am,
	  thunar/thunar-stock.{c,h}: Add stock icons thunar-permissions-user,
	  thunar-permissions-group and thunar-permissions-other.
	* thunar-uca/thunar-uca-plugin.c: Don't display debug messages unless
	  G_ENABLE_DEBUG is defined.
	* thunar-vfs/thunar-vfs-user.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  docs/reference/thunar-vfs/thunar-vfs-sections.txt,
	  docs/reference/thunar-vfs/tmpl/thunar-vfs-user-manager.sgml: Add new
	  method thunar_vfs_user_manager_get_all_groups() to retrieve all groups
	  known to the ThunarVfsUserManager.
	* thunar/thunar-advanced-permissions-dialog.{c,h},
	  thunar/thunar-change-group-dialog.{c,h},
	  thunar/thunar-permissions-model.{c,h},
	  thunar/thunar-permissions-view.{c,h},
	  thunar/Makefile.am, thunar/thunar-file.{c,h},
	  thunar/thunar-properties-dialog.c: Add permissions tab to the
	  file properties dialog.
	* po/POTFILES.in: Add new files.
	* po/*.po: Merge new strings.
	* tdb/tdbtool.c(print_rec): Fix printf format.

2006-01-02	Benedikt Meurer <benny@xfce.org>

	* thunar-uca/thunar-uca-model.c: Include <locale.h> to get LC_MESSAGES
	  definition.

2005-12-30	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add ca to XDT_I18n().

2005-12-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Use -Wall -Werror for --enable-debug=yes as well.
	* thunar/thunar-list-model.c(thunar_list_model_get_value): The MIME info
	  name is static.
	* thunar/thunar-text-renderer.c: Don't copy static strings.
	* pixmaps/Thunar-fallback-icon.png, pixmaps/Makefile.am,
	  thunar/thunar-fallback-icon.{h,png}, thunar/Makefile.am,
	  thunar/thunar-icon-factory.c: Load the fallback icon and the
	  thumbnail frame on-demand.
	* thunar/main.c(main): Use Thunar icon as default for new windows.
	* thunar/thunar-icon-factory.c: Allocate the thumbnail factory and the
	  thumbnail generator on-demand.
	* thunar/thunar-file.c: Add "display-name" and "special-name" readonly
	  properties and emit notifications on these properties whenever the
	  file is changed/renamed.
	* thunar/thunar-location-buttons.c(thunar_location_buttons_make_button):
	  Automatically synchronize the button labels with the file's special
	  names.
	* configure.in.in: Add it translations to XDT_I18N().
	* THANKS: Add credits for it translator Roberto Pariset.

2005-12-20	Benedikt Meurer <benny@xfce.org>

	* THANKS: Update credits.
	* README, configure.in.in, thunar-vfs/thunar-vfs-info.c,
	  thunar-vfs/thunar-vfs-mime-database.c,
	  thunar-vfs/thunar-vfs-mime-info.c, thunar-vfs/thunar-vfs-path.c,
	  thunar/main.c, thunar/thunar-file.c: Support four different levels
	  of debugging support. Default for SVN builds is `yes', while the
	  default for release builds is `minimum'. Closes bug #1254.

2005-12-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-bsd.c(thunar_vfs_volume_bsd_update):
	  Specify correct buffer size for read().
	* thunar/thunar-icon-factory.c(thunar_icon_factory_load_from_file):
	  Don't add frames for small icon sizes (< 36). Be sure to scale icon
	  to the required size, so we don't need to scale on every render()
	  call.
	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_init): Add 1px
	  padding to the icons.
	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Try to
	  avoid scaling icons if they fit into the given cell area (including
	  the padding).

2005-12-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-progress-dialog.c: Use Pango attribute list instead of
	  markup for the dialog action label. This fixes bug #1252.
	* thunar-uca/thunar-uca-chooser.c(thunar_uca_chooser_init): Be sure to
	  create the button widgets prior to connecting the "selection-changed"
	  handler. This fixes bug #1260.

2005-12-03	Benedikt Meurer <benny@xfce.org>

	* thunar/, po/POTFILES.in, po/*.po: Rename "Favourites" to "Shortcuts",
	  so we're consistent with the GtkFileChooser wording. This fixes bug
	  #1258.

2005-12-03	Benedikt Meurer <benny@xfce.org>

	* thunar-uca/thunar-uca-model.c(start_element_handler): Properly
	  truncate values.

2005-12-03	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Build the gnuc visibility test program with -Wall
	  -Werror, as gcc reports warnings instead of errors if ELF visibility
	  is not supported for the target platform. This fixes bug #1253.

2005-11-30	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-scandir.c: Workaround missing dirfd() definition
	  using the POSIX/XPG API on IRIX. This fixes bug #1247.

2005-11-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-dnd.c, thunar/thunar-favourites-view.c,
	  thunar/thunar-folder.c, thunar/thunar-preferences-dialog.c,
	  thunar/thunar-standard-view.c: Use exo_gtk_object_ref_sink() to
	  automatically handle floating references properly and avoid the use
	  of GTK_OBJECT_FLOATING (see GNOME bug #322853 for details). This fixes
	  bug #1249.

2005-11-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_renamed): Use
	  persistent iterators instead of tree row references when renaming a
	  file. This fixes bug #1248.

2005-11-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-thumbnail-generator.c
	  (thunar_thumbnail_generator_thread): Don't generate thumbnails for
	  files for which only the generator owns a reference.

2005-11-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c
	  (thunar_standard_view_merge_custom_actions): Fix typo.
	* thunarx/thunarx-private.{c,h}, thunarx/thunarx-menu-provider.c,
	  thunarx/Makefile.am, thunarx/thunarx-property-page-provider.c: Add
	  helper function thunarx_object_list_take_reference(), so we don't
	  need to repeat the same code again and again.
	* thunar/thunar-window.c(action_entries): Add ... to the Preferences
	  action, since it opens a dialog. Use "e" as mnemonic, as "P" is
	  already used by "Paste".
	* thunar/thunar-standard-view.c(action_entries): Add ... to the Select
	  by Pattern action, since it opens a dialog.
	* thunar/thunar-preferences-dialog.c: Close preferences dialog on Esc
	  key press.
	* thunarx/thunarx-preferences-provider.{c,h}, thunarx/thunarx.h,
	  thunarx/thunarx.symbols, thunarx/Makefile.am: Add new interface
	  ThunarxPreferencesProvider, which can be implemented to add custom
	  actions to the preferences section of the "Edit" menu.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Query custom
	  preferences actions from the installed providers and add them to the
	  preferences section of the "Edit" menu. Actions are loaded in an idle
	  source to not delay folder loading when opening a new window, even if
	  a lot of preferences providers are installed.
	* docs/reference/thunarx/: Update the thunarx reference documentation.
	* thunar-uca/, configure.in.in, Makefile.am: Import the thunar-uca
	  module, which provides advanced users with an easy way to add custom
	  actions to Thunar's context menus. With this extension in place
	  there's no longer a need to add support G-Scripts (except maybe an
	  importer for thunar-uca).
	* po/POTFILES.in: Add new translatable files.
	* po/: Merge new strings.
	* examples/tex-open-terminal/README: Add note to use thunar-uca, and
	  consider the tex-open-terminal as example for extension writers.

2005-11-29	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, thunar-vfs/thunar-vfs-types.h: Add largefile support
	  for systems that don't support 64bit file offsets by default. This
	  fixes bug #1243.

2005-11-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-buttons.c, thunar/thunar-properties-dialog.c:
	  Use attribute lists instead of markup strings.

2005-11-27	Benedikt Meurer <benny@xfce.org>

	* tdb/Makefile.am: Fix make -j<N>.

2005-11-26	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c
	  (thunar_standard_view_merge_custom_actions): Don't sort custom actions
	  explicitly, but leave it up to the provider plugins to determine the
	  order of their actions. Also, be sure to update the UI manager after
	  unmerging the previously set menu actions, else GtkUIManager will
	  mess up the order of the actions.

2005-11-25	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-provider-factory.c: Make sure, ThunarxProviderModules
	  are never finalized, as GObject cannot unregister dynamic types (yet).
	* thunar/thunar-standard-view.c(thunar_standard_view_renamed): Properly
	  release the path returned from gtk_tree_row_reference_get_path().

2005-11-22	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/*.{c,h}, thunar/*.c, thunarx/*.c: Avoid duplicating static
	  strings if possible.
	* thunar-vfs/thunar-vfs-scandir.c(thunar_vfs_scandir_collect): Ignore
	  EACCES and EPERM on subdirectories with recursive scanning.
	* thunar-vfs/thunar-vfs-info.h(ThunarVfsInfo): Compress "type", "mode"
	  and "flags" to reduce memory overhead.

2005-11-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add fr and pt_BR to gettext linguas, which were
	  previously imported by Daichi.

2005-11-21	Benedikt Meurer <benny@xfce.org>

	* docs/reference/thunar-vfs/, thunar-vfs/thunar-vfs-info.h: Small
	  documentation tweaks.
	* thunar-vfs/thunar-vfs-info.h: Allow previous declarations of the
	  ThunarVfsInfo typedef.
	* thunarx/thunarx-file-info.{c,h}, thunarx/thunarx.symbols,
	  thunar/thunar-file.c, docs/reference/thunarx/: Add new virtual method
	  thunarx_file_info_get_vfs_info(), which can be used to query the
	  ThunarVfsInfo for a given ThunarxFileInfo.

2005-11-21	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-provider-plugin.{c,h}, thunarx/Makefile.am,
	  thunarx/thunarx.h, thunarx/thunarx.symbols: Add ThunarxProviderPlugin
	  interface, which abstracts from the details of the dynamic type
	  registration, and is accessible to the extensions.
	* thunarx/thunarx-provider-module.{c,h}, thunarx/Makefile.am: Add
	  implementation for the ThunarxProviderPlugin interface, based on
	  GTypeModule, which is used on the file manager's side to manage the
	  type plugins.
	* thunarx/thunarx-provider-factory.{c,h}, thunarx/Makefile.am,
	  thunarx/thunarx.h, thunarx/thunarx.symbols: Add ThunarxProviderFactory
	  based on the ThunarExtensionManager as public interface to the
	  provider plugin mechanism. This may also be used by other applications
	  in the future.
	* thunarx/thunarx.h: Provide convenience macros ala G_DEFINE_TYPE() to
	  ease type registration for plugin writers.
	* examples/, configure.in.in: Update the "Open Terminal Here" example.
	* docs/reference/thunarx/: Update the thunarx reference manual to
	  include the new classes and interfaces.
	* thunar/thunar-extension-manager.{c,h}: Drop the old extension manager
	  class in favour of the new provider factory class.
	* thunar/thunar-properties-dialog.c, thunar/thunar-standard-view.c: Use
	  ThunarxProviderFactory to load the providers from the installed
	  extensions.
	* po/POTFILES.in: Update with new file list.
	* thunar/thunar-file.{c,h}: Implement thunar_file_list_copy() using
	  thunarx_file_info_list_copy() and thunar_file_list_free() using
	  thunarx_file_info_list_free().
	* docs/reference/thunar-vfs/thunar-vfs-overrides.txt,
	  docs/reference/thunarx/thunarx-overrides.txt: Fix build error with
	  older gtk-doc versions.

2005-11-16	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Drop obsolete error class
	  ThunarVfsMimeApplicationError.

2005-11-15	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-gtk-extensions.{c,h}: Add new convenience function
	  thunar_gtk_action_group_create_tool_item(), which creates a new
	  GtkToolItem proxy for a given GtkAction in a GtkActionGroup.
	* thunar/thunar-location-bar.{c,h}, thunar/thunar-location-entry.c,
	  thunar/thunar-location-buttons.c: Add new virtual method
	  thunar_location_bar_is_standalone(), which determines whether a
	  given location bar should be displayed in a standalone fashion, or
	  embedded within a location toolbar.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Check whether
	  the location should be embedded into a location toolbar and if so,
	  generate a toolbar for it on-demand and place it below the menubar.
	  Else, the location bar is placed right above the view pane. This
	  gives a better appearance when using the location entry implementation
	  with a toolbar, and you don't need the toolbar with the pathbar
	  anyways.
	* po/POTFILES.in: Add thunar-preferences-dialog.c here.
	* po/*.po: Merge new strings.

2005-11-15	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Use "b" as mnemonic for the "Select by
	  Pattern" action to avoid clash with "Preferences".
	* thunar/thunar-preferences.c: Add "default-folders-first" property,
	  which determines whether folders should be sorted before other files.
	  Add "default-view", which dictates the default view pane used for new
	  windows, or "void" to use the view remembered in "last-view".
	* thunar/thunar-standard-view.{c,h}: Connect the list models
	  "folders-first" property to the "default-folders-first" preference.
	* thunar/thunar-window.c(thunar_window_init): Check "default-view" first
	  and if it does not contain a valid view class name, check "last-view".
	* thunar/thunar-details-view.c(thunar_details_view_get_accessible),
	  thunar/thunar-icon-view.c(thunar_icon_view_get_accessible): Set ATK
	  role for our folder views to ATK_ROLE_DIRECTORY_PANE.
	* thunar/Makefile.am, thunar/thunar-preferences-dialog.{c,h},
	  thunar/thunar-window-ui.xml, thunar/thunar-window.c: Import class
	  ThunarPreferencesDialog, which allows the user to customize the global
	  preferences for Thunar. Add a "Preferences" menu item to the "Edit"
	  menu of ThunarWindow's.
	* thunar/thunar-preferences.c: Add "default-text-beside-icons" property,
	  which tells whether the icon view should display the file names beside
	  the file icons, rather than below the file icons.
	* thunar/thunar-icon-view.c: Add a property "text-beside-icons", which
	  tells whether the icon view will place the icon captions beside the
	  icons rather than below. Synchronize the property with the global
	  option "default-text-beside-icons".
	* po/*.po: Merge new strings.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-xfer.c: Return G_FILE_ERROR_INTR when the copy
	  operation is explicitly cancelled by the user.
	* thunar-vfs/thunar-vfs-transfer-job.c
	  (thunar_vfs_transfer_job_copy_pair): Don't delete the source file when
	  moving unless the target file was written successfully and the job
	  wasn't cancelled. This fixes a bug reported by Jari Rahkonen.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.{c,h}: Register "Delete" as key binding
	  for the ThunarStandardView class, rather than registering it as
	  accelerator for the "delete" action. This fixes bug #1226.
	* thunar/thunar-marshal.list: Add BOOLEAN:VOID marshaller.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-exec.c(thunar_vfs_exec_on_screen): Fix invalid
	  calculation of the number of environment variables.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.1.4svn and depend on
	  libexo 0.3.1.1.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* po/*.po: Update translations.
	* po/ChangeLog: Didn't mean to revert this file.
	* README: Mention gconf, libjpeg and libstartup-notification as optional
	  dependencies.

2005-11-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Don't need to remember the "changed"
	  signal handler id per row, as g_signal_handlers_disconnect_matched()
	  using G_SIGNAL_MATCH_ID and G_SIGNAL_MATCH_CLOSURE is nearly as fast
	  as g_signal_handler_disconnect().
	* thunar/thunar-folder.c(thunar_folder_finalize): Specify both
	  G_SIGNAL_MATCH_ID and G_SIGNAL_MATCH_CLOSURE when disconnecting
	  "destroy" signals from files.
	* thunar/thunar-preferences.c, thunar/thunar-window.c: Remember the last
	  active view as default for now.
	* thunar/thunar-create-dialog.c(thunar_create_dialog_text_changed): Use
	  G_IS_DIR_SEPARATOR() rather than hardcoding the slash character.

2005-11-13	Benedikt Meurer <benny@xfce.org>

	* FAQ, thunar/thunar-icon-view.c: Add initial support for mouse gestures
	  to the icon view component.

2005-11-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c, thunar/thunar-preferences.c: Rename
	  "window-location-bar" to "last-location-bar" and "window-side-pane"
	  to "last-side-pane" to make clear that it's the last selected
	  setting.
	* thunar/thunar-metafile.h: Drop THUNAR_METAFILE_KEY_SHOWHIDDEN.
	* thunar/Makefile.am, thunar/thunar-gobject-extensions.{c,h}: Add
	  additional GValue transformation functions.
	* thunar/thunar-preferences.c: Register additional transformation
	  functions provided by the GObject extensions in the class_init()
	  function. Add new preference "default-show-hidden", which tells
	  whether hidden files are shown by default in new windows.
	* thunar/thunar-view.{c,h}: Add the "show-hidden" property to the
	  ThunarView interface.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c:
	  Implement the "show-hidden" property from the ThunarView interface,
	  rather than adding an action to the UI manager.
	* thunar/thunar-preferences.c: Add "default-show-hidden" property, which
	  tells whether hidden files should be shown in newly opened windows.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add the
	  "show-hidden" action here, which starts with the default value queried
	  from the preferences, and uses the new ThunarView API to sync the
	  selected setting.

2005-11-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-preferences.c(thunar_preferences_set_property): No need
	  to call g_object_notify() here, as object_set_property() does that
	  implictly once the set_property() call returns.

2005-11-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}, thunar/thunar-metafile.{c,h}: Remove the
	  default value handling from the ThunarMetafile class and leave it up
	  to the caller to specify the default value when fetching/storing
	  metadata.
	* thunar/thunar-folder.{c,h}, thunar/thunar-standard-view.c: Remove
	  the error parameter from the thunar_folder_get_for_file() method, as
	  this call cannot fail. If a loading error occurs, it will be reported
	  asynchronously by the listdir job.
	* thunar/thunar-preferences.c(thunar_preferences_set_property): Issue
	  a warning if a required transformation function is not available to
	  the GLib Type System, as this is effectively a bug in our application.

2005-11-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-folder.c, thunar/thunar-list-model.c,
	  thunar/thunar-standard-view.c: Forward ThunarVfsListdirJob loading
	  errors to the ThunarStandardView and display an error dialog to the
	  user.
	* thunar/thunar-preferences.c, FAQ: Use a tdb database to store the
	  preferences, while not saving defaults to the database file.
	* thunar/thunar-preferences.c: Add initial preferences
	  "window-location-bar" and "window-side-pane".
	* thunar/thunar-window.c: Always remember the last selected location
	  bar and side pane setting in the preferences.

2005-11-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text):
	  Display symbolic links properly just like the MIME type field in
	  the properties dialog.

2005-11-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_action_duplicate):
	  Use thunar_standard_view_get_selected_paths() instead of
	  thunar_standard_view_get_selected_files().
	* po/POTFILES.in: Add new source files.
	* po/*.po: Merge new strings.
	* thunar/thunar-dialogs.{c,h}, thunar/Makefile.am: Add new function
	  thunar_dialogs_show_error(), which takes care of displaying an error
	  message dialog to the user.
	* thunar/thunar-application.c, thunar/thunar-chooser-dialog.c,
	  thunar/thunar-clipboard-manager.c, thunar/thunar-dnd.c,
	  thunar/thunar-favourites-view.c, thunar/thunar-launcher.c,
	  thunar/thunar-properties-dialog.c, thunar/thunar-standard-view.c,
	  thunar/thunar-window.c: Use thunar_dialogs_show_error() whenever
	  possible to reduce code duplication.
	* thunar-vfs/thunar-vfs-info.h, docs/reference/thunar-vfs/: Update the
	  Thunar-VFS documentation.

2005-11-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_new_files): Grab
	  focus for the view widget after selecting newly created files.
	* thunar-vfs/thunar-vfs-mkdir-job.{c,h}, thunar-vfs/Makefile.am: Import
	  new class ThunarVfsMkdirJob, which is used to asynchronously create
	  a bunch of directories.
	* thunar-vfs/thunar-vfs.{c,h}, thunar-vfs/thunar-vfs.symbols: Add new
	  methods thunar_vfs_make_directory() and thunar_vfs_make_directories()
	  as public interface to the newly imported ThunarVfsMkdirJob.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_info_for_data_locked),
	  (thunar_vfs_mime_database_get_info_for_file): Consider empty
	  files to be text/plain, so users can easily open newly created (empty)
	  files in their favourite text editor.
	* thunar-vfs/thunar-vfs-mime-sniffer.{c,h}, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs-mime-database.c, configure.in.in: Add function
	  thunar_vfs_mime_sniffer_looks_like_text(), which performs some smart
	  checks to determine if a given data block looks like plain text. Plain
	  text means either UTF-8 - and thereby also ASCII - or valid multi-byte
	  if the platform supports multi-byte strings. In both cases, even
	  truncated data blocks will be recognized.
	* thunar/thunar-application.{c,h}: Add thunar_application_mkdir() as
	  frontend to the thunar_vfs_make_directories() function.
	* thunar/thunar-create-dialog.{c,h}, thunar-vfs/Makefile.am: Add class
	  ThunarCreateDialog, which is used to query the user for the filename
	  that should be used for a new file/folder.
	* TODO: Add todo item.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c,
	  thunar/thunar-window-ui.xml: Add "Create Folder" action, which uses
	  thunar_application_mkdir() to create a new subfolder in the current
	  folder.
	* thunar/thunar-window.c: Rename thunar_window_action_location() to
	  thunar_window_action_open_location() to get consistent naming.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add "Home" action
	  whose primary purpose is to be able to open the home folder using a
	  keyboard shortcut.

2005-11-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c, thunar-vfs/thunar-vfs-thumb.c: Apply
	  patch from Erik Harrison <erikharrison@gmail.com> to fix unused
	  variables when FAM/Gamin and/or GConf aren't available.

2005-11-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_init): Be sure to
	  update the actions whenever the current folder is changed.

2005-11-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c(thunar_window_notify_loading): Don't force a
	  round-trip to the Xserver when setting/unsetting the watch cursor.
	  Set/unset the cursor only if the window is already realized.
	* thunar/thunar-list-model.c(thunar_list_model_get_value): Don't need to
	  check the result of thunar_file_get_date_string() and
	  thunar_file_get_size_string() as they are garantied to be non-NULL.
	* thunar/thunar-list-model.c(thunar_list_model_file_changed): Use
	  gtk_tree_path_new_from_indices() instead of gtk_tree_path_new() and
	  gtk_tree_path_append_index().
	* thunar/thunar-list-model.c(thunar_list_model_set_folder): Use
	  g_object_freeze_notify()/g_object_thaw_notify() for multiple property
	  change notification.
	* thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text):
	  Don't need to verify the result of thunar_file_get_size_string(), as
	  it's garantied to be non-NULL.

2005-11-09	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-buttons.c
	  (thunar_location_buttons_set_current_directory): Be a bit smarter here
	  and try to reuse existing buttons whenever possible.

2005-11-09	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Depend on GLib 2.6.4 or above.
	* tdb/Makefile.am: Add _XOPEN_SOURCE=500 workaround for glibc to make
	  pread()/pwrite() visible to the compiler.

2005-11-09	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-history.{c,h}, thunar/Makefile.am: Import new class
	  ThunarHistory, which handles back/forward history for a ThunarWindow.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Use the newly
	  imported class ThunarHistory to manage the navigational history for
	  the ThunarWindow.

2005-11-09	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c: Display the tooltip of the currently selected
	  menu item in the statusbar.
	* thunar/thunar-icon-render.c(thunar_icon_renderer_render): Render up
	  to 4 emblems for icon sizes from 48px on and up to 2 emblems for icon
	  sizes lower than 48px.
	* thunar/thunar-icon-render.c(thunar_icon_renderer_render): Use the
	  proper icon factory for the target drawable, rather than the default
	  icon factory.

2005-11-09	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-xfer.{c,h}: Add function thunar_vfs_xfer_link(),
	  which creates a symbolic link to a file.
	* thunar-vfs/thunar-vfs-link-job.{c,h}, thunar-vfs/Makefile.am: Import
	  new class ThunarVfsLinkJob, which can be used to symlink a bunch of
	  files.
	* thunar-vfs/thunar-vfs.{c,h}, thunar-vfs/thunar-vfs.symbols: Add
	  thunar_vfs_link_file() and thunar_vfs_link_files() as public interface
	  to the ThunarVfsLinkJob class.
	* po/POTFILES.in: Add thunar-vfs-link-job.c here.
	* thunar/thunar-application.{c,h}: Add thunar_application_link_into() as
	  interface to the thunar_vfs_link_files() method. Restructure the code
	  to further reduce the code duplication.
	* thunar/thunar-dnd.c: Use thunar_application_link_into() to implement
	  the "Link here" Drag&Drop action.
	* thunar-vfs/thunar-vfs-transfer-job.c
	  (thunar_vfs_transfer_job_copy_pair): Don't access pairs outside the
	  current pair list.
	* thunar-vfs/thunar-vfs-xfer.c(thunar_vfs_xfer_next_path): Also detect
	  the "%uth copy of %s" pattern when duplicating a file.
	* thunar/thunar-standard-view.c: Use upper case for substantives in
	  action titles where appropriate.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c:
	  Add "duplicate" and "make-link" actions, for duplicating/linking
	  files easily.
	* po/*.po: Merge new strings.

2005-11-08	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-transfer-job.c(thunar_vfs_transfer_job_new):
	  Verify that we don't ever try to transfer the root directory.
	* thunar/thunar-file.{c,h}: Make thunar_file_cache_lookup() a public
	  function.
	* thunar-vfs/thunar-vfs-interactive-job.{c,h}: Add a new signal
	  "new-files", which can be invoked by derived jobs for their new files.
	  The application can use this signal to get notified when a job added
	  new files to a folder (e.g. select them in a folder view, etc.).
	* thunar-vfs/thunar-vfs-transfer-job.c: Collect the newly created paths
	  and emit the "new-files" signal when the execution finishes.
	* thunar-vfs/thunar-vfs-monitor.{c,h}, thunar-vfs/thunar-vfs.symbols:
	  Add new method thunar_vfs_monitor_wait(), which can be used by helper
	  threads to wait until the ThunarVfsMonitor has processed all pending
	  notifications.
	* thunar-vfs/thunar-vfs-interactive-job.c
	  (thunar_vfs_interactive_job_new_files): Use thunar_vfs_monitor_wait()
	  to delay the "new-files" emission until the application has processed
	  all pending notifications.
	* thunar-vfs/thunar-vfs-monitor.c: Lower the notification interval to
	  250 milliseconds.
	* thunar-vfs/thunar-vfs-transfer-job.c(thunar_vfs_transfer_job_execute):
	  Don't use g_rename() for now, as it causes too much trouble right now.
	* thunar/thunar-application.{c,h}, thunar/thunar-dnd.{c,h},
	  thunar/thunar-clipboard-manager.{c,h}: Allow the consumers to pass
	  a "new-files" closure when starting a transfer job.
	* thunar/thunar-list-model.{c,h}: Add new method
	  thunar_list_model_get_paths_for_files(), which returns the list of
	  tree paths for a given list of ThunarFiles.
	* thunar/thunar-standard-view.c: Supply a "new-files" closure when
	  starting transfer jobs, and select the files that are passed to the
	  "new-files" callback when the job finishes.
	* docs/reference/thunar-vfs/: Update the documentation bits affected
	  by the latest changes.

2005-11-08	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.h: Add method thunar_file_is_symlink() to check
	  whether a given ThunarFile is a symbolic link.
	* thunar/thunar-list-model.c, thunar/thunar-properties-dialog.c: Display
	  symbolic links properly for the MIME Type fields.
	* thunar-vfs/thunar-vfs-transfer-job.{c,h}, thunar-vfs/thunar-vfs.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Adjust the asynchronous operations API
	  again to make it more constistent with the requirements of the file
	  manager.
	* po/*.po: Merge new strings.
	* thunar-vfs/thunar-vfs-monitor.c: Add tags to notifications to make
	  sure (slow) FAM events don't override properly feeded events, as
	  afterall we know best what we did.
	* thunar-vfs/thunar-vfs-transfer-job.c
	  (thunar_vfs_transfer_job_copy_pair): Fix a typo, where the result
	  of thunar_vfs_transfer_job_overwrite() was not negated properly.
	* thunar-vfs/thunar-vfs-xfer.c, thunar-vfs/thunar-vfs-transfer-job.c,
	  TODO: Automatically duplicate files when copying and the source and
	  target paths refer to the same file.
	* thunar/thunar-application.{c,h}, thunar/thunar-standard-view.c,
	  thunar/thunar-clipboard-manager.{c,h}, thunar/thunar-dnd.c: Rework
	  the ThunarApplication API and internals to reduce the amount of
	  duplicated code, and make the API more consistent.
	* thunar-vfs/thunar-vfs-xfer.{c,h}, thunar-vfs/thunar-vfs.c: Feed events
	  into the VFS monitor from the xfer module.
	* thunar-vfs/thunar-vfs-transfer-job.c
	  (thunar_vfs_transfer_job_copy_pair): No need to feed a "created" event
	  into the VFS monitor, as that's done by the xfer module directly (with
	  the correct target path).
	* docs/reference/thunar-vfs/thunar-vfs-sections.txt,
	  docs/reference/thunar-vfs/tmpl/thunar-vfs-operations.sgml: Update
	  documentation bits affected by the latest changes to the public API.

2005-11-07	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Use an alloc-only memory chunk to reduce
	  the overhead.
	* thunar/thunar-icon-factory.c(thunar_icon_factory_load_from_file): Add
	  the thumbnail frame after scaling down the thumbnail to the desired
	  size.
	* thunar/thunar-icon-factory.c(thumbnail_needs_frame): Inline this
	  function if possible.

2005-11-07	Benedikt Meurer <benny@xfce.org>

	* tdb/tdbtool.c: Make gcc4 happy.
	* thunar/thunar-dnd.c(thunar_dnd_ask): Add icons to the "move" and
	  "copy" actions.
	* thunar/thunar-folder.c(thunar_folder_monitor): Be sure to process
	  monitor events properly in either case.
	* thunar-vfs/thunar-vfs-monitor.c
	  (thunar_vfs_monitor_queue_notification): Schedule only one
	  notification per handle, where "deleted" events have the highest
	  priority.
	* docs/reference/thunar-vfs/: Update documentation.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-xfer.{c,h}: Add module
	  to copy various kinds of file system entities (basicly everything that
	  a normal user is permitted to create, e.g. no device nodes).
	* thunar-vfs/thunar-vfs-transfer-job.{c,h}: Add new ThunarVfsTransferJob
	  class based on the thunar-vfs-xfer module.
	* thunar-vfs/thunar-vfs.c: Use new ThunarVfsTransferJob class.
	* thunar/thunar-progress-dialog.c: Improve the progress dialog.
	* po/POTFILES.in, po/*.po: Update the file list and the translations.

2005-11-04	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-transfer-job.{c,h}, thunar-vfs/thunar-vfs.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Update the Thunar-VFS transfer API.
	* thunar/thunar-application.c: Use the new Thunar-VFS transfer API.

2005-11-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}: Add "renamed" signal and emit it whenever
	  the file is renamed by the user.
	* thunar/thunar-folder.c: Use the "ThunarFile::renamed" to re-register
	  with the file alteration monitor under the new path.
	* thunar/thunar-window.c: Update the window icon and title whenever the
	  current-directory is changed (e.g. the user renamed the directory
	  file).
	* thunar-vfs/thunar-vfs-monitor.c: Place the timeout into a preprocessor
	  define.
	* tdb/, AUTHORS, FAQ, configure.in.in, Makefile.am: Import the tdb - the
	  Trivial Database - engine from the Samba suite, which will be used to
	  store file metadata in a lightweight and efficient way.
	* thunar/thunar-metafile.{c,h}, thunar/Makefile.am: Add ThunarMetafile
	  class, which handles metadata for files based on a tdb database.
	* thunar/thunar-file.{c,h}: Add methods to access metadata for a given
	  ThunarFile.
	* thunar/thunar-file.c: Query additional emblems from the file's
	  metadata (in addition to the special emblems that are set
	  automcatically).
	* thunar/thunar-emblem-chooser.{c,h}, thunar/Makefile.am: Add
	  ThunarEmblemChooser widget class, to edit the list of additional
	  emblems for a ThunarFile.
	* thunar/thunar-standard-view.c: Synchronize the show-hidden property.
	* thunar/thunar-properties-dialog.c: Add a notebook tab for the Emblems.

2005-11-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.c: Use THUNAR_FILE_IN_DESTRUCTION as destruction
	  flag rather than GTK_IN_DESTRUCTION.

2005-11-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-unlink-job.c(thunar_vfs_unlink_job_remove):
	  Also remove thumbnails when successfully deleting a regular file.
	* thunar-vfs/thunar-vfs-thumb-jpeg.{c,h}, thunar-vfs/Makefile.am,
	  configure.in.in: Add fast JPEG loader, which is able to scale down
	  the data while loading it.
	* thunar-vfs/thunar-vfs-thumb.c: Use the fast JPEG loader to generate
	  thumbnails for JPEG files (if supported).

2005-11-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols: Add
	  attribute custom_icon to the ThunarVfsInfo struct instead of the hints
	  framework and a new method thunar_vfs_info_get_custom_icon() to query
	  the custom icon from a ThunarVfsInfo.
	* thunar-vfs/thunar-vfs-thumb.c
	  (thunar_vfs_thumb_factory_store_thumbnail): Fix invalid check for
	  valid pixbuf.
	* thunar-vfs/thunar-vfs-info.c(_thunar_vfs_info_new_internal): Be sure
	  to remove any file extension (e.g. '.png') from themed icon names, so
	  GtkIconTheme is able to locate the icon.
	* thunar-vfs/thunar-vfs-info.c: Don't treat .directory files like other
	  .desktop files, as that's confusing for the casual user.
	* thunar/thunar-file.{c,h}: Add method thunar_file_get_custom_icon()
	  to return the custom icon set for the associated ThunarVfsInfo.
	* thunar/thunar-file.c(thunar_file_get_icon_name): Don't return the
	  custom icon here.
	* thunar/thunar-icon-factory.c(thunar_icon_factory_load_file_icon):Check
	  first if the ThunarFile specifies a custom icon and try to load it,
	  falling back to thumbnails and regular (mime) icons.

2005-10-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.h: Add thunar_file_is_regular() to check whether a
	  ThunarFile is a regular file.
	* thunar/thunar-file.h: Add thunar_file_get_info() to query the
	  ThunarVfsInfo for a given ThunarFile.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols: Add
	  new method thunar_vfs_info_copy(), which takes a deep copy of a
	  ThunarVfsInfo.
	* thunar-vfs/thunar-vfs-job.{c,h}, thunar-vfs/thunar-vfs.symbols: Turn
	  thunar_vfs_job_cancelled() into an inline function.
	* thunar-vfs/thunar-vfs-thumb.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  thunar-vfs/Makefile.am: Readd the ThunarVfsThumbFactory class and
	  adjust it to use ThunarVfsInfo's instead of ThunarVfsURI's.
	* configure.in.in, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs-thumb.{c,h}: Add optional support for GNOME
	  thumbnailers, which requires GConf.
	* thunar/thunar-thumbnail-generator.{c,h}, thunar/Makefile.am: Add new
	  class ThunarThumbnailGenerator, which is used to asynchronously
	  generate and store thumbnails for files.
	* thunar/thunar-icon-factory.{c,h}: Add support for loading thumbnails.
	  Add support for generating thumbnails using the new
	  ThunarThumbnailGenerator class.
	* configure.in.in: Bump version to 0.1.3.

2005-10-30	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-listdir-job.c(thunar_vfs_listdir_job_execute):
	  Don't immediately terminate the second collector task.

2005-10-30	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-scandir.c: Don't report EMLINK at all.

2005-10-30	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-scandir.c(thunar_vfs_scandir): Treat EMLINK
	  like ENOTDIR, since there's no GFileError to represent EMLINK.

2005-10-29	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-cache.c(cache_node_lookup_suffix): Always
	  check the return value to avoid guessing invalid mime types just
	  because of misleading stopchars.
	* thunar/thunar-file.c(thunar_file_get_icon_name): Try to be smart when
	  looking up the icon name for binaries.

2005-10-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.{c,h}: Use ThunarFile to copy/cut to
	  the clipboard and monitor the files for deletion.
	* thunar/thunar-clipbard-manager.{c,h}: Add new method
	  thunar_clipboard_manager_has_cutted_file() to check whether a certain
	  file was cutted to the clipboard.
	* thunar/thunar-gdk-pixbuf-extensions.{c,h}: Add new function
	  thunar_gdk_pixbuf_lucent() when generates a translucent pixbuf.
	* thunar/thunar-standard-view.c: Use the new clipboard manager
	  interface.
	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Render
	  translucent icons for files previously cutted to the clipboard.
	* thunar/thunar-window.c: Queue a draw on the window whenever the
	  clipboard contents change to be sure to always display correct
	  state.

2005-10-28	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c(thunar_vfs_monitor_feed): Be sure to
	  schedule directory events only for handles that were registered as
	  directory.
	* thunar-vfs/thunar-vfs-unlink-job.c(thunar_vfs_unlink_job_execute):
	  Ignore ENOTDIR errors when collecting the files to delete.
	* thunar-vfs/thunar-vfs-exec.c(tvsn_startup_timeout),
	  (thunar_vfs_exec_on_screen): Don't use libsn functions outside the
	  GDK lock.
	* thunar/thunar-file.{c,h}: Inline the most trivial methods.
	* thunar-vfs/thunar-vfs-user.{c,h}: Implement ThunarVfsUser and 
	  ThunarVfsGroup directly for local user/group management.

2005-10-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.c
	  (thunar_clipboard_manager_paste_path_list): Fix possible segmentation
	  fault.

2005-10-27	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-interactive-job.{c,h}: Add a VFS monitor pointer
	  to the interactive job, which will be used by the derived classes to
	  communicate fs changes to the application.
	* thunar-vfs/thunar-vfs-unlink-job.c(thunar_vfs_unlink_job_remove): Feed
	  deleted events into the VFS monitor whenever a file was successfully
	  unlinked from the file system, so the application can be updated even
	  if no file system monitoring mechanism like FAM or Gamin is available.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c: Add
	  the "Delete file(s)" operation to the user interface.

2005-10-27	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add optional check for libstartup-notification-1.0.
	* thunar-vfs/thunar-vfs-exec.{c,h}, thunar-vfs/Makefile.am: Add optional
	  support for startup notification.
	* thunar-vfs/thunar-vfs-info.c,
	  thunar-vfs/thunar-vfs-mime-application.c: Use the thunar-vfs-exec
	  module.
	* thunar-vfs/thunar-vfs-transfer-job.c: Don't include
	  thunar-vfs-sysdep.h anymore.
	* po/POTFILES.in: Remove thunar-vfs-sysdep and add thunar-vfs-exec.

2005-10-22	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-config.c: Fix typo.
	* thunar-vfs/thunar-vfs-config.{c,h.in}, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs.symbols, thunar-vfs/abicheck.sh,
	  thunar-vfs/thunar-vfs.h, configure.in.in: Add support for version
	  checking to the Thunar-VFS library.
	* thunar-vfs/*.[ch], thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs.symbols: Replace ThunarVfsURI with ThunarVfsPath
	  for the first version and thereby limit the functionality to local
	  files, which in turn means there's no trash and no computer folder.
	  This will increase the chance that Thunar will be ready for the Xfce
	  4.4.0 release.
	* thunar/*.[ch], thunar/Makefile.am: Use ThunarVfsPath instead of
	  ThunarVfsURI.
	* tests/test-thunar-vfs-path.c, tests/test-thunar-vfs-uri.c,
	  tests/Makefile.am: Replace the ThunarVfsURI test case with a new
	  ThunarVfsPath test case.
	* tests/test-thunar-vfs-volume-bsd.c: Properly initialize and shutdown
	  the Thunar-VFS library.
	* po/POTFILES.in: Update the file list.
	* docs/: Sync the documentation with the changes.
	* configure.in.in: Don't use -fvisibility=hidden as that causes trouble
	  with inline functions that are also implemented and exported by the
	  library. Instead we explicitly mark internal functions with
	  G_GNUC_INTERNAL.

2005-10-03	Benedikt Meurer <benny@xfce.org>

	* THANKS, configure.in.in, po/es.po: Add spanish translations, thanks
	  to Pablo Hernández-M. Saiz <homeless3d@gmail.com>.

2005-10-02	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c: Fire notifications asynchronously, so
	  events can be injected from threads other than the main thread. This
	  also fixes problems with Gamins kqueue/inotify backends.

2005-10-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Don't update the name label/window title unless the file name has
	  changed.

2005-09-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-launcher.c(thunar_launcher_update): Use mnemonics for
	  the "Open"/"Execute" action.
	* po/de.po: Add initial, incomplete translations.

2005-09-27	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Substitute platform flags properly.
	* thunar/Makefile.am: Don't delete thunar-thumbnail-frame.h.
	* thunar/thunar-standard-view.c(thunar_standard_view_selection_changed):
	  Use ngettext() for the Cut/Copy File(s) actions.
	* thunar/thunar-file.{c,h}: Add new virtual method get_actions(), which
	  is used to support custom actions for certain files (e.g. the Empty
	  Trash Bin action for the trash file).
	* thunar/thunar-application.{c,h}: Add thunar_application_delete_uris()
	  to be able to easily delete arbitrary files.
	* thunar/thunar-trash-file.c(thunar_trash_file_new): Use
	  thunar_file_destroy() instead of gtk_object_destroy().
	* thunar/thunar-trash-folder.c: Implement the get_actions() method with
	  the "Empty Trash Bin" action.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c:
	  Extend the extension menu merge mechanism to also load custom actions
	  provided by ThunarFile implementations.
	* thunar/thunar-file.c(thunar_file_accepts_uri_drop): Fix typo.
	* thunar/thunar-trash-folder.c: Watch files for changes.
	* thunar/thunar-favourites-view.c
	  (thunar_favourites_view_button_press_event): Add custom actions to the
	  favourite context menu.
	* TODO: Drop completed item.
	* configure.in.in: Disable strict aliasing if debugging is enabled and
	  the compiler supports the -fno-strict-aliasing switch.
	* po/*.po: Update translations.
	* main.c(main): Initialize file properly.
	* thunar/thunar-file.c(thunar_local_file_is_renameable): Don't permit
	  users to rename root nodes.
	* thunar/thunar-open-with-action.c(thunar_open_with_action_menu_mapped):
	  Use "Other Application..." instead of just "Other...".

2005-09-23	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c(thunar_details_view_button_press_event),
	  thunar/thunar-icon-view.c(thunar_icon_view_button_press_event): Open
	  folders in new windows on double middle-click events.

2005-09-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Fix typo.

2005-09-22	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-*.c: Documentation tweaks.
	* configure.in.in, docs/reference/Makefile.am,
	  docs/reference/thunar-vfs/: Prepare Thunar-VFS reference manual.
	* thunar/thunar-list-model.c(thunar_list_model_get_statusbar_text):
	  Use ngettext() for the statusbar text.
	* thunar/thunar-launcher.c(thunar_launcher_update): Use ngettext() for
	  the "Open in n New Windows" menu label.
	* thunar/thunar-launcher.c(thunar_launcher_open_new_windows): Use
	  ngettext() for the question whether to open n separate windows.
	* thunar/thunar-launcher.c(thunar_launcher_open_uris): Use ngettext()
	  to format the error message when opening multiple URIs at once
	  failes.
	* po/*.po: Update po files.
	* configure.in.in, examples/open-terminal-here/Makefile.am,
	  thunar-vfs/Makefile.am, thunar/Makefile.am, thunarx/Makefile.am:
	  Don't add debugging and visibility flags to CFLAGS, CPPFLAGS and
	  LDFLAGS, but use PLATFORM_CFLAGS, PLATFORM_CPPFLAGS and
	  PLATFORM_LDFLAGS instead to avoid trouble with certain conftests
	  when checking the distribution.

2005-09-22	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-trash.h: Fix typo.
	* thunar/thunar-chooser-dialog.c(thunar_chooser_dialog_response): Handle
	  absolute paths properly for custom commands.

2005-09-20	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Load the supported mime types for the
	  applications.
	* thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Add a new constructor
	  thunar_vfs_mime_application_new_from_file() for the special case
	  where a particular file should be loaded by path.
	* thunar-vfs/thunar-vfs-mime-application.c
	  (thunar_vfs_mime_application_equal): Properly initialize the
	  application variables.
	* thunar-vfs/thunar-vfs-mime-application.c
	  (thunar_vfs_mime_application_lookup_icon_name): Permit applications
	  to specify absolute paths for the icon name.
	* thunar-vfs/thunar-vfs-mime-database.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Extend the mime database by a new
	  method thunar_vfs_mime_database_set_default_application(), which is
	  used to set the default application for a given mime type.
	* thunar-vfs/thunar-vfs-sysdep.c(_thunar_vfs_sysdep_parse_exec): Fix
	  typo to properly execute applications that require a terminal.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_applications): Always prepend the
	  default applications for the given mime info to the list returned
	  from this method.
	* thunar/thunar-favourites-model.c(thunar_favourites_model_save): Use
	  g_mkstemp() to create the temporary file.
	* thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Add public flags to the mime
	  applications.
	* thunar-vfs/thunar-vfs-mime-application.c
	  (thunar_vfs_mime_application_new_from_file): Strip off known suffixes
	  for image files if a themed icon is specified. This way we can
	  work-around quite a few broken .desktop files.
	* thunar-vfs/thunar-vfs-mime-database.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Support the addition of custom
	  applications using thunar_vfs_mime_database_add_application() in
	  a way compatible to what Nautilus does (which is actually quite a
	  mess).
	* thunar/thunar-chooser-dialog.{c,h}, thunar/thunar-chooser-model.{c,h},
	  thunar/Makefile.am: Import the "Open With" dialog based on the two
	  classes ThunarChooserDialog and ThunarChooserModel, which in turn are
	  based on the new functionality provided by Thunar-VFS, and thereby
	  permit the user to associate applications with files (actually mime
	  types) and add new applications.
	* thunar/thunar-launcher.c: Connect the "Open With Other" action to
	  the new ThunarChooserDialog.
	* thunar/thunar-favourites-model.c: Document the drag source functions.
	* README: Add a list of dependencies for Thunar.
	* TODO: Drop completed items.

2005-09-17	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-database.c: Include exo/exo.h.

2005-09-15	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-bsd.c,
	  thunar-vfs/thunar-vfs-volume-sysv.c: Include thunar-vfs-alias.h.

2005-09-15	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-progress-dialog.c: Use GObject for the job instead of
	  ExoObject.

2005-09-15	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-interactive-job.{c,h},
	  thunar-vfs/thunar-vfs-job.{c,h},
	  thunar-vfs/thunar-vfs-listdir-job.{c,h},
	  thunar-vfs/thunar-vfs-transfer-job.{c,h},
	  thunar-vfs/thunar-vfs-unlink-job.{c,h}: Allocate a new main loop for
	  every running job so we can terminate them properly and be sure to
	  run the finalize method in the main thread. This enables us to use
	  arbitrary GObjects within a job without having to worry about the
	  reference counting problem in GLib 2.6. The jobs are GObjects as well
	  now to easily support language bindings and allow us to drop the
	  problematic ExoObject class.

2005-09-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-launcher.c(thunar_launcher_open_files): Use
	  g_object_unref() instead of exo_object_unref().

2005-09-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs-mime-database.c, thunar-vfs/thunar-vfs.symbols,
	  thunar/thunar-launcher.c, thunar/thunar-marshal.list,
	  thunar/thunar-open-with-action.c: Turn ThunarVfsMimeApplication into
	  a boxed type.
	* thunar/thunar-window.c: Apply Daichis patch to make the dynamic
	  actions titles translatable (#1153).

2005-09-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.c, thunar-vfs/thunar-vfs-mime-database.c,
	  thunar-vfs/thunar-vfs-mime-info.{c,h}, thunar-vfs/thunar-vfs-thumb.c,
	  thunar-vfs/thunar-vfs.symbols: Turn ThunarVfsMimeInfo into a boxed
	  type.
	* thunar-vfs/thunar-vfs-mime-provider.c: No need to provide fallback
	  implementations for the virtual methods, as both providers implement
	  all virtual methods.
	* thunar-vfs/thunar-vfs-mime-provider.{c,h},
	  thunar-vfs/thunar-vfs-mime-cache.c,
	  thunar-vfs/thunar-vfs-mime-legacy.c,
	  thunar-vfs/thunar-vfs-mime-database.c: Derive the MIME providers from
	  GObject instead of ExoObject.
	* thunar-vfs/thunar-vfs-mime-database.c, thunar-vfs/thunar-vfs-info.c,
	  thunar-vfs/thunar-vfs-thumb.c, thunar-vfs/thunar-vfs.c,
	  thunar/thunar-computer-folder.c, thunar/thunar-file.c,
	  thunar/thunar-open-with-action.c, thunar/thunar-trash-folder.c:
	  Derive ThunarVfsMimeDatabase from GObject instead of ExoObject.

2005-09-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-sysdep.h: Add inline atomic operations.
	* thunar-vfs/thunar-vfs-info.c, thunar-vfs/thunar-vfs-listdir-job.c,
	  thunar-vfs/thunar-vfs-mime-application.c,
	  thunar-vfs/thunar-vfs-mime-database.c,
	  thunar-vfs/thunar-vfs-monitor.c,
	  thunar-vfs/thunar-vfs-sysdep.c, thunar-vfs/thunar-vfs-thumb.c,
	  thunar-vfs/thunar-vfs-transfer-job.c, thunar-vfs/thunar-vfs-trash.c,
	  thunar-vfs/thunar-vfs-uri.{c,h}, thunar-vfs/thunar-vfs.c,
	  thunar-vfs/thunar-vfs.symbols, thunar/thunar-clipboard-manager.c,
	  thunar/thunar-computer-folder.c, thunar/thunar-favourites-model.c,
	  thunar/thunar-favourites-view.c, thunar/thunar-file.c,
	  thunar/thunar-icon-factory.c, thunar/thunar-local-file.c,
	  thunar/thunar-local-folder.c, thunar/thunar-location-buttons.c,
	  thunar/thunar-path-entry.c, thunar/thunar-standard-view.c,
	  thunar/thunar-statusbar.c, thunar/thunar-trash-file.c, 
	  thunar/thunar-trash-folder.c: Turn ThunarVfsURI into a boxed type
	  to make language bindings easier and reduce the overhead. Drop the
	  foreign host support code, as we can't use it anyways, since nearly
	  every other existing application that handles file URIs is broken
	  when it comes to file URIs with authorities. Simplify the
	  thunar_vfs_uri_to_string() method again and return only escaped
	  versions of the URI.
	* thunar/thunar-path-entry.c(thunar_path_entry_set_current_file):
	  Display file URIs for non-UTF8 paths.
	* tests/test-thunar-vfs-uri.c, tests/test-thunar-vfs-volume-bsd.c:
	  Update the tests.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-info.h,
	  thunar-vfs/thunar-vfs-types.h: Move the system-dependent types to
	  thunar-vfs-types.h.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols:
	  Turn ThunarVfsInfo into a boxed type.

2005-09-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Sort the extension actions by their
	  names instead of their labels.
	* thunar/thunar-extension-manager.c(thunar_extension_class_init):
	  Properly initialize the parent class reference.
	* examples/open-terminal-here/Makefile.am: Don't specify CLEANFILES
	  explicitly.
	* thunar/thunar-file.c(thunar_file_get_mime_info): Documentation fix.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_info_for_file): When generating an
	  application/x-extension-<EXT> mime type and no valid extension is
	  found for the file name, fallback to the whole filename as suggested
	  by jrb. This way we can make sure that we will never return
	  application/octet-stream from this method and thereby allow the
	  program chooser to set default applications for every mime type
	  used in the file manager.
	* thunar/Makefile.am: Add $(top_builddir) to INCLUDES.

2005-09-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Sort the extension actions by their
	  labels prior to adding them to the UI manager.

2005-09-11	Benedikt Meurer <benny@xfce.org>

	* examples/open-terminal-here/open-terminal-here.c
	  (open_terminal_here_activate): Remove unused debug statement.

2005-09-09	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Substitute version information.
	* thunar/thunar-window.c(thunar_window_action_about): Escape the
	  copyright sign.
	* thunar/thunar-gdk-pixbuf-extensions.{c,h},
	  thunar/thunar-gtk-extensions.{c,h}, thunar/thunar-desktop-view.c,
	  thunar/thunar-icon-factory.c, thunar/thunar-icon-renderer.c,
	  thunar/thunar-standard-view.c, thunar/thunar-window.c,
	  thunar/Makefile.am: Merge the GdkPixbuf and GTK+ extensions into
	  the thunar namespace.
	* configure.in.in, thunarx/: Import the initial extensions library.
	* configure.in.in, docs/Makefile.am, Makefile.am, docs/reference/:
	  Import the reference manual for the extensions library.
	* thunar/thunar-file.c: Implement the ThunarxFileInfo interface.
	* thunar/thunar-extension-manager.{c,h}, thunar/Makefile.am: Import the
	  ThunarExtensionManager class.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c: Add
	  support for context menu providers to the standard views.
	* po/POTFILES.in: Add thunarx/thunarx-property-page.c here.
	* thunar/thunar-properties-dialog.c: Add support for property page
	  providers here.
	* Makefile.am, configure.in.in, examples/Makefile.am,
	  examples/open-terminal-here/: Add "Open Terminal Here" menu provider
	  example.

2005-09-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Don't emit the "row-inserted" and
	  "row-deleted" signals when changing folders unless somebody
	  is actually interested in these signals.
	* thunar/thunar-list-model.c(thunar_list_model_set_folder): Actually
	  specify the correct path when deleting the previous items from the
	  model.
	* thunar/thunar-local-folder.c(thunar_local_folder_file_destroy): No
	  need to request a new list from GLib here.
	* thunar/thunar-local-folder.c(thunar_local_folder_infos_ready): Don't
	  add new files to two lists. Instead add them to one temporary list
	  and append the temporary list to the internal list later.
	* thunar/thunar-local-file.c(thunar_local_file_get_for_info): Fix an
	  invalid instance cast check.
	* thunar/thunar-file.c: Manage the file cache directly without using
	  weak references to avoid problems and save memory (weak references
	  are allocated in the GObject dataset).

2005-09-06	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.c: Store the VFS monitor handle in the
	  GObject dataset as it's used only for explicit file monitoring (e.g.
	  for the properties dialog).
	* thunar/thunar-list-model.c(thunar_list_model_get_iter): Skip every
	  second comparison for iter lookups.
	* icons/, configure.in.in, Makefile.am: Add the Thunar icon.

2005-09-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c: Invoke the parent's finalize method, as
	  that will be required for language bindings once we have weak/toggle
	  references for ExoObject.
	* thunar/thunar-local-file.c(thunar_local_file_rename): Re-register with
	  the VFS monitor if the rename succeeds.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_hash): Don't hash the
	  hostname if it's NULL.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_equal): We don't need to
	  query the hostname string here, as local files will always have host
	  set to NULL.
	* tests/test-thunar-vfs-uri.c(main): Extend the ThunarVfsURI test.
	* pixmaps/, Makefile.am, configure.in.in, thunar/thunar-window.c,
	  thunar/Makefile.am: Initial idea for the about dialog logo.

2005-09-05	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs-listdir-job.c:
	  Use GList instead of GSList to manage ThunarVfsInfo lists, which
	  increases data locality and decreases memory usage (as there's no
	  need to keep another allocator around any more).
	* thunar/thunar-computer-folder.c, thunar/thunar-folder.{c,h},
	  thunar/thunar-list-model.c, thunar/thunar-local-folder.c,
	  thunar/thunar-trash-folder.c: Use GList instead of GSList to manage
	  the list of files for a folder for the same reason.
	* thunar/thunar-file.{c,h}, thunar/thunar-folder.c,
	  thunar/thunar-local-folder.c, thunar/thunar-local-file.c: ThunarFile
	  is derived from GObject now, instead of GtkObject.
	* thunar/thunar-list-model.c: No need to implement GtkTreeDragDest,
	  as that's handled in ThunarStandardView.

2005-09-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-launcher.c, thunar/thunar-list-model.c,
	  thunar/thunar-open-with-action.c, thunar/thunar-properties-dialog.c:
	  We don't need to check the result of thunar_file_get_mime_info() any
	  more as it's garantied to be a valid ThunarVfsMimeInfo.

2005-09-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-computer-folder.c, thunar/thunar-file.c,
	  thunar/thunar-list-model.c: Always return a valid ThunarVfsMimeInfo
	  from the get_mime_info() method.

2005-09-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.{c,h}: Drop the unused icon columns from the
	  ThunarListModel.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Generate
	  the colorized/spotlighted version of the icon only if the icon area
	  is affected by expose event.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c(escape): And of course, we need to escape
	  the '+' and '%' characters in URIs.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c(escape): Also escape '&' in URIs.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-thumb.{c,h}: Implement the store thumbnail
	  functionality.
	* thunar-vfs/thunar-vfs-sysdep.c, thunar-vfs/thunar-vfs-trash.c,
	  thunar-vfs/thunar-vfs-uri.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  thunar/thunar-clipboard-manager.c, thunar/thunar-favourites-model.c,
	  thunar/thunar-favourites-view.c, thunar/thunar-file.c,
	  thunar/thunar-location-buttons.c, thunar/thunar-path-entry.c,
	  thunar/thunar-standard-view.c, thunar/thunar-statusbar.c: Improve
	  the thunar_vfs_uri_to_string() method to support UTF-8 URI strings
	  and escaping of URIs, which is required for proper Drag'n'Drop
	  interaction with other applications.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}: Store the watch count in the GObject data
	  list, as it seldomly used.
	* thunar/thunar-file.c(thunar_file_load_icon): Try to load the "loading"
	  icon directly instead of checking the icon theme first.
	* thunar/thunar-standard-view.c: Revert the "num-files" special handling
	  as it leads to a bug where the actions aren't updated properly when
	  changing directories.
	* thunar-vfs/thunar-vfs-sysdep.h: Fix typo.
	* thunar-vfs/thunar-vfs-transfer-job.c,
	  thunar-vfs/thunar-vfs-unlink-job.c: Unlink thumbnails after removing
	  a file to reduce the junk in ~/.thumbnails/.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_get_md5sum): Escape the
	  path properly, so the thumbnail paths we determine are equal to those
	  of other file managers.

2005-09-04	Benedikt Meurer <benny@xfce.org>

	* thunar/Makefile.am: Add the thumbnail frame source image to the
	  distribution.
	* thunar/thunar-icon-factory.c: Add some more cleverness in determining
	  whether or not to add a frame to a thumbnail.

2005-09-03	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs.symbols, thunar-vfs/thunar-vfs-mime-info.{c,h},
	  thunar-vfs/thunar-vfs-mime-database.c: Determine media and subtype of
	  a ThunarVfsMimeInfo on-demand.
	* thunar-vfs/thunar-vfs-info.c(thunar_vfs_info_new_for_uri): Move the
	  .desktop file handling to the regular file case.
	* thunar-vfs/thunar-vfs-thumb.{c,h}, thunar-vfs/thunar-vfs.symbols,
	  thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs.h: Import the
	  ThunarVfsThumbFactory class, which implements the freedesktop
	  thumbnail management specification.
	* thunarx/thunarx-gdk-pixbuf-extensions.{c,h}: Add new helper function
	  thunarx_gdk_pixbuf_frame(), which is used to embed an arbitrary image
	  into a frame (e.g. for thumbnails).
	* thunar/thunar-favourites-model.c, thunar/thunar-file.c,
	  thunar/thunar-icon-factory.{c,h}, thunar/thunar-icon-renderer.c,
	  thunar/thunar-list-model.c, thunar/thunar-location-buttons.c,
	  thunar/thunar-window.c: Make sure we don't leak the default icon
	  factory instance on exit.
	* thunar/Makefile.am, thunar/thunar-thumbnail-frame.{h,png}: Import
	  the thumbnail frame image used by Nautilus.
	* thunar/thunar-icon-factory.{c,h}: Add thumbnail loading support to
	  the icon factory and reorganize the internals a bit.
	* thunar/thunar-file.c: Load thumbnails for regular if possible.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Don't
	  scale the icon if it fits into the cell area.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-text-renderer.c: Select the text prior to the last
	  dot when starting to edit a cell.
	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Place input focus on the name entry widget and select the text prior
	  to the last dot.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-open-with-action.c(thunar_open_with_action_activated):
	  Remove obsolete code.
	* thunar/thunar-standard-view.c
	  (thunar_standard_view_button_release_event): Don't popup the context
	  menu using the just released button, as that would render the items
	  unclickable.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Avoid going through the selection
	  changed handling whenever the number of files in a model changes,
	  as the only thing that needs updating here is the statusbar text.
	* thunar-vfs/thunar-vfs-mime-cache.c
	  (thunar_vfs_mime_cache_lookup_parents): Fix the offset from which the
	  parent mime type name is read.
	* thunar-vfs/thunar-vfs-mime-cache.c(cache_node_lookup_suffix):
	  Optimize the tail-recursive suffix lookup.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_info_for_file): Use fast stack memory
	  for the extattr and content lookups.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-factory.c(thunar_icon_factory_lookup_icon): Add
	  support to load icons from absolute paths.
	* thunar/thunar-local-file.c(thunar_local_file_get_icon_name): Allow the
	  VFS layer to pass absolute paths for the file icon hint. This is
	  required for some .desktop files, that specify absolute icon paths
	  instead of themed icon names.
	* thunar/thunar-location-buttons.c(thunar_location_buttons_make_button):
	  Don't permit location buttons to grab the focus.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c: Be sure to override the default
	  drag-data-delete handler of ExoIconView/GtkTreeView.
	* thunar/thunar-icon-view.c(thunar_icon_view_get_path_at_pos): The
	  exo_icon_view_get_path_at_pos() method really accepts widget
	  coordinates now, like GtkTreeView does, so we don't need to translate
	  the widget coordinates to icon window coordinates first.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_get_dest_actions):
	  Set the drop-file icon renderer property only if we have a valid
	  drag action.
	* thunar/thunar-local-file.c(thunar_local_file_accepts_uri_drop): Do
	  not accept directory drops if the directory isn't writable.

2005-09-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Prelight
	  drop destination icons.

2005-09-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-computer-folder.c, thunar/thunar-desktop-view.c,
	  thunar/thunar-favourites-model.c, thunar/thunar-file.{c,h},
	  thunar/thunar-list-model.c, thunar/thunar-local-file.c,
	  thunar/thunar-location-buttons.c, thunar/thunar-path-entry.c,
	  thunar/thunar-properties-dialog.c, thunar/thunar-standard-view.c,
	  thunar/thunar-statusbar.c, thunar/thunar-trash-file.c,
	  thunar/thunar-trash-folder.c, thunar/thunar-window.c: Add an icon
	  state parameter to the ThunarFile icon loader, which allows to grab
	  icons for a certain state from a given file.
	* thunar/thunar-file.c: Drop the cached icon, as the ThunarIconFactory
	  does this pretty well already and we don't need to keep an additional
	  cached version of every file's icon.
	* thunar/thunar-icon-renderer.c, thunar/thunar-standard-view.c: Use the
	  drop icon for the views while dragging over an item/row in the view.

2005-09-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-listdir-job.c: Fix the pre-sorting of files, so
	  upper layers always receive the info list sorted by name.
	* thunar/thunar-details-view.c(thunar_details_view_button_press_event),
	  thunar/thunar-icon-view.c(thunar_icon_view_button_press_event): Don't
	  popup the context menu immediately on right-clicks, but schedule the
	  menu popup using thunar_standard_view_queue_popup().
	* thunar/thunar-standard-view.{c,h}: Add the ability to start a drag
	  operation using the right mouse button.
	* thunar/thunar-file.{c,h}: Add virtual method accepts_uri_drop() and
	  method thunar_file_accepts_uri_drop(), which are used to determine
	  whether it is possible to drop a certain list of ThunarVfsURIs on
	  a given ThunarFile (using a set of actions specified by the drag
	  source).
	* thunar/thunar-local-file.c: Implement the accepts_uri_drop() method
	  for local file handling.
	* thunar/thunar-progress-dialog.c(thunar_progress_dialog_ask),
	  (thunar_progress_dialog_error): Be sure to display the progress dialog
	  prior to opening an error or question dialog.
	* thunar-vfs/thunar-vfs-info.c(thunar_vfs_info_rename): Fix gcc4
	  warning.
	* thunar-vfs/thunar-vfs.symbols: Add missing thunar_vfs_rename symbol.
	* thunar/thunar-favourites-model.c(thunar_favourites_model_get_value):
	  Work-around a compiler bug with newer gcc versions.
	* thunar/thunar-standard-view.{c,h}: Turn ThunarStandardView into a
	  valid drop site with support for text/uri-list drops.
	* thunar/Makefile.am, thunar/thunar-dnd.{c,h}: Add DnD helper functions,
	  which can be used by other modules as well (e.g. for the desktop
	  view).

2005-08-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.c: Drop the icon caching from the
	  favourites model as it causes trouble with icon theme changing and
	  is unnecessary since the ThunarIconFactory already performs quite
	  well at caching icons.
	* thunar/thunar-location-buttons.c: Reload the icons for the location
	  buttons when the active icon/gtk theme is changed.

2005-08-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.c(thunar_local_folder_infos_ready): Do not
	  compare the newly inserted files, as they are garantied to be
	  different from each other.
	* thunar-vfs/thunar-vfs-info.c(thunar_vfs_info_matches): Move the URI
	  comparison to the end as that takes most of the time.
	* thunar-vfs/thunar-vfs-listdir-job.c(thunar_vfs_listdir_job_execute):
	  Pre-sort the names in ascending order to get faster inserts for the
	  usual case where the user sorts its views by name.

2005-08-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c: Adjust the "editability" of the
	  name entry widget depending on whether the file can be renamed.
	* thunar-vfs/thunar-vfs-info.{c,h}: Add methd thunar_vfs_info_rename()
	  which supports renaming of regular files and .desktop files.
	* thunar/thunar-file.{c,h}: Add _thunar_file_cache_rename() to support
	  ThunarFile implementations that provide the thunar_file_rename()
	  method.
	* thunar/thunar-local-file.c: Add support to rename local files based
	  on thunar_vfs_info_rename().
	* thunar/thunar-properties-dialog.c: Allow users to rename files using
	  the name entry widget.
	* thunar/thunar-list-model.c(thunar_list_model_file_changed): Re-sort
	  the model as the file may have changed its name.
	* thunar/thunar-list-model.c(thunar_list_model_sort): Avoid the GArray
	  overhead and try to use stack memory if possible.
	* thunar/thunar-standard-view.h, thunar/thunar-details-view.c,
	  thunar/thunar-icon-view.c: Add virtual methods set_cursor() and
	  scroll_to_path() to the ThunarStandardView class and implement them
	  in ThunarDetailsView and ThunarIconView.
	* thunar/thunar-standard-view.c: Implement the "Rename" action based
	  on the inline editing capabilities of ThunarTextRenderer.

2005-08-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-view.c(thunar_favourites_view_init): Use
	  auto-sizing for the favourites column.
	* thunar/thunar-favourites-model.{c,h}, thunar/thunar-favourites-view.c:
	  Add support for Gtk+ 2.8 shortcuts, which allow the user to assign
	  aliases with mutable shortcuts.

2005-08-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-standard-view.{c,h}: Turn the name cell renderer into
	  a property of the ThunarStandardView class, so related functionality
	  can be easily shared between the icon and details views.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-window-ui.xml: Add
	  placeholder for alteration actions to the "Edit" menu in the thunar
	  window and fill this placeholder with the "Rename" action in the
	  standard view. In addition, add the "Rename" action to the file
	  context menu.
	* thunar/thunar-file.{c,h}: Add rename functionality to the ThunarFile
	  interface.
	* thunar/thunar-standard-view.c(thunar_standard_view_selection_changed):
	  Enable the "Rename" action if exactly one file is selected and that
	  file is renameable.

2005-08-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.c: Use GLib linked lists to manage
	  the favourites.
	* thunar/thunar-favourites-model.c: Monitor the bookmarks file for
	  changes.

2005-08-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add side pane
	  selection to the View menu.

2005-08-29	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Check for Intel MMX Intrinsics header.
	* thunarx/thunarx-gdk-pixbuf-extensions.c: Use Intel MMX Intrinsics to
	  speed up pixbuf operations, if supported by the compiler (the -mmmx
	  option in gcc).
	* thunar/thunar-window.c(thunar_window_action_location_bar_changed):
	  Apply the location bar patch submitted by Jeffs Franks
	  <jcfranks@tpg.com.au> in a slightly modified form.

2005-08-28	Benedikt Meurer <benny@xfce.org>

	* po/POTFILES.in: Remove thunar-vfs-mime.{c,h}.
	* po/*.po: Update .po files.

2005-08-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_sort): Use temporary
	  storage on the stack, rather than the heap.
	* thunar/thunar-list-model.c: Derive from GObject rather than
	  GtkObject, as we don't need GtkObject's features anymore in
	  ThunarListModel.
	* thunar/thunar-list-model.c(thunar_list_model_class_init): Use
	  EXO_PARAM_* macros rather than G_PARAM_*.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_equal): Add a check to
	  see whether the compared references refer to the same object, which
	  can happen quite often (in case of a positive match).
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_list_to_string): Prealloc
	  a buffer of 512 bytes for the URI list string representation.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_list_free): Use
	  g_list_foreach() to unref the URIs.
	* thunar/thunar-local-file.c(thunar_local_file_get_emblem_names):
	  Properly verify the parent uri when testing for the Desktop
	  directory.
	* thunar-vfs/thunar-vfs.{c,h}, thunar-vfs/Makefile.am: Drop the
	  thunar_vfs_mime_info_get() and thunar_vfs_mime_info_get_for_file()
	  methods, and merge the thunar-vfs-mime initialization into the
	  thunar-vfs initialization routines.

2005-08-28	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.{c,h}, thunar/thunar-local-file.c,
	  thunar/thunar-standard-view.c: Rename can_execute(), can_read() and
	  can_write() to is_executable(), is_readable() and is_writable() to
	  get consistent naming.
	* thunar-vfs/thunar-vfs-info.{c,h}: Add THUNAR_VFS_FILE_FLAGS_EXECUTABLE
	  to the ThunarVfsFileFlags, which will be set if a ThunarVfsInfo
	  can be executed, either as regular binary or as .desktop file.
	* thunar-vfs/thunar-vfs-mime-application.c,
	  thunar-vfs/thunar-vfs-sysdep.{c,h}: Move the Exec parsing code from
	  ThunarVfsMimeApplication to thunar-vfs-sysdep, so it can be used by
	  other modules as well.
	* thunar-vfs/thunar-vfs-info.{c,h}, thunar-vfs/thunar-vfs.symbols: Add
	  new method thunar_vfs_info_execute(), which is used to execute
	  files with a list of URIs. These method can handle both regular
	  executable files as well as .desktop files.
	* thunar/thunar-file.{c,h}, thunar/thunar-launcher.c,
	  thunar/thunar-local-file.c: Add support to execute files that are
	  marked as executable by the ThunarVfsInfo module.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_info_locked),
	  (thunar_vfs_mime_database_get_infos_for_info_locked): Be sure to
	  always unalias MIME-types prior to returning them from the mime
	  database instance. This way we don't need to care for unaliasing
	  when determining the MIME-type comment or MIME-type icon.
	* thunar-vfs/thunar-vfs-mime-database.{c,h},
	  thunar-vfs/thunar-vfs.symbols: Add new method
	  thunar_vfs_mime_database_get_infos_for_info() to the public API, to
	  allow other components to access the subclassing information.
	* FAQ, Makefile.am: Add initial items for the list of frequently asked
	  questions.
	* TODO: Remove obsolete items.

2005-08-27	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.{c,h}: Add support to pass hints from the
	  ThunarVfsInfo to the upper layers. Use these hints to pass icon and
	  name information from .desktop files.
	* thunar-vfs/thunar-vfs.symbols: Add new symbols.
	* thunar/thunar-local-file.c: Use the new hints to display appropriate
	  names and icons for .desktop files.

2005-08-27	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-trash.c: Use ThunarVfsMonitor instead of
	  polling the trash files/ directories manually.

2005-08-27	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-legacy.c: Add support for MIME-type
	  aliases and parents to the legacy implementation.
	* configure.in.in, thunar-vfs/thunar-vfs-mime-database.c: Add support
	  for determining the MIME type from an extended attribute on SunOS
	  and Linux.

2005-08-22	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c: Add drag support for the path entry icon.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add view
	  selection to the "View" menu.
	* thunar/thunar-icon-view.c(thunar_icon_view_button_press_event): Use
	  gtk_accelerator_get_default_mod_mask() rather than hardcoding
	  GDK_CONTROL_MASK.
	* thunar/thunar-details-view.c(thunar_details_view_button_press_event):
	  Add support to open the folder menu by right-clicking on an empty
	  area in the tree view.
	* thunar/thunar-details-view.c: Work-around the problem that GtkTreeView
	  resets the search column whenever the model changes.
	* thunar/thunar-standard-view.c(thunar_standard_view_grab_focus):
	  Properly forward any grab-focus request to the child view.
	* thunar/thunar-marshal.list, thunar/Makefile.am,
	  thunar/thunar-text-renderer.c: Add initial cell editing support to
	  the text renderer. We'll need a multiline entry widget for the
	  icon view.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-standard-view.c, thunar/thunar-standard-view.h: Add
	  drag source support to the standard views.
	* thunar/thunar-list-model.c: Don't implement GtkTreeDragSource, as
	  that's handled by ThunarStandardView now.

2005-08-20	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.c(thunar_vfs_job_emit): Use G_VA_COPY to
	  copy variable argument lists in a portable manner.

2005-08-19	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.{c,h}: Allow derived classes to add
	  custom actions to the user interface.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-window-ui.xml: Add
	  support for custom view item actions.
	* thunar/Makefile.am, thunar/thunar-icon-view-ui.xml,
	  thunar/thunar-icon-view.c: Add support to arrange items within the
	  icon view.
	* thunar/thunar-file.h, thunar/thunar-local-file.c: Provide an emblem
	  for the desktop folder in regular file listings.
	* thunar/thunar-icon-view.c(thunar_icon_view_init): Add 3 pixel padding
	  in vertical direction to the icon cell, to allow better placement
	  of the emblems.
	* thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Improve
	  the emblem placement and drawing code to work-around issues with
	  most icon themes, that don't provide emblems in the appropriate
	  sizes.

2005-08-19	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-statusbar.c: Drop the dependency on X11.
	* thunar/thunar-desktop-window.c: Include <gdk/gdkx.h> explicitly (since
	  that's no longer done by libexo -> libxfcegui4).

2005-08-18	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-gdk-pixbuf-extensions.{c,h}: Add new function
	  thunarx_gdk_pixbuf_spotlight(), which is used to create a
	  special icon for the Gtk prelight state.
	* thunar/thunar-icon-renderer.{c,h}, thunar/Makefile.am,
	  thunar/thunar-details-view.c, po/POTFILES.in: Rename
	  ThunarDetailsViewIconRenderer to ThunarIconRenderer, as
	  it will also be used by the icon view now.
	* thunar/thunar-text-renderer.{c,h}, thunar/Makefile.am,
	  thunar/thunar-details-view.c, po/POTFILES.in: Rename
	  ThunarDetailsViewTextRenderer to ThunarTextRenderer,
	  as it will also be used by the icon view now.
	* thunar/thunar-icon-renderer.{c,h}, thunar/thunar-text-renderer.{c,h}:
	  Add required functionality to use these renderers with the new
	  ExoIconView.
	* thunar/thunar-icon-view.c: Update to use the new ExoIconView class,
	  with the modified ThunarIconRenderer and ThunarTextRenderer.
	* thunar/thunar-launcher.h, thunar/thunar-open-with-action.h: Use
	  G_GNUC_MALLOC instead of EXO_GNUC_MALLOC.
	* thunar/thunar-window.c(thunar_window_init): Use the icon view by
	  default for testing now.
	* configure.in.in: Bump version to 0.1.2.
	* thunar/thunar-window.c(thunar_window_action_about): Switch to
	  GtkAboutDialog.

2005-08-18	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_files_added): Speed up
	  inserts if the order of the files match the current sort order, which
	  is usually the case with sorting by name.

2005-08-18	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_set_folder): Speed up
	  the removal of existing rows when changing folders. It's now O(n)
	  instead of O(n^2).
	* thunar/thunar-list-model.c: The memory chunk used for the rows is
	  now an object attribute, rather than a global variable.

2005-08-11	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-application.c
	  (thunar_vfs_mime_application_new_from_desktop_id): Use "Name" instead
	  of "GenericName" for the application's name, as the "Name" usually
	  includes the project name in addition to the functional description
	  of the application, which provides better results than having several
	  applications named "Text Editor", etc.
	* configure.in.in: Prefer Gamin over FAM to avoid the C++ dependency
	  if possible. Besides that, Gamin offers several other advantages over
	  FAM, which makes it better suitable to be used in Thunar.
	* po/POTFILES.in: Add missing source files here, and remove obsolete
	  files.
	* Thunar.desktop.in, Makefile.am, configure.in.in, po/POTFILES.in: Add
	  desktop file for Thunar.

2005-08-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-jobs.{c,h}, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs.{c,h}: Merge thunar-vfs-jobs.[ch] into
	  thunar-vfs.[ch].
	* thunar-vfs/thunar-vfs-mime-database.c, thunar/thunar-local-folder.c,
	  thunar-vfs/thunar-vfs-monitor.{c,h}, thunar/thunar-local-file.c:
	  Rename thunar_vfs_monitor_get() to thunar_vfs_monitor_get_default().
	* thunar-vfs/thunar-vfs-mime-database.{c,h},
	  thunar-vfs/thunar-vfs-mime.c, thunar-vfs/thunar-vfs-info.c,
	  thunar/thunar-launcher.c, thunar/thunar-open-with-action.c,
	  thunar/thunar-trash-folder.c: Rename thunar_vfs_mime_database_get()
	  to thunar_vfs_mime_database_get_default().
	* thunar-vfs/, thunar/Makefile.am, tests/Makefile.am, configure.in.in:
	  Turn libthunar-vfs into a shared library, so we can use it in other
	  applications/plugins as well.

2005-08-10	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bump version to 0.1.1.
	* thunar-vfs/thunar-vfs-mime-info.h: Add list handling method
	  thunar_vfs_mime_info_list_free().
	* thunar-vfs/thunar-vfs-mime-info.c(thunar_vfs_mime_info_get_comment):
	  Automatically generate a comment for 'application/x-extension-<EXT>'
	  types if no comment is found on the disk.
	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_info_for_file): Automatically generate
	  an 'application/x-extension-<EXT>' type on the fly if all other
	  checks fail and the file name has an extension.
	* thunar-vfs/thunar-vfs-mime-cache.c,
	  thunar-vfs/thunar-vfs-mime-legacy.c,
	  thunar-vfs/thunar-vfs-mime-database.c,
	  thunar-vfs/thunar-vfs-mime-provider.{c,h}: Add provider methods to
	  unalias mime types and to determine the parents of a given mime
	  type. Use these information to query additional MIME applications.

2005-08-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-database.c
	  (thunar_vfs_mime_database_get_default_application): Fall back to the
	  first available application if no explicit default application is
	  set by the user.
	* thunar/thunar-file.{c,h}, thunar/thunar-launcher.c: Rename
	  thunar_file_list_dup() to thunar_file_list_copy() to get
	  consistent naming.
	* thunar-vfs/thunar-vfs-mime-application.{c,h}: Add support methods
	  required for hashing.
	* thunar-vfs/thunar-vfs-mime-application.{c,h}: Add methods to launch
	  an application on a given list of URIs on a specific screen. Implement
	  the Desktop Entry Specification 0.9.4, except for startup notification
	  support, which will be added soon.
	* thunar/thunar-launcher.c, thunar/thunar-open-with-action.c: Allow
	  users to open files using the newly added ThunarVfsMimeApplication
	  functionality.

2005-08-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-database.c: According to the specification
	  the defaults.list may specify more than one desktop-id per MIME type,
	  where the first available application should be used.

2005-08-10	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-info.{c,h}: Add support methods required
	  for hashing.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-mime-application.{c,h},
	  thunar-vfs/thunar-vfs-mime-database.{c,h}: Add initial MIME
	  application support to the MIME database.
	* thunar/thunar-launcher.{c,h}: Add ThunarLauncher class, which provides
	  actions to launch files using appropriate MIME applications. The
	  ThunarLauncher class will also be used by the desktop view.
	* thunar/thunar-open-with-action.{c,h}: Add special action class
	  ThunarOpenWithAction, which provides a GtkAction implementation, that
	  - when used as menu - displays a submenu with all available MIME
	  applications for a given file.
	* thunar/thunar-window-ui.xml: Add a placeholder to include the launcher
	  support in the "File" menu on the main menu bar.
	* thunar/thunar-standard-view.c, thunar/thunar-standard-view-ui.xml,
	  thunar/thunar-icon-view.c, thunar/thunar-details-view.c: Add file
	  launcher support based on the new ThunarLauncher class.
	* thunar/thunar-file.{c,h}: Add methods to handle lists of ThunarFile
	  items easily.
	* thunar/thunar-icon-factory.c(thunar_icon_factory_load_icon): Handle
	  the case of passing a NULL or empty name properly.

2005-08-07	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, po/ja.po, THANKS: Add initial japanese translations,
	  thanks to Daichi Kawahata <daichik@users.sourceforge.net>. This
	  fixes #1004.

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-mime-legacy.c: Add support for the various
	  globs to the legacy mime provider.
	* thunar-vfs/thunar-vfs-mime-database.c(thunar_vfs_mime_database_init):
	  Read atleast 64 bytes from every file to reliably detect text files.
	* thunar-vfs/thunar-vfs-mime-database.c: When looking up the MIME info
	  for a given file, and the magic check doesn't return a match, we'll
	  return "application/x-executable" for every regular file that is
	  atleast 1 byte in size and has the executable bit set, as this is
	  more precise than "application/octet-stream".

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Use AC_TRY_LINK() to avoid trouble with funky
	  systems.

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add some autoconf magic to get posix_madvise()
	  working with glibc.

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.{c,h}: Determine the display_name for
	  each file info.
	* thunar-vfs/thunar-vfs-info.c(thunar_vfs_info_new_for_uri): Hand the
	  display name to thunar_vfs_mime_database_get_info_for_file(), so
	  we don't need to determine it again.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_get_display_name): Don't
	  use g_filename_display_basename(), because it may returned a somehow
	  translated file name.
	* thunar/thunar-local-file.c: Use the display_name supplied with the
	  ThunarVfsInfo rather than determining it again.

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, thunar-vfs/thunar-vfs-mime-database.c: Add support
	  to query the MIME type stored in the extended attribute
	  "user.mime_type" as specified in the Shared MIME-info spec.
	* docs/design/mime.xmi, docs/design/Makefile.am: Import description for
	  the ThunarVFS mime module.
	* thunar-vfs/thunar-vfs-mime-cache.c(thunar_vfs_mime_cache_lookup_glob):
	  Use correct offset when iterating over the GlobEntries.
	* thunar-vfs/thunar-vfs-mime-cache.c
	  (thunar_vfs_mime_cache_lookup_literal): Fix the offset returned for
	  the MIME-type name.

2005-08-06	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Check for fnmatch.h and sys/mman.h. Add checks for
	  working mmap and posix_madvise.
	* configure.in.in, thunar-vfs/xdgmime/, thunar-vfs/Makefile.am: Drop
	  the xdgmime library.
	* thunar-vfs/thunar-vfs-mime-cache.{c,h},
	  thunar-vfs/thunar-vfs-mime-database.{c,h},
	  thunar-vfs/thunar-vfs-mime-info.{c,h},
	  thunar-vfs/thunar-vfs-mime-legacy.{c,h},
	  thunar-vfs/thunar-vfs-mime-provider.{c,h},
	  thunar-vfs/thunar-vfs-mime.{c,h}: Import thread-safe replacement for
	  the xdgmime library. Works only with very recent shared-mime-info
	  right now.
	* thunar-vfs/Makefile.am: Add new files to the build framework.
	* thunar-vfs/thunar-vfs-job.c, thunar-vfs/thunar-vfs-mime.c,
	  thunar-vfs/thunar-vfs.c, thunar-vfs/thunar-vfs.h, thunar/main.c: Add
	  ability to shutdown the VFS library.

2005-08-04	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add "r" in front of the revision for the version
	  string.
	* thunar-vfs/thunar-vfs-job.{c,h}, thunar-vfs/thunar-vfs-listdir-job.c,
	  thunar-vfs/thunar-vfs-mime.{c,h}, thunar-vfs/thunar-vfs-unlink-job.c,
	  thunar-vfs/thunar-vfs-uri.{c,h}, thunar-vfs/thunar-vfs-transfer-job.c,
	  thunar/thunar-progress-dialog.c: Use ExoObject as base class for
	  ThunarVfsJob, ThunarVfsMimeInfo and ThunarVfsUri, which were fun-
	  damental types previously. ExoObject does exactly what we need
	  here, without any additional overhead. In particular, the ref-
	  counting is atomic, even with GLib < 2.7.4.
	* configure.in.in: Connect greek translations, previously committed
	  by Stavros Giannouris <stavrosg2002@freemail.gr>.
	* thunar/thunar-file.c: Use exo-noops for the defaults where possible
	  instead of providing several fallback implementations.
	* configure.in.in: Bump version number to 0.1.0.

2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar/main.c(main): Connect the translation domain and setup the
	  application name.
	* thunar/thunar-standard-view.c(thunar_standard_view_init): Setup the
	  translation domain for the action group.
	* thunar/thunar-window.c(thunar_window_init): Setup the translation
	  domain for the action group.
	* po/hu.po, configure.in.in, THANKS: Add hungarian translations, thanks
	  to Szervác Attila <sas@321.hu>.

2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-folder.c(thunar_folder_files_removed): Update docu-
	  mentation.
	* thunar/thunar-local-folder.c(thunar_local_folder_file_destroy): In-
	  voke the "files-removed" signal when a file in this folder is de-
	  stroyed.
	* thunar/thunar-list-model.c: Do not connect the "destroy" signal of
	  ThunarFile anymore, but instead we rely on the folder to emit
	  "files-removed" appropriately.
	* thunar/thunar-list-model.c(thunar_list_model_class_init): Increase
	  the number of preallocated rows.
	* po/, Makefile.am, configure.in.in: Add i18n support.

2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view-text-renderer.c: Calculating the approxi-
	  mate sizes based on the font metrics requires way too much additional
	  data memory (because Pango loads the whole fontset for this calcu-
	  lation), so we base our calculation on a sample text instead.

2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.c(thunar_vfs_job_emit_valist): Lower the
	  Job signal priority to increase the responsiveness of the user
	  interface.

2005-08-03	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view-text-renderer.{c,h}: Fast text cell
	  renderer, which provides less accurate cell area size calculation.
	* thunar/Makefile.am: Add ThunarDetailsViewTextRenderer to the build
	  framework.
	* thunar/thunar-details-view.c: Use the new text renderer.

2005-08-02	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c: Implement the
	  thunar_vfs_monitor_feed() method in a reentrant way.

2005-08-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Add sort_by_name() calls missing from the
	  initial patch.

2005-08-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.c(thunar_local_file_monitor): Actually
	  reload the file info when the VFS monitor notices a change.
	* thunar/thunar-list-model.c: Apply Jens Luedickes patch to add
	  sub-sorting on the filename.
	* thunar-vfs/thunar-vfs-monitor.c: Add missing header files.
	* configure.in.in: Drop the kevent related checks.

2005-08-02	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add check for the FAM/Gamin library.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-monitor.{c,h}: Redesign
	  the VFS monitor to use FAM if available. It also provides an interface
	  to feed the monitor with external events, which will be used by the
	  VFS jobs, which know for sure that they changed/created/deleted a
	  file. The interface is not yet implemented.
	* thunar/thunar-file.{c,h}: Add a virtual method reload(), which allows
	  external entities to trigger a reload on a ThunarFile.
	* thunar/thunar-local-file.c: Implement the reload() method.
	* thunar/thunar-local-file.c, thunar/thunar-local-folder.c: Add support
	  for the new VFS monitor.

2005-08-01	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.{c,h}: Add new method
	  thunar_list_model_get_paths_for_pattern(), which is used to
	  generate a list of GtkTreePaths for all rows matching a
	  certain pattern.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c,
	  thunar/thunar-standard-view.h: Add virtual methods select_all(),
	  unselect_all() and select_path(), and implement them in the details
	  and icon views.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c,
	  thunar/thunar-window-ui.xml: Add actions "select-all" and
	  "select-by-pattern" to the "Edit" menu.
	* thunar-vfs/thunar-vfs-trash.c: Cosmetic fix.

2005-07-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-folder.c: Properly disconnect all signal handlers
	  prior to releasing the job.
	* TODO: Remove completed items. Add note about the copy&paste behaviour
	  within the same folder.
	* thunar-vfs/thunar-vfs-transfer-job.c
	  (thunar_vfs_transfer_job_insert_base): Fix the check whether source
	  and target directory are equal.
	* thunar-vfs/thunar-vfs-user.c(thunar_vfs_user_local_class_init): Fix
	  a crash, where the thunar_vfs_local_user_parent_class wasn't initia-
	  lized properly.
	* thunar/thunar-location-buttons.c: Allow users to automatically enter
	  directories while dragging a text/uri-list over one of the folder
	  buttons.

2005-07-31	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-transfer-job.c: Include <time.h> since we
	  use the time() library call. g_chmod() will be introduced with GLib
	  2.8.0, so adjust the check.

2005-07-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.c
	  (thunar_clipboard_manager_contents_received): Properly clear the
	  CLIPBOARD selection after a paste on "cutted data". Manually trigger
	  an "owner-changed" after a successfully initiating the paste operation
	  if either the Xserver or the GTK+ version doesn't support the XFixes
	  extension.
	* thunar-vfs/thunar-vfs-transfer-job.c, configure.in.in: Add work-around
	  for systems that lack the lchmod() system call.
	* thunar/thunar-standard-view.{c,h}: Query all actions from the group
	  when initializing the view to speed up access later.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c:
	  Add a "paste-into-folder" action, which is only available from the
	  context menu.
	* autogen.sh, configure.in.in: Adopt the version numbering scheme from
	  libexo and ditch the date.

2005-07-31	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.{c,h}: Implement paste support based
	  on the recent API additions to ThunarApplication.
	* thunar/thunar-standard-view.c(thunar_standard_view_action_paste):
	  Implement the paste action based on the new functionality in
	  ThunarClipboardManager.

2005-07-31	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-unlink-job.c: Allocate dirent buffer for
	  the job instead of the stack on every thunar_vfs_unlink_item_collect
	  call to reduce the stack overhead for the threads.
	* thunar-vfs/thunar-vfs-interactive-job.c: Check the cancellation
	  state prior to invoking the "ask" signal.
	* thunar-vfs/thunar-vfs-interactive-job.{c,h}: Reduce the number
	  of "percent" signal invokations to one per second to reduce the
	  overall load on the main thread.
	* thunar-vfs/thunar-vfs-job.c(thunar_vfs_job_emit_valist): Lower
	  the priority of inter-thread signals.
	* thunar/thunar-progress-dialog.c(thunar_progress_dialog_init): Use
	  an ellipsizing label for the progress info message to avoid
	  automatic resizing of the progress dialog.
	* thunar/thunar-application.{c,h}: Add "copy" and "move" actions. Drop
	  "unlink" action, will be replaced with "trash" and "empty-trash-bin"
	  later.
	* thunar-vfs/thunar-vfs-transfer-job.{c,h}: Import the
	  ThunarVfsTransferJob class, which can only handle 'file:'-URI
	  transfers right now.

2005-07-30	Benedikt Meurer <benny@xfce.org>

	* thunarx/thunarx-gtk-extensions.{c,h}, thunarx/Makefile.am: Add a
	  helper function thunarx_gtk_action_group_set_action_sensitive(),
	  which is used to easily change the sensitivity of a GtkAction
	  within a GtkActionGroup.
	* thunar/thunar-window.c, thunar/thunar-standard-view.c: Use the newly
	  added thunarx_gtk_action_group_set_action_sensitive() method.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add new actions
	  "open-new-window" and "close-all-windows".
	* thunar/thunar-application.{c,h}: Add support for progress dialogs
	  based on the ThunarVfsInteractiveJob. Turn the ThunarApplication
	  class into a single-instance class. Add support to open new windows
	  and querying the list of currently open windows.
	* thunar/thunar-progress-dialog.{c,h}: GtkWindow already provides the
	  "icon-name" property (since Gtk 2.6), no need to duplicate that.
	* thunar/main.c: Switch to ThunarApplication.

2005-07-30	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.c, thunar/thunar-favourites-view.c,
	  thunar/thunar-location-buttons.c, thunar/thunar-statusbar.c: Fix
	  GCC 4.0 cast warnings, thanks to Jeff Franks <jcfranks@tpg.com.au>.

2005-07-30	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.c: Emit signals independant of the
	  cancellation state of the current job.
	* thunar-vfs/thunar-vfs-trash.{c,h}: Add a way to query the absolute
	  path to the .trashinfo file. Support relative paths and not just
	  filenames for several trash methods.
	* thunar-vfs/thunar-vfs-interactive-job.{c,h}: Import the
	  ThunarVfsInteractiveJob class, which provides the base for all
	  jobs, that require extended user interaction.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-marshal.list: Add
	  required marshallers, which are not provided by GObject out of
	  the box.
	* thunar-vfs/thunar-vfs-unlink-job.{c,h}: Import ThunarVfsUnlinkJob
	  class, which is used to unlink a bunch of local or trashed files.
	* thunar-vfs/thunar-vfs-jobs.{c,h}: Add public interface to the
	  various jobs provided by Thunar-VFS.
	* thunar-vfs/thunar-vfs.h: Remove the listdir job from the public
	  interface. Add the jobs and the interactive job headers.
	* thunar/thunar-progress-dialog.{c,h}: Add ThunarProgressDialog class,
	  which provides a dialog, that monitors the progress of an interactive
	  and supports the required user interaction.
	* thunar/Makefile.am, thunar/thunar-local-folder.c: Catch up with
	  Thunar-VFS changes.

2005-07-29	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.{c,h}, thunar-vfs/thunar-vfs-listdir-job.c:
	  Move "error" signal to the ThunarVfsJob class. Make proper use of the
	  virtual finalize method.
	* thunar/thunar-local-folder.c: Catch up with the ThunarVfsJob
	  interface changes.

2005-07-29	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job.{c,h}: Add a parameter spec for
	  ThunarVfsJob and derived types. Add support methods to handle
	  GValues easily.
	* thunar-vfs/thunar-vfs-listdir-job.{c,h}, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs.h, thunar/thunar-local-folder.c: Rename the
	  ThunarVfsJobListdir class to ThunarVfsListdirJob.

2005-07-25	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-sysdep.{c,h}: Add _thunar_vfs_sysdep_readdir()
	  as a portable, thread-safe readdir replacement.
	* thunar-vfs/thunar-vfs-job-listdir.c(thunar_vfs_job_listdir_execute):
	  Use _thunar_vfs_sysdep_readdir().
	* thunar-vfs/Makefile.am: Add the sysdep component to the build
	  framework.

2005-07-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-desktop-view.c,
	  thunar/thunar-details-view-icon-renderer.c,
	  thunar/thunar-favourites-model.c, thunar/thunar-file.{c,h},
	  thunar/thunar-list-model.c, thunar/thunar-location-buttons.c,
	  thunar/thunar-path-entry.c, thunar/thunar-properties-dialog.c,
	  thunar/thunar-statusbar.c, thunar/thunar-window.c: Do not hardcode
	  the default icon factory in thunar_file_load_icon. Instead the icon
	  factory is now a parameter to that function, which permits for proper
	  multi-screen support.

2005-07-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-factory.c(thunar_icon_factory_load_icon): Handle
	  the case where no XSETTINGS manager is running on one of the
	  connected screens.

2005-07-24	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.c(thunar_file_load_icon): Actually cache the result
	  of an icon lookup.
	* thunarx/, thunarx/Makefile.am, configure.in.in: Add "thunarx"
	  namespace, which contains extensions to existing frameworks and
	  various helper functions that don't fit anywhere else.
	* thunarx/thunarx-gdk-pixbuf-extensions.{c,h}: Add a method to colorize
	  a GdkPixbuf to a given GdkColor.
	* thunar/main.c, thunar/thunar-desktop-model.{c,h}, thunar/Makefile.am,
	  thunar/thunar-desktop-window.{c,h}, thunar/thunar-desktop-view.{c,h}:
	  Add proof-of-concept for the desktop support.

2005-07-23	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Fix incorrect ThunarVfsMimeInfo -> GObject
	  casts.

2005-07-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add -O0 if debugging is enabled.
	* thunar-vfs/thunar-vfs-job.{c,h}, thunar/thunar-local-folder.c,
	  thunar-vfs/thunar-vfs-job-listdir.{c,h}: Do the ThunarVfsJob
	  communication based on GSignals to provide more flexibility for
	  the various upcoming jobs.

2005-07-22	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.c, thunar/thunar-standard-view.c,
	  thunar/thunar-window.c: Remove duplicate "const"s.

2005-07-22	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.{c,h}: Use "const" parameters if possible
	  to give more hints to the compiler.
	* thunar-vfs/thunar-vfs-uri.{c,h}: Add thunar_vfs_uri_get_md5sum()
	  method to calculate the MD5 digest of an URI.
	* thunar/thunar-local-file.c: Preallocate 512 instances of the
	  ThunarLocalFile class to speed up the creation of new objects.
	* thunar/thunar-details-view.c(thunar_details_view_init): Do not
	  allow reordering of treeview columns.

2005-07-22	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add --disable-debug option, which can be used to
	  disable all kinds of debugging support, and thereby may speed up
	  the whole application in certain cases.
	* thunar/thunar-statusbar.c: Use the foreground color from the selected
	  style instead of hard coding black for the animation.

2005-07-21	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-view.c: Add support for the LINK DnD action.
	* thunar/thunar-location-buttons.c(thunar_location_buttons_init): Use
	  GDK_ACTION_LINK instead of GDK_ACTION_COPY to avoid accident copying
	  of directories.
	* thunar/thunar-statusbar.{c,h}: Implement the ThunarNavigator
	  interface.
	* thunar/thunar-statusbar.{c,h}: Add a "loading" indicator to the
	  statusbar. Add support to dnd from the shortcut indicator to the
	  favourites list.
	* thunar/thunar-window.c(thunar_window_init): Connect the statusbar as
	  a navigator. Forward the "loading" property from the view to the
	  statusbar.
	* configure.in.in: Check for additional headers. Add optional
	  dependency on cairo.

2005-07-20	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Rename to "thunar" again, as this is now the main
	  development line.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.{c,h}:
	  Add context-menu support to the standard view's action framework.
	* thunar/thunar-details-view.c: Implement context-menu support for
	  right-button click and "Menu"/"<Shift>F10" keyboard shortcuts.

2005-07-18	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-job-listdir.c(thunar_vfs_job_listdir_execute):
	  Always ignore the "." and ".." entries for directories.
	* thunar/thunar-location-bar.{c,h}: Add virtual method accept_focus(),
	  which tries to transfer keyboard focus to the location bar if it
	  provides a way for the user to enter the location as text. Else
	  the method returns FALSE and the window will open a separate dialog.
	* thunar/thunar-location-buttons.c, thunar/thunar-location-entry.c:
	  Implement the accept_focus() method on the ThunarLocationBar
	  interface appropriately.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Make the
	  location bar configurable using the action system.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.c: Do not handle the focus-out-event here,
	  as it's better to handle it in the upper layers.
	* thunar/thunar-path-entry.c(thunar_path_entry_set_current_file): Set
	  the cursor to the end and queue a redraw on the whole widget.
	* thunar/thunar-window.c: Include <thunar/thunar-location-entry.h>.
	* thunar/thunar-location-entry.{c,h}, thunar/Makefile.am: Add
	  ThunarLocationEntry, which implements ThunarLocationBar using a
	  ThunarPathEntry widget.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-path-entry.{c,h}: Add ThunarPathEntry class, which
	  implements a widget to which the user can enter paths. The auto
	  completion support is not yet provided.
	* thunar/thunar-location-dialog.{c,h}: Add ThunarLocationDialog class,
	  which provides a "Open Location"-dialog similar to the one found in
	  GtkFileChooser.
	* thunar/Makefile.am: Add new classes to the build framework.
	* thunar/thunar-window-ui.xml, thunar/thunar-window.c: Add "Open
	  Location" action to the window, which will bring up a
	  ThunarLocationDialog.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Use "thunar-threaded" instead of "Thunar-threaded".
	* tests/test-thunar-vfs-volume-bsd.c(main): Get this test working again.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* TODO: Add note to based the ThunarVfsJob communication on the GSignal
	  mechanism.
	* configure.in.in: Set tarname to be "Thunar-threaded".
	* thunar-vfs/thunar-vfs-info.{c,h}: Let thunar_vfs_info_list_free()
	  return NULL.
	* thunar-vfs/thunar-vfs-job-listdir.c: Invoke the callback every two
	  seconds, so for large directories, the user does not need to wait for
	  the whole folder to be loaded. Also sort the item names prior to
	  loading the infos.
	* thunar/thunar-local-folder.c: Support partial loading, as implemented
	  for ThunarVfsJobListdir.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-sysv.c: Fix compile warning with wrong
	  parameters to thunar_vfs_volume_manager_sysv_get_volume_by_info().
	  This fixes bug #1083.

2005-07-17	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/xdgmime/: Import the XDG mime implementation with the
	  patches from libexo.
	* thunar-vfs/: The ThunarVfsInfo framework is now thread-safe, using
	  the ThunarVfsMime framework provided by ThunarVFS.
	* thunar/: Turn Thunar into a threaded application.

2005-07-16	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-folder.{c,h}: Add a "files-removed" signal, which can
	  be used by ThunarFolder implementation to solve the reload problem,
	  and probably other problems as well (like asynchronous loading).
	* thunar/thunar-local-folder.c(thunar_local_folder_rescan): Use
	  "files-removed" instead of destroying the no longer present files,
	  so we don't accidently terminate other stuff here.
	* thunar/thunar-list-model.c: Handle the "files-removed" signal of the
	  ThunarFolder.

2005-07-15	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c: Unselect all selected items if the
	  user clicks on an empty area of the treeview and neither Control
	  nor Shift is active.
	* thunar/thunar-properties-dialog.{c,h}: Add the first draft for the
	  ThunarPropertiesDialog class, which implements a properties dialog for
	  a single file.
	* thunar/Makefile.am: Add ThunarPropertiesDialog to the build framework.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-standard-view.c,
	  thunar/thunar-window-ui.xml: Add the "properties" action to the
	  menu structure, which displays a properties dialog for the selected
	  file.

2005-07-15	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume.{c,h}: Extend the ThunarVfsVolumeManager
	  interface to be able to query the ThunarVfsVolume for a given
	  ThunarVfsInfo.
	* thunar-vfs/thunar-vfs-volume-{bsd,sysv}.c: Catch up with the latest
	  ThunarVfsVolumeManager changes.
	* thunar-vfs/thunar-vfs-volume-bsd.c(thunar_vfs_volume_bsd_new): Add
	  support for SCSI direct access devices.
	* thunar/thunar-file.{c,h}: Add thunar_file_get_volume() to be able
	  to query the ThunarVfsVolume for a given ThunarFile, if possible.
	* thunar/thunar-local-file.c: Implement the newly added get_volume()
	  method based on the ThunarVfsVolumeManager.
	* thunar/thunar-list-model.c: Use the new volume related functionality
	  to display the free space of the currently active directory in the
	  statusbar.

2005-07-15	Benedikt Meurer <benny@xfce.org>

	* docs/papers/HackingOnThunar.odt: Improve the "Hacking on Thunar"
	  guide.
	* thunar-vfs/thunar-vfs-volume.{c,h}: Change the icon lookup mechanism
	  to return an icon name instead of a GtkIconInfo object. Also allow
	  the ThunarVfsVolume implementation to specify a custom icon by
	  overriding the lookup_icon_name() method. Add a new method
	  get_free_space() which can be used to determine the amount of free
	  space on a given volume.
	* thunar-vfs/thunar-vfs-volume-bsd.c: Catch up with the changes to
	  ThunarVfsVolume.
	* thunar/thunar-favourites-model.c: Cache icons for the favourites and
	  reload them whenever the file/volume changes. Adopt the new icon
	  lookup mechanism for ThunarVfsVolume.

2005-07-14	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view.c(thunar_standard_view_init): Add frame
	  shadow to the standard views.

2005-07-13	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-clipboard-manager.c: Fake an "owner-changed" event
	  for the clipboard if either GDK or the Xserver do not support the
	  XFixes extension.
	* thunar/thunar-standard-view.c: Monitor the associated clipboard for
	  changes. Enable the "paste" action only if the both the current
	  directory is writable and the clipboard contents are pastable.

2005-07-13	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-user.c(thunar_vfs_user_manager_init): Use
	  direct hashing instead of int hashing.
	* thunar/thunar-local-file.c(thunar_local_file_get_emblem_names): If
	  the file cannot be written, return the "noread" emblem as well.
	* thunar/thunar-file.{c,h}: Add can_execute(), can_read() and
	  can_write() methods, and a default implementation, so not every
	  class derived from ThunarFile needs to implement these methods of
	  its own.
	* thunar/thunar-standard-view.c(thunar_standard_view_selection_changed):
	  Update the "cut" and "paste" actions depending on whether the
	  current directory is writable.

2005-07-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-vfs-uri.c(thunar_vfs_uri_list_to_string): Use GString
	  to build the URI list string.
	* thunar/thunar-vfs-uri.{c,h}: Add a method thunar_vfs_uri_list_copy()
	  which duplicates a list of ThunarVfsURIs.
	* thunar-vfs/thunar-vfs-volume-bsd.c(thunar_vfs_volume_bsd_finalize):
	  Properly remove the update timer here.
	* thunar/thunar-list-model.c(thunar_list_model_remove): Perform the
	  GtkTreeModel delete operation prior to notifying the "num-files"
	  property to make sure the selection of the view is updated before
	  the standard-view requests the statusbar text for the selection.
	* TODO: Add another two issues.
	* thunar/thunar-clipboard-manager.{c,h}, thunar/Makefile.am: Add the new
	  ThunarClipboardManager class, which does the interaction with the
	  clipboard.
	* thunar/thunar-standard-view.{c,h}: Implement Copy/Cut operations based
	  on the newly added ThunarClipboardManager class.
	* thunar/thunar-standard-view-ui.xml, thunar/thunar-window-ui.xml: Add
	  clipboard operations to the "Edit" menu.

2005-07-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c: Add a readonly property "ui-manager" to the
	  ThunarWindow and use property binding to sync the UI manager with
	  the ThunarView.

2005-07-12	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-standard-view-ui.xml, thunar/thunar-window-ui.xml:
	  Specify the name in addition to the action.

2005-07-11	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-navigator.c(thunar_navigator_class_init): Use
	  EXO_PARAM_READWRITE instead of G_PARAM_READWRITE.
	* thunar/thunar-list-model.c: Fix several bugs related to incorrect
	  signal registration/removal in the hidden files handling.
	* thunar/thunar-view.{c,h}: Add a new "ui-manager" property, which is
	  set by the surrounding window for the view in question. The view in
	  turn can hook its own actions - and thereby menu and toolbar items -
	  into the ui manager, using GtkUIManager's merging capabilities.
	* thunar/thunar-window.c(thunar_window_init): Tell the main view about
	  our UI manager.
	* thunar/thunar-window-ui.xml, thunar/thunar-standard-view-ui.xml,
	  thunar/thunar-standard-view.{c,h}, thunar/Makefile.am: Add initial
	  support for menu merging to the standard view class - and thereby to
	  the icon and details view. You can now control the "show-hidden"
	  property of the main view's model from the menu bar.

2005-07-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.{c,h}: Readd the get_statusbar_text() method.
	* thunar/thunar-favourites-view.c(thunar_favourites_view_row_activated):
	  Make sure the activated row is not the separator row, as calling
	  thunar_navigator_change_directory() with NULL for the directory
	  parameter will lead to a crash.
	* thunar/thunar-standard-view.{c,h}, thunar/thunar-details-view.{c,h},
	  thunar/thunar-icon-view.{c,h}, thunar/Makefile.am: Add a new abstract
	  base class ThunarStandardView, which is inherited by ThunarIconView
	  and ThunarDetailsView. ThunarStandardView itself is derived from
	  GtkScrolledWindow. This change was made to reduce the amount of
	  duplicated code in ThunarIconView and ThunarDetailsView, and to
	  workaround the problem that Gtk style properties don't pickup the
	  custom properties for certain widgets once you have a derived class.
	* thunar/thunar-statusbar.{c,h}: Revert to the previous ThunarStatusbar
	  implementation, which has a single "text" property that is bound to
	  the "statusbar-text" property of the active view.
	* thunar/thunar-view.{c,h}: ThunarView now inherits (in terms of
	  interface inheritance) from ThunarNavigator, which will allow for
	  unified handling in ThunarWindow. In addition, the ThunarView now
	  provides a "loading" and a "statusbar-text" property (both readonly)
	  to put the view back in control of the loading process.

2005-07-07	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c: Be sure to register the type in a
	  thread-safe manner.

2005-07-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.{c,h}, thunar/thunar-favourites-view.c:
	  Also provide a GtkWindow instance to the action list generator, so
	  actions can fire dialogs if necessary.

2005-07-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.{c,h}, thunar/thunar-favourites-view.c:
	  Add possibility to remove user-defined shortcuts from the list.

2005-07-03	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.c(thunar_favourites_model_get_value):
	  The ThunarVfsVolume interface does no longer provide the "name"
	  property.
	* thunar-vfs/thunar-vfs-volume-bsd.c: Read the label from the ISO9660
	  volume descriptor block whenever a new medium is inserted and use
	  this label as name.

2005-07-02	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window-ui.xml, thunar/Makefile.am,
	  thunar/thunar-window.c: The UI description for the ThunarWindow is
	  now placed in a separate XML file for easier editing, and compiled
	  into the binary using the exo-csource utility.

2005-07-02	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add checks for functions used in the user module.
	* thunar-vfs/thunar-vfs-user.{c,h}: Add a user module to the VFS
	  library, which is extensible and performs some caching to reduce
	  the overhead caused by the underlying NSS implementation.
	* docs/papers/HackingOnThunar.odt: Add comments about the newly added
	  ThunarVfsUser module.
	* thunar-vfs/thunar-vfs-info.h: Add ThunarVfsUserId and ThunarVfsGroupId
	  typedefs.
	* thunar-vfs/thunar-vfs.h, thunar-vfs/Makefile.am: Add the new
	  ThunarVfsUser module to the build framework.
	* thunar/thunar-file.{c,h}, thunar/thunar-local-file.c,
	  thunar/thunar-trash-file.c: Add two new methods to the ThunarFile
	  class - get_group() and get_user() - and add an implementation of
	  these methods to the local and trash backends.

2005-06-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view-icon-renderer.c
	  (thunar_details_view_icon_renderer_render): Add support to render
	  the primary emblem of the given file.
	* thunar/thunar-file.{c,h}: Add support to query the list of emblems
	  for a given ThunarFile.
	* thunar/thunar-local-file.c: Implement the ThunarFile emblem support
	  for symbolic links.

2005-06-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view-icon-renderer.{c,h}: Add a custom icon
	  renderer for the details view.
	* thunar/thunar-list-model.{c,h}: Allow consumers of this model to
	  query the file for a given row.
	* thunar/Makefile.am: Add the new ThunarDetailsViewIconRenderer class
	  to the build framework.
	* thunar/thunar-details-view.c(thunar_details_view_init): Use the custom
	  icon renderer instead of the generic pixbuf renderer provided by Gtk+.

2005-06-29	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-buttons.c: Make this behave like GtkFileChooser
	  again.

2005-06-28	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-bsd.c, thunar-vfs/thunar-vfs-volume.c:
	  Remove the GObject properties from the ThunarVfsVolume interface.

2005-06-26	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-info.{c,h}: Do not automatically determine the
	  link target for ThunarVfsInfo objects. Instead, we'll add a method
	  to ThunarVfsInfo later, so modules can do this on-demand. This speeds
	  up loading directories with lots of symlinks within.
	* TODO: Remove the ThunarVfsInfo symlink item.

2005-06-26	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.{c,h}: Don't use a GObject for the
	  ThunarVfsURI class. GObject is really overhead here, as we don't need
	  anything of whats provided by GObject.
	* TODO: Add note about missing GValue handling for ThunarVfsURI.
	* TODO: Add note to fix ThunarVfsInfo to not implicitly query the
	  link target.
	* thunar-vfs/*.[ch], thunar/*.[ch]: Use thunar_vfs_uri_unref() and
	  thunar_vfs_uri_ref() instead of g_object_unref() and g_object_ref(),
	  as ThunarVfsURI is no longer a GObject derived type.
	* thunar/thunar-window.c: Make loading new directories look and feel
	  "smoother". Still not perfect.

2005-06-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.c: Use a static variable for the VFS monitor
	  instead of a class variable, that never gets freed with static types.
	* thunar/thunar-favourites-model.c: Watch the files in the favourites
	  list for changes, so that folders that no longer exists are
	  automatically removed from the list.

2005-06-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-navigator.c(thunar_navigator_get_type): Do not require
	  derived classes to inherit GtkWidget. This enables us to let arbitrary
	  classes implement the ThunarNavigator interface and therefore reduce
	  the amount of hardcoded knowledge in ThunarWindow.
	* thunar/thunar-side-pane.c(thunar_side_pane_get_type): Require derived
	  classes to inhert GtkWidget.

2005-06-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c(thunar_details_view_init): Use a
	  GtkCellRendererText instead of an ExoCellRendererEllipsizedText
	  for the name column.
	* thunar/thunar-details-view.c, thunar/thunar-icon-view.c: Set proper
	  ATK name and descriptions here.

2005-06-25	Benedikt Meurer <benny@xfce.org>

	* thunar/main.c(main): Disable thread support for now, as it's not used
	  and just slows down stuff.
	* thunar/thunar-file.{c,h}, thunar/thunar-local-file.{c,h},
	  thunar/thunar-local-folder.c, thunar/thunar-trash-file.c: Watch local
	  directories and trashed files for changes.

2005-06-25	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-location-buttons.c
	  (thunar_location_buttons_set_current_directory): Don't display the
	  real root node - the 'computer:'-node - if a sub-node is active. So
	  currently we have four distinctive possible roots for the location
	  buttons bar, which are the home directory of the user, the file system
	  root node ('file:/'), the trash root ('trash:') and the real computer
	  root node ('computer:'), which are checked in the given order.
	* thunar/thunar-list-model.c(thunar_list_model_get_value): Use slightly
	  larger icons for the details view.
	* thunar/thunar-window.c: Add preliminary menu support with 'Close'
	  and 'Go up'.

2005-06-24	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.{c,h}: Add support for the 'computer://'
	  URI.
	* thunar/thunar-trash-folder.c, thunar/thunar-local-folder.c,
	  thunar/thunar-folder.c: Drop the GObject properties, as they are
	  mostly useless here.
	* thunar/main.c(main): Use thunar_vfs_uri_new() for the optional
	  command line parameter to be able to open arbitrary URIs from the
	  command line.
	* thunar/Makefile.am: Add new class ThunarComputerFolder to the build
	  framework.
	* thunar/thunar-computer-folder.{c,h}: Add ThunarComputerFolder class,
	  which implements the 'computer:' URI. This vfolder is the root of all
	  other root folders, currently 'file:/' and 'trash:'.
	* thunar/thunar-file.{c,h}, thunar/thunar-folder.c,
	  thunar/thunar-list-model.c, thunar/thunar-local-file.c,
	  thunar/thunar-local-folder.c, thunar/thunar-statusbar.c,
	  thunar/thunar-trash-file.c, thunar/thunar-trash-folder.c: Add support
	  for the 'computer:' vfolder as overall root node. Rearrange the
	  get_size() method to be able to support objects for which no size
	  is known, currently vfolders and directories in general. The virtual
	  get_mime_info() method now automatically takes a reference on the
	  returned object for the caller.

2005-06-24	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add check for localtime_r.
	* thunar/thunar-file.{c,h}: Add support to query accessed, changed and
	  modified dates of ThunarFiles.
	* thunar/thunar-local-file.c, thunar/thunar-trash-file.c: Implement
	  the virtual get_date() method.
	* thunar/thunar-list-model.{c,h}: Add new columns accessed date,
	  modified date and mime type. Fix the sorting for the mime comment
	  column.
	* thunar/thunar-details-view.c: Display type and date modified columns
	  as well.

2005-06-23	Benedikt Meurer <benny@xfce.org>

	* docs/papers/HackingOnThunar.odt, docs/papers/Makefile.am,
	  configure.in.in, docs/Makefile.am: Add initial draft of the "Hacking
	  on Thunar" paper.

2005-06-22	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.c, thunar/thunar-local-folder.c: If for
	  some reason the constructor fails, we need to make sure to handle
	  the floating reference correctly, therefore we call gtk_object_sink()
	  instead of g_object_unref() in this case now.

2005-06-22	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-file.c, thunar/thunar-local-folder.c: Add an assertion
	  to verify that an object has a floating reference before we call
	  gtk_object_sink() on it.

2005-06-22	Benedikt Meurer <benny@xfce.org>

	* TODO: Addd new TODO items and remove solved issues.
	* thunar/Makefile.am: Add new class ThunarTrashFile to the build
	  framework.
	* thunar-vfs/thunar-vfs-monitor.c(thunar_vfs_monitor_add_info): Do not
	  use kevent for symlinks, it's way easier to watch them using regular
	  polling. This shouldn't be a problem anyways, as watching symlinks
	  is not a common case.
	* thunar-vfs/thunar-vfs-trash.{c,h}: Add functionality to handle trash:
	  URIs and determine the real path for a file in a particular trash
	  can.
	* thunar-vfs/thunar-vfs-trash.c(thunar_vfs_trash_manager_get_trashes):
	  Fix a typo where the order of arguments to the g_list_prepend()
	  function was wrong.
	* thunar/thunar-trash-file.{c,h}: Add a ThunarTrashFile class, which
	  represents a trashed file.
	* thunar/thunar-trash-folder.c: Add support for listing the contents
	  of the various trash cans, and also provide a simple proxy mechanism,
	  that automatically forwards the constructor invokation to the
	  ThunarTrashFile class if required. The trash can handling must be
	  improved, see bug #1027.

2005-06-21	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-window.c(thunar_window_set_current_directory): Use
	  thunar_file_open_as_folder() to open new folders.
	* thunar/thunar-folder.{c,h}: ThunarFolder is now an interface, which
	  can be implemented in different ways.
	* thunar/thunar-local-folder.{c,h}: The previous ThunarFolder is now
	  named ThunarLocalFolder.
	* thunar/thunar-file.{c,h}: Add thunar_file_open_as_folder() virtual
	  method, which allows the ThunarFile implementation to choose an
	  appropriate ThunarFolder implementation and thereby removes the
	  need for the surrounding modules to "guess" the correct ThunarFolder.
	* thunar/thunar-local-file.c: Implement the open_as_folder() method
	  for local files by simply instantiating a ThunarLocalFolder on the
	  file in question.
	* thunar/thunar-trash-folder.{c,h}: The ThunarTrashFile class is now
	  named ThunarTrashFolder as it really represents the trash toplevel
	  folder. It also implements the ThunarFolder interface now. The real
	  folder implementation is missing currently.
	* thunar/Makefile.am: Sync the build framework with the changes
	  described above.

2005-06-20	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-monitor.c(thunar_vfs_monitor_event): Remove
	  unused variables.
	* thunar/thunar-folder.c: Apply the same optimization concerning signal
	  id lookups and closure generations as done with ThunarListModel
	  earlier.
	* thunar/thunar-folder.c: Actually react to events on the corresponding
	  file. We still need a mode in which we'll handle errors in async
	  folder reloads.
	* thunar/thunar-local-file.c: Drop the cached MIME type whenever the
	  file changes. The MIME type will be recalculated on demand when
	  needed.
	* thunar/thunar-icon-factory.c: Instead of binding to the icon theme
	  instance's "changed" signal and risking that somebody else already
	  registered a handler earlier, we use a signal emission hook now, which
	  is garantied to be fired before any of the signal handlers are
	  invoked. See the code for details and additional comments.

2005-06-20	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-local-file.h: Add missing THUNAR_LOCAL_FILE_GET_CLASS().
	* configure.in.in: Add checks for kqueue() and required headers.
	* thunar-vfs/thunar-vfs-info.{c,h}: thunar_vfs_info_update() is now
	  part of the public API as it's used by monitor and will be used
	  by the ThunarLocalFile implementation later as well.
	* thunar-vfs/thunar-vfs-monitor.{c,h}: Add implementation for most
	  of the ThunarVfsMonitor. The current implementation uses kqueue()
	  if available with a fallback to regular polling.

2005-06-20	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c: Instead of resolving the ids for the
	  "destroy" and "changed" signals on ThunarFile everytime we need to
	  register it, we query the signal id in the constructor and remember
	  it. In addition, instead of creating a closure for every signal
	  registration on a ThunarFile, we create a closure for "changed" and
	  a closure for "destroy" in the constructor and reuse that closure
	  everytime we need to register a signal handler.
	* thunar/thunar-list-model.c: Watch hidden files for "destroy" condition
	  as well.
	* thunar/thunar-trash-file.c: Emit the "changed" signal whenever the
	  "empty" property on the trash manager changes.
	* thunar/thunar-file.{c,h}: Add a method thunar_file_changed(), which
	  is used by derived classes to emit the "changed" signal on a given
	  ThunarFile.

2005-06-19	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-trash.{c,h}: Import first implementation of a
	  trash manager into thunar-vfs. Does currently only support the "home
	  trash", but will be extended to use the volume manager in order to
	  support foreign trashes as well.
	* thunar-vfs/Makefile.am: Add the trash manager to the build framework.
	* thunar-vfs/thunar-vfs.h: Include the trash manager header.
	* thunar/thunar-trash-file.c: Make use of the experimental trash
	  manager to display the proper icon depending on whether the trash
	  is full or empty.

2005-06-19	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-statusbar.c, thunar/thunar-list-model.c,
	  thunar/thunar-favourites-model.c: Fix bug, where Thunar crashed when
	  NULL was returned for a mime info.
	* thunar/thunar-file.{c,h}: Turn this into an abstract base class, which
	  can be implemented in different ways.
	* thunar/thunar-local-file.{c,h}: Implementation of the abstract
	  ThunarFile class for local files handled by the 'file:///' URI
	  scheme.
	* thunar/thunar-trash-file.{c,h}: Implementation of the abstract
	  ThunarFile class for trashed files handled by the 'trash:///' URI
	  scheme and the trash can itself. This is currently only a boilerplate
	  and waiting for the trash backend to show up.
	* thunar/Makefile.am: Add new classes to the build framework.

2005-06-17	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-details-view.c(thunar_details_view_init): Use the
	  ellipsizing text renderer for the name column and get the sizing
	  correct.

2005-06-17	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-view.{c,h}: Further improve the interface to ease the
	  implementation and reduce the amount of duplicated code in the view
	  implementations.
	* thunar/thunar-details-view.{c,h}: Add a first implementation for a
	  details view.
	* thunar/thunar-icon-view.c: Catch up with the changes to ThunarView.
	* thunar/thunar-window.c: Test the new ThunarDetailsView.
	* thunar/Makefile.am: Add ThunarDetailsView class to the build
	  framework.

2005-06-17	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-view.{c,h}: Adjust the interface for views to be more
	  like the FilerView interface, which makes things slightly easier and
	  adds more flexibility for the statusbar. Also the "list-model"
	  property is now named "model", which is the easiest way for both
	  ExoIconView and GtkTreeView, and it's safe to name it that way, as
	  the ThunarView interface is the only way to change models anyways.
	* thunar/thunar-list-model.{c,h}: Drop the statusbar text generator.
	  It's now handled completely within the ThunarStatusbar class, which
	  provides more flexibility.
	* thunar/thunar-statusbar.{c,h}: Each statusbar instance is now
	  associated with a ThunarView instance and automatically updates the
	  status text according to the view.
	* thunar/thunar-icon-view.c: Implement modified ThunarView interface,
	  which makes things very easy here for now.
	* thunar/thunar-window.c: Catch up with the changes to the other
	  classes.

2005-06-15	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-icon-factory.c: Implement the recently used list using
	  a circular buffer. This saves us from having to memmove() the list
	  content on every icon lookup.
	* thunar/thunar-window.c(thunar_window_set_current_directory): Use
	  a simple optimization when loading new folders into a view. See the
	  code comments for details about the trick.

2005-06-14	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Depend on GLib 2.6 for now.

2005-06-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-volume-sysv.{c,h}: Add no-op implementation
	  to make it possible to compile Thunar on non-BSD systems again.
	* configure.in.in, thunar-vfs/Makefile.am,
	  thunar-vfs/thunar-vfs-volume.c, thunar-vfs/thunar-vfs-volume-bsd.c:
	  Add a rather hacky way to support different system flavours based
	  on AC_CONFIG_LINKS(). Needs to be replaced by a real solution at
	  some time.
	* TODO: Add note about the wacky AC_CONFIG_LINKS() hacks mentioned
	  above.

2005-06-14	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_new_for_path): Add some
	  code to automatically remove trailing slashes from path names, which
	  would otherwise confuse the whole file manager.
	* thunar/thunar-fallback-icon.{h,png}, thunar/Makefile.am: The fallback
	  icon is now stored in a C file and automatically generated at compile
	  time if maintainer mode is enabled, while dist tarballs will ship the
	  generated C file.
	* thunar/thunar-icon-factory.{c,h}: Add new class ThunarIconFactory,
	  which provides caching of themed icons. The basic concept is based
	  on the NautilusIconFactory class, but the implementation is simpler
	  and faster than the implementation found in Nautilus.
	* thunar/thunar-file.c: Use the new ThunarIconFactory class and the
	  new exo_mime_info_lookup_icon_name() method to lookup and cache icons
	  for files. This speeds up folder loading quite a lot.
	* docs/design/overview.xmi: Add ThunarIconFactory diagram.

2005-06-13	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Add header checks required for the BSD volume
	  manager implementation.
	* thunar/thunar-window.c: Display the current folder's special name.
	* thunar/thunar-file.{c,h}: Add property "special-name", which contains
	  the special name of a given file if any, else it contains the same
	  value as the "display-name" property.
	* thunar/thunar-location-buttons.c: Use the home directory as root.
	  Don't display a label for the 'Filesystem' node, similar to how it
	  is done with GtkFileChooser.
	* thunar-vfs/thunar-vfs-volume.{c,h},
	  thunar-vfs/thunar-vfs-volume-bsd.c: Try more advanced features, like
	  detecting whether a medium is present for a given volume. This is
	  currently just testing, based on what is provided by the BSD
	  interface. The final design may look different, maybe even a
	  D-BUS based thunar-volume-manager service, which can be run with
	  special permissions in order to be able to query device stats and
	  mount volumes.
	* thunar/thunar-favourites-model.c: Use the new features provided by
	  the volume manager to dynamically display volumes when a medium is
	  inserted.

2005-06-12	Benedikt Meurer <benny@xfce.org>

	* docs/design/overview.xmi: Refined the basic ideas for the volume
	  manager, which will provide core functionality required by the
	  trash system. The ThunarVfsVolume and ThunarVfsVolumeManager concepts
	  are interfaces now, which will be implemented by the backend (usually
	  one backend per operating system family).
	* tests/data/test-thunar-vfs-volume-bsd.fstab, tests/data/Makefile.am,
	  tests/test-thunar-vfs-volume-bsd.c, tests/Makefile.am: Add test case
	  for the BSD specific implementation of the ThunarVfsVolumeManager
	  module.
	* tests/test-thunar-vfs-uri.c: Fix copyright and includes.
	* TODO: Add item about possible improvements of the BSD specific
	  volume manager implementation.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs.h, configure.in.in: Add
	  new classes and interfaces to the build framework.
	* thunar-vfs/thunar-vfs-volume.{c,h}: Import the basic interfaces to
	  the volume manager module, with a minimum set of methods and signals,
	  which will be extended later.
	* thunar-vfs/thunar-vfs-volume-bsd.{c,h}: Add first try of an
	  implementation of the the volume manager interfaces for BSD systems.

2005-06-11	Benedikt Meurer <benny@xfce.org>

	* docs/design/overview.xmi: Extend the ThunarVfsURI functionality.
	* thunar-vfs/thunar-vfs-uri.{c,h}: Add host handling to ThunarVfsURI.
	  Add support for different URI schemes, currently 'file://' and
	  'trash://'.
	* thunar/thunar-favourites-model.c, thunar/thunar-favourites-view.c, 
	  thunar/thunar-location-buttons.c: Sync with the little API change
	  to ThunarVfsURI.
	* tests/Makefile.am: Delete core files on `make clean'.
	* tests/test-thunar-vfs-uri.c(main): Add test cases for the trash:
	  scheme.

2005-06-11	Benedikt Meurer <benny@xfce.org>

	* configure.in.in, Makefile.am, tests/: Import first test program for
	  ThunarVfsURI validation.

2005-06-11	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.{c,h}: Add functions to ease the handling
	  of URI lists, specifically to automatically parse and generate
	  string representations of URI lists that conform to the
	  text/uri-list mime type.
	* thunar/thunar-location-buttons.c
	  (thunar_location_buttons_drag_data_get): Use new ThunarVfsURI list
	  handling functions instead.
	* thunar/thunar-favourites-model.c
	  (thunar_favourites_model_file_destroy): Handle the case where a
	  directory referenced by a favourite disappears from the backend media.
	* thunar/thunar-favourites-model.c
	  (thunar_favourites_model_file_changed): Remove a given favourite if
	  the system notices that the favourite's file no longer refers to a
	  directory.
	* thunar/thunar-favourites-model.c(thunar_favourites_model_init): Do
	  not re-add favourites initially, that do not refer to a directory.
	* thunar/thunar-favourites-model.{c,h}: Add a new method
	  thunar_favourites_model_add(), which is used by the
	  ThunarFavouritesView to add new favourites to the list and
	  automatically sync the changes with the Gtk+ bookmarks list.
	* thunar/thunar-favourites-view.c: Handle "text/uri-list" drops,
	  adding new favourites as appropriate. Add note, that the initial
	  idea is based on the GtkFileChooser written by Red Hat for Gtk+.
	* TODO: Remove the 'text/uri-list'-handling for ThunarFavouritesView.
	  Add item concerning the Trash in the favourites list.

2005-06-10	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.{c,h},
	  thunar/thunar-favourites-view.c: Add initial drag&drop-support for
	  the favourites view. This is currently limited to rearranging
	  favourites in the list. Support for adding new favourites by
	  dropping text/uri-list's will be added soon. Also, the
	  ThunarFavouritesModel also saves changes made by the user back to
	  the .gtk-bookmarks file now.
	* TODO: Add note about missing text/uri-list support in
	  ThunarFavouritesView, and missing .gtk-bookmarks monitor support.

2005-06-08	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.c: Use a signed gint for the number
	  of favourites to be compatible with the Gtk+ API.

2005-06-08	Benedikt Meurer <benny@xfce.org>

	* autogen.sh: Better determine the file dynamically, which is used to
	  query the sandbox revision.

2005-06-08	Benedikt Meurer <benny@xfce.org>

	* autogen.sh, configure.in.in: Add build number to the version during
	  development.

2005-06-08	Benedikt Meurer <benny@xfce.org>

	* docs/design/overview.xmi: All navigational UI elements in a
	  ThunarWindow now implement the ThunarNavigator interface, which
	  defines the "current-directory" property and the "change-directory"
	  signal. See the ThunarNavigator gtk-docs for details about the
	  behaviour.
	* thunar/thunar-navigator.{h,c}: Provide source code for the current
	  ThunarNavigator interface.
	* thunar/thunar-side-pane.{h,c}, thunar/thunar-favourites-pane.c:
	  Changed to use ThunarNavigator instead. ThunarSidePane is currently
	  an empty interface.
	* thunar-vfs/thunar-vfs-uri.{h,c}: Add a thunar_vfs_uri_to_string()
	  method, which transform a ThunarVfsURI into a file:// uri.
	* thunar/thunar-location-bar.{h,c}: Provide source code for the
	  ThunarLocationBar interface, which extends the ThunarNavigator
	  interface. The ThunarLocationBar interface does not add anything new
	  currently, but that will change in future revisions.
	* thunar/thunar-location-buttons.{c,h}: Add location path buttons
	  implementation of the ThunarLocationBar interface. The layouting
	  code was mostly copied from gtkpathbar.c, which was initially
	  written by Jonathan Blandford. The implementation is not complete
	  yet, and the layouting code is still very buggy.
	* TODO: Add a bunch of TODO items for Thunar 1.0.

2005-06-07	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-list-model.c(thunar_list_model_set_folder): Fix a bug
	  where the signals for the ThunarFolder weren't connected if the
	  folder contained no files initially.
	* thunar/thunar-side-pane.c(thunar_side_pane_class_init): Fix typo in
	  the documentation.
	* thunar/thunar-file.{c,h}: Add new method thunar_file_get_parent() to
	  figure out the parent directory for a given ThunarFile.

2005-06-06	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_finalize): Use the
	  parent_class variable set by G_DEFINE_TYPE instead of dynamically
	  querying the parent class on-demand.
	* thunar/thunar-application.c, thunar/thunar-desktop-view.c,
	  thunar/thunar-favourites-model.c, thunar/thunar-favourites-pane.c,
	  thunar/thunar-favourites-view.c, thunar/thunar-file.c,
	  thunar/thunar-folder.c, thunar/thunar-icon-view.c,
	  thunar/thunar-preferences.c, thunar/thunar-statusbar.c,
	  thunar/thunar-window.c: G_DEFINE_TYPE and G_DEFINE_TYPE_WITH_CODE
	  already generate a parent_class variable, so we don't need to do
	  that manually as well. It looks like this was added with GLib 2.4.x
	  and I somehow missed that change. Thanks to Jeff Franks for pointing
	  this out.

2005-06-05	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.c: Fix a bug in the thunar_vfs_uri_parent()
	  and thunar_vfs_uri_relative() methods, where the name attribute of
	  the newly created objects wasn't initialized properly.
	* thunar-vfs/thunar-vfs-uri.c(thunar_vfs_uri_equal): Instead of always
	  comparing the full path of both URIs, a simple optimization was
	  introduced, which checks the basenames first, if they are equal,
	  it'll check whether the dirnames have the same length, and as the
	  last fallback, it'll compare the dirnames char by char. This way we
	  can optimize the common case - with GHashTable - that two URIs
	  differ.

2005-06-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.{c,h}: Add new method
	  thunar_favourites_model_file_for_iter() to be able to easily
	  determine the ThunarFile for a given favourite.
	* thunar/thunar-file.c(thunar_file_class_init): Fix a type in the
	  "changed" signal definition.
	* thunar/thunar-file.c(thunar_file_finalize): Fix a bug where the
	  ThunarVfsURI was freed first, and then an attempt was made to remove
	  the ThunarFile from the file_cache using the previously freed
	  ThunarVfsURI as key.
	* thunar/thunar-view.{c,h}: Add the "change-directory" signal, which
	  is emitted by ThunarIconView and ThunarListView whenever the user
	  double clicks a folder (or otherwise requests a directory change
	  from within the view).
	* thunar/thunar-list-model.{c,h}: Add a thunar_list_model_new()
	  default constructor, which does not take a ThunarFolder instance.
	* thunar/thunar-icon-view.c: Implement the "change-directory" signal
	  in ThunarView.
	* thunar/thunar-favourites-view.c, thunar/thunar-favourites-pane.c:
	  Double-clicking a favourite now opens the associated directory (using
	  the "current-directory" property, which is linked to the
	  "current-directory" property of ThunarWindow).
	* thunar/thunar-window.{c,h}: Add a "current-directory" property,
	  which describes the directory currently displayed in this window.
	  Remove the thunar_window_new_with_folder() constructor and replace
	  it by a default constructor. Automatically synchronize the current
	  directory with both the view and the side pane.
	* thunar/main.c(main): ThunarWindow now uses ThunarFile to refer to
	  the active directory and so we do here as well.

2005-06-05	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Bumped version to 0.0.2.
	* docs/design/overview.xmi: Fix some issues, see the code changes
	  below.
	* thunar-vfs/Makefile.am: Don't install the thunar-vfs library for
	  now. Makes debugging easier.
	* thunar/Makefile.am: Add new classes to the build framework.
	* thunar/thunar-view.{c,h}: Implement first draft for the ThunarView
	  interface, which is to beimplemented by all views.
	* thunar/thunar-icon-view.{c,h}: Implement first draft for the
	  ThunarIconView class, which implements the ThunarView interface to
	  provide an icon view of the current folder.
	* thunar/thunar-statusbar.{c,h}: Add basic implementation of the
	  ThunarStatusbar class. In order to avoid an association between the
	  ThunarView or ThunarListModel classes and the ThunarStatusbar and in
	  order to provide more flexibility about what is to be displayed in
	  the statusbar, we use a write-only property "text" for the
	  ThunarStatusbar, which can be connected to another string property
	  using the ExoBindings module.
	* thunar/thunar-list-model.{c,h}: The number of rows should be a gint
	  rather than a guint, as that's what GtkTreeModel uses. Add a new
	  method thunar_list_model_get_statusbar_text(), that will be used by
	  both ThunarIconView and ThunarListView to determine the proper
	  statusbar text that should be displayed for a given selection. Add a
	  new column THUNAR_LIST_MODEL_COLUMN_TYPE, which provides a string
	  representation of the MIME-Type (using the comment set for the
	  MIME-Type). The sort function is not yet implemented tho.

2005-06-05	Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-favourites-model.c(thunar_favourites_model_get_value):
	  The display_name's of ThunarFile's can be considered static (as the
	  name cannot change during the ThunarFile's life-time), so we don't
	  need to take a copy here.
	* thunar/thunar-list-model.c(thunar_list_model_get_value): Same here,
	  the ThunarFile's display_name is static.
	* thunar/thunar-file.c: Add the simple caching on the ThunarFile
	  level. If a ThunarFile for the same ThunarVfsURI is requested
	  multiple times, the same ThunarFile instance will be used, instead
	  of allocating a new one. Future versions will extend this scheme
	  using a smarter caching mechanism.
	* thunar/thunar-side-pane.{c,h}: Add implementation for the
	  ThunarSidePane interface, which is to be implemented by all widgets
	  that can be placed on the right side. The interface currently
	  includes only the "current-directory" property, which is the most
	  important communication mechanism. We'll need some way to pass in
	  other per-window settings here (e.g. "show-hidden" and such).
	  Hopefully somebody will pick up the preferences task soon.
	* thunar/thunar-favourites-model.{c,h},
	  thunar/thunar-favourites-view.{c,h},
	  thunar/thunar-favourites-pane.{c,h}: More work on the
	  ThunarFavourites module. The ThunarFavouritesPane class implements
	  the ThunarSidePane interface and acts as a bridge to the underlying
	  ThunarFavouritesView.
	* thunar/thunar-window.c: Test the new ThunarFavouritesPane class.
	* thunar/Makefile.am: Add the new classes to the build framework.

2005-06-05	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-uri.{c,h}: Add thunar_vfs_uri_new()
	  constructor, that creates a new ThunarVfsURI object from a resource
	  identifier string.
	* thunar-vfs/thunar-vfs-uri.{c,h}: Add thunar_vfs_uri_is_home(), which
	  determines whether a given ThunarVfsURI referes to the home
	  directory of the current user.
	* thunar/thunar-file.c(thunar_file_load_icon): Pay attention to
	  special icons for the home folder and the file system root.
	* thunar/thunar-favourites-model.{c,h},
	  thunar/thunar-favourites-view.{c,h}: Add experimental
	  ThunarFavouritesModel and ThunarFavouritesView classes, that will be
	  used in the implementation of the ThunarFavouritesPane class. Other
	  than with the mockups, I've skipped the 'Desktop' favourite for now,
	  as it does not make much sense. The usablity team should evaluate
	  this at some time.
	* thunar/thunar-window.c: Add ThunarFavouritesView on the left side
	  for testing.
	* thunar/Makefile.am: Add ThunarFavouritesModel and
	  ThunarFavouritesView to the build system.

2005-06-04	Benedikt Meurer <benny@xfce.org>

	* configure.in.in: Fix copyright texts.
	* docs/design/overview.xmi: Add is_local() and is_root() for
	  ThunarVfsURI, which were missing.
	* thunar-vfs/thunar-vfs-uri.{c,h}: Implemented the missing
	  thunar_vfs_uri_is_root() and thunar_vfs_uri_parent() methods.

2005-06-04	Benedikt Meurer <benny@xfce.org>

	* COPYING.LIB: Add license text for the thunar-vfs library (which is
	  licensed under the LGPL).
	* HACKING: Add information for people that plan to hack on Thunar.
	* AUTHORS: Add Jeff Franks.
	* THANKS: Import the THANKS template.
	* README: Add some basic information about Thunar. Needs more details.
	* docs/design/overview.xmi: Import the current overview diagram for
	  Thunar.
	* Makefile.am, configure.in.in, docs/Makefile.am,
	  docs/design/Makefile.am: Include the docs/ tree with the build
	  framework.
	* configure.in.in, thunar/Makefile.am, thunar-vfs/Makefile.am: Link
	  against GThread (not yet required from what is coded so far).
	* configure.in.in: Check for several required header files.
	* thunar-vfs/Makefile.am, thunar-vfs/thunar-vfs-info.{c,h},
	  thunar-vfs/thunar-vfs-monitor.{c,h},
	  thunar-vfs/thunar-vfs-uri.{c,h}, thunar-vfs/thunar-vfs-util.{c,h},
	  thunar-vfs/thunar-vfs.h: Add some experimental source code to
	  implement parts of the VFS module.
	* thunar/fallback-icon.h, thunar/fallback-icon.png: Import the
	  fallback icon.
	* thunar/thunar-application.{c,h}: Import Jeff's ThunarApplication
	  boilerplate (adjusting style as required).
	* thunar/thunar-desktop-view.{c,h}: Boilerplate for the
	  ThunarDesktopView class with the very basic requirements.
	* thunar/thunar-file.{c,h}, thunar/thunar-folder.{c,h}: Experimental
	  implementation of ThunarFile and ThunarFolder based on the
	  experimental source for the VFS module.
	* thunar/thunar-list-model.{c,h}: Sample implementation of the
	  ThunarListModel class, based on an earlier implementation found in
	  Filer.
	* thunar/thunar-preferences.{c,h}: Template for the ThunarPreferences
	  class.
	* thunar/thunar-window.{c,h}: Quick-and-dirty ThunarWindow
	  implementation to be able to roughly test the ThunarListModel class.
	* thunar/main.c: Add code to start a single ThunarWindow.
	* autogen.sh: Copyright fixes. Substitute date to make it easier to
	  identify snapshots during the early development stages.

2005-05-30	Benedikt Meurer <benny@xfce.org>

	* Initial import.

# vi:set ts=8 sw=8 noet ai nocindent: