~vcs-imports/ristretto/trunk

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
2010-07-14 Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/gnome_wallpaper_manager.c: Add check for nautilus - to set the wallpaper under gnome

2010-07-13 Stephan Arts <stephan@xfce.org>

	* src/image_list.c: Fix reference-count bug.

2010-07-13 Stephan Arts <stephan@xfce.org>

	* src/Makefile.am: Add -lX11 to LDADD, fixes --no-add-needed build

2010-07-12 Stephan Arts <stephan@xfce.org>

	* src/main_window.c, 
	  src/settings.c,
	  src/preferences_dialog.c: Re-implement preloading
	* src/gnome_wallpaper_manager.c,
	  src/gnome_wallpaper_manager.h: Add gnome-wallpaper-manager skeleton
	* src/picture_viewer.c: Update when bgcolor-properties are changed
	* src/thumbnail_bar.c: Fix compile warning (and evil bug that could've segfaulted the app)
	* src/settings.c,
	  src/main_window.c: Save thumbnailbar-size

2010-01-13 Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c: Fix box-zoom when image is rendered at below-maximum resolution

2010-01-13 Stephan Arts <stephan@xfce.org>

	* src/*.c,
	  src/*.h: Update copyright messages

2010-01-12 Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c: Implement box-zoom... 
	  it only works when the image is loaded at max-quality... still need to fix that

2010-01-09 Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/main_window_ui.xml: Remove stuff that is not going to be ready for 0.1.0

2010-01-08  Stephan Arts <stephan@xfce.org>

	* src/thumbnailer.c: Remove thumbnails from thumbnail-queue when ready
	* TODO: Update TODO
	* src/thumbnail_bar.c,
	  src/thumbnailer.c: Fix Assert, make thumbnailing work with non-jpeg 
	  mimetypes and vertical thumbnailbars...

2010-01-07  Stephan Arts <stephan@xfce.org>

	* src/settings.c: Remove excess break statement
	* configure,in.in,
	  src/Makefile.am,
	  src/thumbnail.c,
	  src/thumbnail.h,
	  src/thumbnail_bar.c,
	  src/thumbnailer.h,
	  src/thumbnailer.c: Add rudimentary support for tumbler.

2009-11-01  Stephan Arts <stephan@xfce.org>

	* src/xfce_wallpaper_manager.c: Implement slider options in
	  set_wallpaper dialog.

2009-10-25  Stephan Arts <stephan@xfce.org>

	* src/thumbnail_bar.c: Limit scrolling offset so thumbs don't get
	  lost outside the window.

2009-10-25  Stephan Arts <stephan@xfce.org>

	* src/xfce_wallpaper_manager.c: Add configure-dialog

2009-10-25  Stephan Arts <stephan@xfce.org>

	* src/image_list.c,
	  src/image_list.h,
	  src/settings.c,
	  src/preferences_dialog.c: Add wrap-images setting


2009-10-24  Stephan Arts <stephan@xfce.org>

	* src/image_cache.c: Make image-cache cache one less image to prevent it
	  from exceeding the maximum-size.
	* src/image_list.c: Move the iterators around before removing the image
	  from the image-list, this prevents the iterators from jumping to the
	  start or end of the list.

2009-10-16  Stephan Arts <stephan@xfce.org>

	* src/thumbnail_bar.c: Implement auto-center

2009-10-15  Stephan Arts <stephan@xfce.org>

	* src/image.c,
	  src/image.h,
	  src/image_cache.h,
	  src/image_cache.c: Fixed memory leak in image-cache
	* src/picture_viewer.c: Fixed memory leak in paint function
	* src/settings.c: Fix default setting for slideshow timeout

2009-10-08  Stephan Arts <stephan@xfce.org>

	* src/thumbnail_bar.c,
	  src/thumbnail_bar.h: Change looks of the thumbnailbar

2009-10-08  Stephan Arts <stephan@xfce.org>

	* src/app_menu_item.c: Add application-icon to application-menu-item, used
	  in the open-with menu.

2009-10-03  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Check if a desktop-manager is running before making
	  the set-wallpaper button sensitive
	* src/Makefile.am: Replace spaces with tabs, fixes compilation-issues
	  with certain versions of automake
	* src/settings.c: Change default-settings

2009-09-27  Stephan Arts <stephan@xfce.org>

	*  src/preferences_dialog.c: Add option to load all images in a
	  folder to the preferences dialog.
	* src/main_window.c: Add shortcut for the visibility of the 
	  thumbnail-bar
	* src/xfce_wallpaper_manager.c: Cleanup xfconf channel on destruction

2009-09-26  Stephan Arts <stephan@xfce.org>

	* src/main.c,
	  src/settings.c: Add option to load all images in a folder

2009-09-26  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/image_list.c,
	  src/thumbnailbar.c: Images can only be opened once

2009-09-26  Stephan Arts <stephan@xfce.org>

	* src/wallpaper_manager.h,
	  src/wallpaper_manager.c,
	  src/main_window.c,
	  src/xfce_wallpaper_manager.h,
	  src/xfce_wallpaper_manager.c,
	  src/image.h: Implement basic set-as-wallpaper functionality for
	  xfdesktop

2009-09-23  Stephan Arts <stephan@xfce.org>

	* src/app_menu_item.c,
	  src/app_menu_item.h,
	  src/main_window.c,
	  src/Makefile.am: Implement open-with menu with launcher menu-items

2009-09-22  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Add initial code for implementation of the 
	  'open-with' menu

2009-09-22  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/picture_viewer.c: Do not change zoom-mode when switching to
	  fullscreen, recalculate scale when fitting image to window (zoom-fit)

2009-09-19  Stephan Arts <stephan@xfce.org>

	* src/preferences_dialog.c: Set current value to 'show-preview'
	  checkbutton

2009-09-19  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/picture_viewer.c,
	  src/preferences_dialog.c,
	  src/settings.c: Implement option to toggle 'preview'
	
2009-09-19  Stephan Arts <stephan@xfce.org>

	* po/*.po: Update .po files
	* po/ristretto.pot: Add .pot file

2009-09-19  Stephan Arts <stephan@xfce.org>

	* src/navigator.c,
	  src/navigator.h: Remove obsolete source files
	* src/main_window.c,
	  src/image_list.c: Improve status-messages

2009-09-06  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/main_window.h,
	  src/main.c: Remove messagebar, it is anoying
	* src/picture_viewer.c,
	  src/picture_viewer.h: Fix blow-up of images at first so they do not get 
	  scaled over 100% when they are rendered the first time. (Dunno why, but 
	  minimum and maximum zoom-factors are broken)

2009-09-05  Stephan Arts <stephan@xfce.org>

	* src/main.c,
	  src/main_window.c,
	  src/main_window.h: Show messagebar when opening a single image 
	  from the cli

2009-09-05  Stephan Arts <stephan@xfce.org>

	* src/preferences_dialog.c,
	  src/settings.c,
	  src/main_window.c: Implement option to hide thumbnail-bar when fullscreen

2009-09-05  Stephan Arts <stephan@xfce.org>

	* src/preferences_dialog.c
	  src/settings.c,
	  src/main_window.c: Implement slideshow timeout slider

2009-09-05  Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c,
	  src/settings.c,
	  src/preferences_dialog.c: Implement scrollwheel action on picture-viewer

2009-09-05  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/settings.c,
	  src/settings.h: Add convenience-functions for setting properties 
	  so it is not required to initialise GValue's all over the place.

2009-09-04  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Change arrow-orientation together with toolbar
	  orientation

2009-09-04  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Update information in the statusbar

2009-09-04  Stephan Arts <stephan@xfce.org>

	* src/thumbnailbar.c: Reorder thumbnails when the image-sorting changes

2009-09-04  Stephan Arts <stephan@xfce.org>

	* src/main_window.c,
	  src/main_window_ui.xml: Add popup-menu for the image-viewer

2009-09-04  Stephan Arts <stephan@xfce.org>

	* src/image_list.c: Emit 'iterator-changed' signal 
	  on all iterators when the sort-function changes

2009-09-03  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Start on a code cleanup
	* src/image_list.c,
	  src/main_window.c: Implement sort-by-date
	* src/main_window.c: Stop slideshow when there is just one or no image opened

2009-09-03  Stephan Arts <stephan@xfce.org>

	* src/image_list.c,
	  src/image_list.h: Add functions to set buildin and custom sorting 
	  functions

2009-09-03  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Fix typo in default accelerator of Rotate-Left
	* src/image_list.c: Add skeleton-code for sorting on exif-date

2009-09-01  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Store navigationbar position in xfconf

2009-09-01  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Improve fullscreen behaviour

2009-08-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Add popup to change the location of the navigationbar 
	  and thumbnailbar

2009-08-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Place navigation-bar and thumbnailbar next to eachother

2009-08-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Improve UI-sensitivity, do not make navigation-buttons 
	  and slideshow buttons sensitive when only one image is opened.

2009-08-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Toggle visibility of Thumbnailbar.

2009-08-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Fix errors when the ristretto icon is not available

2009-08-12  Stephan Arts <stephan@xfce.org>

	* ChangeLog: Merge with private branch

2009-06-01  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/image_list.c: Improve positioning code and file-open behaviour

2009-06-01  Stephan Arts <stephan@xfce.org>

	* src/save_dialog.c
	  src/save_dialog.h: Remove save-dialog code not going to support that
	  anyways

2009-06-01  Stephan Arts <stephan@xfce.org>

	* src/image_list.h
	  src/image_list.c
	  src/thumbnail_bar.c: Expose compare_func, and use it in the thumbnailbar

2009-06-01  Stephan Arts <stephan@xfce.org>

	* src/*: Rename Navigator to ImageList, makes more sense

2009-05-26  Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c: Show an 'inactive' image when there is no
	image loaded.

2009-05-25  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: change open-folder icon to 'folder-open' instead of
	'document-open'
	* src/settings.c
	  src/preferences_dialog.c: Make preload-images an number value (as-in,
	  how many should be preloaded)
	* src/preferences_dialog.c: Change the values in the quality-combo to
	  something human-readable.
	* src/preferences_dialog.c: Move image-quality frame to the behaviour tab.

2009-05-25  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Fix sensitivity of the save-copy button

2009-05-25  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Rename save-as to save-copy (suggested by cody
	  somerville)

2009-05-25  Stephan Arts <stephan@xfce.org>

	* src/image_cache.c
	  src/preferences_dialog.c
	  src/settings.c
	  src/image.c: Improve cache-size and image-quality calculations

2009-05-25  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/preferences_dialog.c: Implement preferences for the 'open' toolbar
	  item.
	* TODO: Update TODO

2009-05-23  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml
	  src/settings.c: Add ability to configure the toolbar-open button, it can
	  now do the following:
	  	- Open image
		- Open folder
		- None (disappear)

2009-05-22  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Fix behaviour when switching to the last image

2009-05-22  Stephan Arts <stephan@xfce.org>

	* src/navigating.c,
	  src/main_window.c: Sanitize navigator-iter design

2009-05-21  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: if a file in the recent_menu does not exist, because
	  it has been deleted, show an error-dialog

2009-05-21  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Add 'delete' button to remove an image from disk
	  (Bug #4135)
	* src/main_window.c: Add accelerators for leaving fullscreen-mode,
	navigating to the next image and to the previous image using Escape,
	Page_Up and Page_Down respectively

2009-05-20  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Scale the image down to page-size

2009-05-17  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Toggle printing-button sensitivity
	* src/main_window.c: Fix compiler warning

2009-05-17  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Implement first rudimentary printing.

2009-05-16  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/image_cache.c
	  src/image_cache.h: Clear the cache when the image-quality is changed

2009-05-16  Stephan Arts <stephan@xfce.org>

	* src/Makefile.am: Remove profiling flag

2009-05-16  Stephan Arts <stephan@xfce.org>

	* src/image_cache.c
	  src/picture_viewer.c
	  src/main_window.c: Fix reference-count on settings-object
	* src/main_window.c: Set default accelerators on rotation buttons

2009-05-16  Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c: When an image is rotated upside down, make sure
	the horizontal slider works horizontally and the vertical slider works
	vertically. These were switched :-p

2009-05-16  Stephan Arts <stephan@xfce.org>

	* src/image.c
	  src/image.h
	  src/main_window.c
	  src/picture_viewer.c
	  src/image_transformation.h
	  src/image_transformation.c
	  src/image_transform_orientation.h
	  src/image_transform_orientation.c
	  src/Makefile.am: Re-implement image-rotation, now it finally works with
	  the new rendering method.


2009-05-15  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Set current_uri on open_folder dialog
	* src/image.c
	  src/image.h
	  src/picture_viewer.c: Remove state-machine, breaks things

2009-05-15  Stephan Arts <stephan@xfce.org>

	* src/image.c
	  src/image.h
	  src/picture_viewer.c: Implement state-machine, do not expose weird
	  signals
	* src/image.c: Unref animation_iter, fix memleak

2009-05-02  Stephan Arts <stephan@xfce.org>

	* src/image_cache.c: Remove images which return size=0 from the cache,
	  it might still be loading, in which case it should stop immediately and
	  be dropped from the cache
	* src/image.c
	  src/image.h
	  src/image_cache.c: calculate cache-size in uint instead of uint64

2009-05-02  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Implement save-as function (Bug #4647)
	* src/navigator.c: Fix iter_find_image function
	* src/image_cache.h
	  src/image_cache.c: Return TRUE when the cache had to drop images to
	  fit the new one.
	* src/main.c: Fix error when trying to open nonexistent file from the
	  CLI

2009-05-02  Stephan Arts <stephan@xfce.org>

	* src/image,c
	  src/image.h
	  src/image_cache.c: Implement image-cache size calculation (Bug #4064)

2009-05-02  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Add jpeg filter to the open-files dialog

2009-05-01  Stephan Arts <stephan@xfce.org>

	* src/main_window.c: Make sure the fullscreen-toolbar gets shown in
	fullscreen mode when ristretto left fullscreen with sticky set.

2009-04-30  Stephan Arts <stephan@xfce.org>

	* src/picture_viewer.c: Implement a hack to check if the pixbuf has
	been rotated.

2009-04-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Add Sticky button to the fullscreen-toolbar.

2009-04-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Set is_important hint on 'leave-fullscreen' 
	  toolitem.

2009-04-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/main_window_ui.xml: Add 'fullscreen-toolbar' with controls when in
	  fullscreen-mode.  

2009-04-30  Stephan Arts <stephan@xfce.org>

	* src/main_window.c
	  src/picture_viewer.c
	  src/picture_viewer.h: Let the pictureviewer figure out the fullscreen-
	  state of it's parent-window by itself

2009-04-28  Stephan Arts <stephan@xfce.org>

	* src/image.c
	  src/picture_viewer.c: Emit 'prepared' signal when the size-prepared signal
	  is emitted, instead of waiting for the area-prepared signal. When the
	  image is rendered at a different scale then 'maximum', the 
	  'area-prepared', 'area-updated' and 'closed' signals are all emitted at 
	  once. Then the thumbnail is not displayed when the image is not ready yet.
	* src/picture_viewer.c: Do not repaint the image when the image is
	  'prepared' but there is no thumbnail available. This will prevent the
	  image from flickering.
	* src/image_cache.c: Implement 'enable'/'disable' of image-cache
	* src/main_window_ui.xml
	  src/main_window.c: Remove properties dialog menu item
	* src/picture_viewer.c: Add a 'fullscreen' state, setting a different
	  background-color if it is in fullscreen.

2009-05-15 16:51  stephan

	* src/navigator.c:
	  Fix memleak

2009-05-01 22:54  stephan

	* src/navigator.c:
	  Fix bug #4064

2009-04-16 08:20  mmassonnet

	* po/ChangeLog, po/gl.po:
	  goodies translation update

2009-03-19 15:08  hashimo

	* po/ChangeLog, po/ja.po:
	  * ja.po: Japanese translation update (Masato Hashimoto) * ja.po:
	  Japanese translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto) * ja.po: Japanese
	  translation update (Masato Hashimoto)

2009-03-14 15:26  maximilian

	* po/ChangeLog, po/gl.po, po/it.po:
	  Translations updates - es fr gl it tr

2009-03-05 20:12  mmassonnet

	* po/nb.no, po/nb.po, po/pt.no, po/pt.po:
	  Fix the renaming of the pt nb files -- thanks to jerome who
	  noticed this problem

2009-03-05 14:53  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/nb.no, po/nb_NO.po, po/pt.no,
	  po/pt_PT.po:
	  Renamed pt_PT to pt and nb_NO to nb (bug #4574)

2009-03-01 22:48  maximilian

	* po/ChangeLog, po/pl.po:
	  Translations updates - es pl uk

2009-02-08 08:24  maximilian

	* po/ChangeLog, po/nb_NO.po, po/pl.po:
	  Translations updates - fr id it ja nb pl

2009-02-07 20:03  eulex

	* po/ChangeLog, po/sv.po:
	  xfce4-volstatus-icon/trunk/po: * sv.po: Swedish translation
	  update (Daniel Nylander) xfburn/trunk/po: * sv.po: Swedish
	  translation update (Daniel Nylander) xfce4-timer-plugin/trunk/po:
	  * sv.po: Swedish translation update (Daniel Nylander)
	  xfce4-clipman-plugin/trunk/po: * sv.po: Swedish translation
	  update (Daniel Nylander) ristretto/trunk/po: * sv.po: Swedish
	  translation update (Daniel Nylander) xfce4-mount-plugin/trunk/po:
	  * sv.po: Swedish translation update (Daniel Nylander)
	  notification-daemon-xfce/trunk/po: * sv.po: Swedish translation
	  update (Daniel Nylander) xfce4-power-manager/trunk/po: * sv.po:
	  Swedish translation update (Daniel Nylander)
	  xfce4-cellmodem-plugin/trunk/po: * sv.po: Swedish translation
	  update (Daniel Nylander) thunar-shares-plugin/trunk/po: * sv.po:
	  Swedish translation update (Daniel Nylander)
	  xfce4-battery-plugin/trunk/po: * sv.po: Swedish translation
	  update (Daniel Nylander)

2009-01-25 21:11  maximilian

	* po/ChangeLog, po/ja.po:
	  Translations updates - ja

2009-01-19 21:08  stephan

	* po/POTFILES.in:
	  Fix POTFILES.in

2009-01-18 17:54  maximilian

	* po/ChangeLog, po/pt_PT.po:
	  Translations updates - de ca it ja nb pt_PT tr

2009-01-14 15:44  stephan

	* src/main.c, src/main_window.h:
	  Fix issue eht16 mentioned

2009-01-12 23:30  eulex

	* po/ChangeLog, po/LINGUAS, po/sv.po:
	  thunar-svn-plugin/trunk/po: * sv.po, LINGUAS: Swedish translation
	  added (Daniel Nylander) xfce4-cddrive-plugin/trunk/po: * sv.po,
	  LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-weather-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  xfce4-volstatus-icon/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  xfce4-quicklauncher-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) xfce4-timer-plugin/trunk/po:
	  * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-clipman-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  xfce4-diskperf-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  xfce4-mailwatch-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) ristretto/trunk/po: * sv.po,
	  LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-sensors-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) xfce4-mount-plugin/trunk/po:
	  * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-genmon-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) thunar-volman/trunk/po: *
	  sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
	  notification-daemon-xfce/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) xfce4-power-manager/trunk/po:
	  * sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-dict/trunk/po: * sv.po, LINGUAS: Swedish translation added
	  (Daniel Nylander) xfce4-cellmodem-plugin/trunk/po: * sv.po,
	  LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-battery-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)

2009-01-04 21:33  maximilian

	* po/ChangeLog, po/pl.po:
	  Translations updates - ca pl

2009-01-02 12:10  stephan

	* src/main.c:
	  Fix compiler warning (thanx to jerome guelfucci)

2008-12-25 19:20  maximilian

	* po/ChangeLog, po/es.po, po/gl.po, po/id.po:
	  Translations updates - es gl id ja uk

2008-12-21 21:57  eulex

	* po/ChangeLog, po/LINGUAS, po/sv.po:
	  Sorry, my mistake. No translation was supposed to be added. My
	  fault for experimenting, then forgetting about it. Hope it's
	  acceptable to remove that entry from ChangeLog.

2008-12-21 21:50  eulex

	* po/ChangeLog, po/LINGUAS, po/sv.po:
	  xfce4-xmms-plugin/trunk/po: * sv.po, LINGUAS: Swedish translation
	  added (Daniel Nylander) xfce4-mpc-plugin/trunk/po: * sv.po,
	  LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-notes-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander) ristretto/trunk/po: * sv.po,
	  LINGUAS: Swedish translation added (Daniel Nylander)
	  xfce4-cpugraph-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  xfmedia-remote-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)
	  thunar-shares-plugin/trunk/po: * sv.po, LINGUAS: Swedish
	  translation added (Daniel Nylander)

2008-12-17 17:11  lars

	* po/ChangeLog, po/da.po:
	  update-po

2008-12-13 22:08  maximilian

	* po/fr.po:
	  Translations updates - fr ja

2008-12-13 14:34  maximilian

	* po/ChangeLog, po/zh_CN.po:
	  Translations updates - ja uk zh_CN

2008-12-08 00:20  piarres

	* po/eu.po:
	  Updated ristretto Basque translation

2008-12-07 18:35  piarres

	* po/ChangeLog:
	  Goodies Basque translation update

2008-11-30 19:24  maximilian

	* po/ChangeLog, po/ja.po:
	  Translations updates - ja pt_PT

2008-11-29 11:09  mmassonnet

	* po/ChangeLog, po/fr.po:
	  ristretto: update french translation

2008-11-29 02:52  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translations for
	  xfce4-sensors-plugin, xfce4-screenshooter-plugin, and ristretto.

2008-11-26 23:15  stephan

	* ChangeLog, NEWS, configure.in.in, po/nl.po, src/main_window.c:
	  Update changelog, NEWS, nl.po, configure.in.in and main_window.c

2008-11-24 22:36  stephan

	* src/main.c:
	  Remove xfconf stuff

2008-11-24 21:39  stephan

	* src/navigator.c:
	  Fix bug #4599 Fixed based on patches by Jannis Pohlman and Pavol
	  Rusnak

2008-11-24 00:07  stephan

	* src/main_window.c, src/navigator.c, src/navigator.h:
	  Make a distinction between modification and rotation

2008-11-23 23:57  stephan

	* src/main_window.c, src/navigator.c, src/save_dialog.c,
	  src/save_dialog.h:
	  Improve save dialog Fix segfault (reference-count bug)

2008-11-23 23:02  piarres

	* po/ChangeLog:
	  Goodies Basuqe translation update

2008-11-23 14:45  maximilian

	* po/ChangeLog, po/uk.po:
	  Translations updates - ca id nb sq uk

2008-11-22 12:04  stephan

	* configure.in.in, src/Makefile.am, src/main.c, src/main_window.c,
	  src/main_window.h, src/save_dialog.c:
	  Remove xfconf dependency Replace -v with -V Remove YES_NO buttons

2008-11-21 14:04  majkl

	* po/ChangeLog, po/cs.po:
	  Czech translation updated

2008-11-21 09:30  piarres

	* po/ChangeLog:
	  Fix last changes date (sorry)and add power-managment Basque
	  translation

2008-11-21 09:07  piarres

	* po/ChangeLog, po/eu.po:
	  Goodies BAsque translation update

2008-11-16 22:45  maximilian

	* po/ChangeLog, po/LINGUAS, po/ca.po:
	  Translations updates and additions - ca, nb_NO, uk, zh_CN

2008-11-16 18:09  erenturkay

	* po/ChangeLog, po/tr.po:
	  Update Turkish translation

2008-11-14 12:25  stephan

	* configure.in.in, po/ar.po, po/bg.po, po/cs.po, po/da.po,
	  po/de.po, po/el.po, po/en_GB.po, po/es.po, po/eu.po, po/fi.po,
	  po/fr.po, po/gl.po, po/hu.po, po/id.po, po/it.po, po/ja.po,
	  po/lv.po, po/nb_NO.po, po/nl.po, po/pl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/ru.po, po/sk.po, po/tr.po,
	  po/uk.po, po/ur.po, po/zh_CN.po:
	  Update .po files Update .pot file Make 'xfce-desktop' support a
	  default

2008-11-09 23:17  maximilian

	* po/ristretto.pot:
	  Translations updates for a lot of languages in a lot of packages

2008-11-04 16:12  jari

	* po/ChangeLog, po/fi.po:
	  Update Finnish translations.

2008-10-22 05:42  stephan

	* src/main_window.c, src/navigator.c:
	  Plug memory leak (I think) and fix compile-warning

2008-10-20 21:02  maximilian

	* po/ChangeLog, po/de.po:
	  Translation udpates for German and Japanese

2008-10-17 23:35  maximilian

	* po/ChangeLog, po/LINGUAS, po/es.po:
	  Translation updates and additions for the Japanese and Spanish
	  locales: xfce4-datetime-plugin, gsynaptics-mcs-plugin,
	  xfce4-volstatus-icon, xfce4-cpugraph-plugin,
	  thunar-archive-plugin xfce4-battery-plugin, xfce4-mpc-plugin,
	  ristretto, xfce4-cpufreq-plugin, notification-daemon-xfce

2008-10-14 14:45  lars

	* po/da.po:
	  danish msgstr updated

2008-10-14 14:32  lars

	* po/ChangeLog, po/LINGUAS, po/da.po:
	  * da.po, LINGUAS: Danish translation added (Per Kongstad)

2008-10-09 08:55  stephan

	* src/main_window.c:
	  fix detection for xfdesktop (thanks to kelnos pointing me to
	  xfdesktop_is_running in the xfdesktop-source)

2008-10-07 20:00  maximilian

	* po/ChangeLog, po/LINGUAS, po/ja.po:
	  Added and updated Japanese translations for the ristretto and
	  verve modules

2008-09-12 10:00  piarres

	* po/ChangeLog, po/LINGUAS, po/eu.po:
	  Adding Basque translation

2008-09-08 19:31  omaciel

	* po/ChangeLog, po/pt_PT.po:
	  Updated European Portuguese translation.

2008-08-29 22:14  maximilian

	* po/ChangeLog, po/de.po:
	  Updated Xarchiver Dutch translation

2008-08-17 08:47  jari

	* po/ChangeLog, po/fi.po:
	  Updated Finnish translation.

2008-08-16 23:34  stephan

	* src/main.c, src/main_window.c, src/navigator.c:
	  - Applied a slightly modified patch from Philip Guo <pg AT cs DOT
	  stanford DOT edu> -- improves preloading - Fix compile-warning -
	  Improved history behaviour (push 'old' images to the top when
	  they are visited again)

2008-08-10 21:43  maximilian

	* po/ChangeLog, po/LINGUAS, po/pl.po:
	  Translations updated and added in Indonesian and Polish.

2008-07-16 23:01  alnokta

	* po/ar.po:
	  Update Arabic translations

2008-07-16 13:40  alnokta

	* po/ar.po:
	  Update Arabic translations

2008-07-15 12:41  alnokta

	* po/ChangeLog, po/LINGUAS, po/ar.po:
	  Update Arabic translations

2008-07-14 07:27  maximilian

	* po/ChangeLog, po/pt_PT.po:
	  Translations added and updated for most goodies (gl;pt_PT;zh_CN)

2008-07-11 15:41  sas

	* po/hu.po:
	  [intl:hu] little fixes2

2008-07-09 10:48  mvd

	* po/LINGUAS, po/uk.po:
	  Maxim Dziumanenko <dziumanenko@gmail.com>
	  
	  Updated Ukrainian translation

2008-06-30 19:14  stephan

	* configure.in.in:
	  Bump version-number

2008-06-30 19:11  stephan

	* src/picture_viewer.c:
	  Applied patch from Christian Dywan to fix adjustments issue

2008-06-26 22:00  maximilian

	* po/ChangeLog, po/LINGUAS, po/gl.po:
	  Translations added and updated for most goodies (gl)

2008-06-22 10:40  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/id.po:
	  update-po

2008-06-13 21:55  majkl

	* po/cs.po:
	  

2008-06-11 07:30  jari

	* po/ChangeLog, po/fi.po:
	  Updated Finnish translation.

2008-06-09 14:05  mmassonnet

	* po/ChangeLog, po/sk.po:
	  update-translation

2008-06-05 17:20  stavrosg

	* po/ChangeLog, po/el.po:
	  Greek translations update

2008-06-05 05:27  stephan

	* src/save_dialog.c:
	  A bit more (set ellipsize-mode for filename field)

2008-06-05 05:23  stephan

	* src/save_dialog.c:
	  Improve save dialog

2008-06-02 00:18  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translation

2008-06-01 22:32  stephan

	* po/bg.po, po/cs.po, po/de.po, po/el.po, po/en_GB.po, po/fi.po,
	  po/fr.po, po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po,
	  po/pt_BR.po, po/pt_PT.po, po/ristretto.pot, po/ru.po, po/sk.po,
	  po/tr.po, po/ur.po, po/zh_CN.po, src/Makefile.am,
	  src/main_window.c, src/save_dialog.c, src/save_dialog.h:
	  Update .po files Add initial draft of the file-save dialog.

2008-05-31 22:14  stephan

	* src/main_window.c, src/navigator.c, src/navigator.h:
	  Add dialog to notify a user of changes and that he might want to
	  save them

2008-05-30 22:23  stephan

	* src/navigator.c:
	  Do not generate thumbnails from thumbnails

2008-05-27 00:21  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/sk.po:
	  update-po

2008-05-25 07:54  jari

	* po/ChangeLog, po/fi.po:
	  Updated Finnish translation.

2008-05-24 14:47  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translation

2008-05-24 14:15  stephan

	* src/navigator.c:
	  Fix invalid return-code for 'open_file' function

2008-05-24 13:32  stephan

	* ChangeLog, NEWS, configure.in.in:
	  Pre-release version bump Update ChangeLog Update NEWS

2008-05-24 13:08  stephan

	* po/bg.po, po/cs.po, po/de.po, po/el.po, po/en_GB.po, po/fi.po,
	  po/fr.po, po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po,
	  po/pt_BR.po, po/pt_PT.po, po/ristretto.pot, po/ru.po, po/tr.po,
	  po/ur.po, po/zh_CN.po, ristretto.desktop.in, src/main_window.c:
	  Fix looks of preference dialog. Fix .desktop file (Do not append
	  generic name to the name field) Bug (#4085)

2008-05-24 12:02  mmassonnet

	* po/ChangeLog, po/fr.po:
	  update-translation

2008-05-24 10:34  stephan

	* ChangeLog, src/main_window.h:
	  Update ChangeLog Fix compile issues with --enable-debug=full

2008-05-24 10:17  stephan

	* po/ChangeLog, po/bg.po, po/cs.po, po/de.po, po/el.po, po/fi.po,
	  po/fr.po, po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po,
	  po/pt_BR.po, po/pt_PT.po, po/ristretto.pot, po/ru.po, po/tr.po,
	  po/ur.po, po/zh_CN.po, src/main_window.c:
	  Add 'Close All' menu item Update po-files

2008-05-24 09:42  stephan

	* src/thumbnail_bar.c:
	  Fix limits on thumbnail-scroll

2008-05-13 09:01  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/en_GB.po:
	  update en_GB translations

2008-05-12 13:31  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Fixed minor typo. Patch sent by Fabio Nogueira.

2008-05-12 12:36  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Add commandline options for fullscreen and slideshow (Patch by
	  Gauvain Pocentek <gauvainpocentek AT gmail DOT com>) (Fixes bug
	  #4077)

2008-05-12 12:34  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translation.

2008-05-12 07:35  stephan

	* po/bg.po, po/cs.po, po/de.po, po/el.po, po/fi.po, po/fr.po,
	  po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/ru.po, po/tr.po, po/ur.po,
	  po/zh_CN.po:
	  Update .po files

2008-05-12 07:31  stephan

	* src/thumbnail_bar.c:
	  Limit thumbnail scrolling in the right direction

2008-05-12 07:05  sas

	* po/hu.po:
	  little Hungarian updates

2008-05-12 06:57  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Add option to auto-hide thumbnail-bar when running a slideshow.
	  
	  Applied patch from Gauvain Pocentek <gauvainpocentek AT gmail DOT
	  com> (Fixes bug #4076)

2008-05-10 11:50  mmassonnet

	* po/ChangeLog, po/fr.po:
	  update french translation

2008-05-10 11:10  stephan

	* configure.in.in:
	  Post-release version bump

2008-05-10 11:09  stephan

	* ChangeLog, NEWS, configure.in.in, po/bg.po, po/cs.po, po/de.po,
	  po/el.po, po/fi.po, po/fr.po, po/hu.po, po/it.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/pt_PT.po,
	  po/ristretto.pot, po/ru.po, po/tr.po, po/ur.po, po/zh_CN.po:
	  Update .po-files Update ChangeLog Update NEWS file Update version
	  number

2008-05-10 10:40  stephan

	* src/main_window.c, src/thumbnail_bar.c:
	  Fix bug with xfdesktop-detection Scroll-wheel doesn't change
	  image anymore.

2008-05-06 22:20  stephan

	* src/main_window.c:
	  Should this check work!?

2008-05-06 09:27  stephan

	* src/navigator.c:
	  Remove debug message

2008-05-06 09:11  stephan

	* src/navigator.c:
	  Speedup time it takes to show the first image (when indexing a
	  complete folder)

2008-05-05 22:52  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translation.

2008-05-05 21:56  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/thumbnail.c,
	  src/thumbnail_bar.c:
	  Fix compile with --enable-debug=full Improve behaviour when
	  setting the wallpaper in xfdesktop

2008-05-05 21:39  stephan

	* src/main_window.c:
	  Auto-detect if xfdesktop is running

2008-05-05 21:11  stephan

	* src/navigator.c:
	  Improve cache size calculation a bit more.

2008-05-05 20:37  stephan

	* po/bg.po, po/cs.po, po/de.po, po/el.po, po/fi.po, po/fr.po,
	  po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/ru.po, po/tr.po, po/ur.po,
	  po/zh_CN.po, src/main.c, src/main_window.c, src/navigator.c,
	  src/navigator.h:
	  Update po-files Improve cache calculation

2008-04-23 23:16  stephan

	* src/main_window.c:
	  Fix set-wallpaper for ristretto-trunk :-)

2008-04-23 20:42  stephan

	* src/main.c:
	  Fix bug #4035

2008-04-23 18:15  stavrosg

	* po/ChangeLog, po/LINGUAS:
	  Greek translations updates

2008-04-19 23:35  stephan

	* src/main_window.c:
	  Improve set-wallpaper behaviour for ristretto
	  
	  (it now uses the correct xfconf properties and sets the wallpaper
	  on the monitor and screen that the ristretto-window is running
	  on)

2008-04-12 17:29  stavrosg

	* po/ChangeLog, po/el.po:
	  Added Greek translations for screenshooter and ristretto by
	  Evaggelos Balaskas.

2008-04-11 01:41  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translations

2008-04-07 18:37  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Improve wallpaper-changing

2008-04-06 22:25  stephan

	* src/main_window.c:
	  Enable xfce-desktop by default when support has been compiled in

2008-04-06 22:23  stephan

	* NEWS, configure.in.in, src/Makefile.am, src/main.c,
	  src/main_window.c:
	  Add optional depends on xfconf (for setting the desktop-wallpaper
	  in xfce 4.5+)
	  
	  Add set-wallpaper menu-item and configure the callback to do so.
	  
	  TODO: - Improve the error-handling - Improve preferences dialog
	  to enable/disable this feature when compiled in. :)

2008-03-30 17:43  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/ru.po:
	  Update Russian translation

2008-03-25 08:20  stephan

	* po/LINGUAS, po/nl.po, po/zh_CN.po:
	  Add Simplified chinese to LINGUAS file (forgot about that
	  earlier)

2008-03-23 12:09  stephan

	* configure.in.in:
	  Post release version bump

2008-03-23 12:08  stephan

	* configure.in.in:
	  Pre release version bump

2008-03-23 12:05  stephan

	* po/ChangeLog, po/de.po:
	  Update german translation (by Christian Dywan)

2008-03-23 12:03  stephan

	* ChangeLog:
	  Update ChangeLog

2008-03-23 11:26  stephan

	* po/bg.po, po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po,
	  po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/tr.po, po/ur.po,
	  src/main_window.c:
	  Update string and po-files

2008-03-23 10:35  stephan

	* ChangeLog, po/bg.po, po/cs.po, po/de.po, po/fi.po, po/fr.po,
	  po/hu.po, po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/tr.po, po/ur.po,
	  src/main_window.c:
	  Improve some strings

2008-03-23 09:41  stephan

	* src/navigator.c, src/navigator.h:
	  Make a function internal to the navigator

2008-03-23 08:59  stephan

	* po/ChangeLog, po/zh_CN.po:
	  Add Chinese translation by WuLi <wurisky AT gmail DOT com>

2008-03-23 08:49  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Show status-message when opening files

2008-03-22 07:55  stephan

	* src/picture_viewer.c:
	  Fix issue with DnD

2008-03-21 23:02  stephan

	* po/bg.po, po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po,
	  po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/pt_PT.po, po/ristretto.pot, po/tr.po, po/ur.po:
	  Make update-po

2008-03-21 23:00  stephan

	* src/main_window.c:
	  Add status messages

2008-03-21 22:45  stephan

	* src/main_window.c:
	  ...

2008-03-21 22:35  stephan

	* src/main.c, src/main_window.c, src/navigator.c:
	  Ok, really fixed it now

2008-03-21 15:12  stephan

	* src/main_window.c:
	  Improve performance when opening a folder from the menu

2008-03-21 14:57  stephan

	* src/main_window.c:
	  Improve behaviour when opening a folder from recent documents

2008-03-21 14:52  stephan

	* src/navigator.c:
	  Fix open of file from cli

2008-03-21 14:18  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h,
	  src/thumbnail_bar.c:
	  Fix errors when aborting while ristretto is opening a folder

2008-03-21 13:03  stephan

	* src/main.c:
	  When closing ristretto while it is opening a folder with images,
	  it wont crash inside the navigator-code. It will inside the
	  main_window (iter_changed signal handler), one step further in
	  fixing this.

2008-03-21 12:55  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Improve behaviour of thumbnails and thumbnail-bar

2008-03-18 13:23  mmassonnet

	* po/ChangeLog, po/nb_NO.po:
	  Update Norwegian translation

2008-03-18 13:05  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/pt_PT.po:
	  Update Portuguese translation

2008-02-26 10:26  jari

	* po/ChangeLog, po/fi.po:
	  Updated Finnish translation.

2008-02-25 09:17  stephan

	* ChangeLog, src/picture_viewer.c:
	  Update ChangeLog modify drag_dest_set on picture_viewer

2008-02-23 22:25  stephan

	* src/main.c:
	  Fix bug 3870;

2008-02-23 11:57  stephan

	* src/main.c, src/navigator.c, src/picture_viewer.c:
	  Improve behaviour when opening files from cli
	  
	  - open files while inside g_main_loop

2008-02-23 11:15  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c:
	  Remove code-duplication (Bug #3866)

2008-02-21 23:07  stephan

	* src/main_window.c, src/picture_viewer.c:
	  Made first attempt to add Drag and Drop

2008-02-21 10:02  stephan

	* src/main.c, src/main_window.c, src/main_window.h,
	  src/navigator.c, src/picture_viewer.c:
	  Add resize on maximize option (should find a better name for it)

2008-02-17 23:50  stephan

	* src/picture_viewer.c:
	  improve box-zoom behaviour (don't zoom at a zero-size box)

2008-02-17 23:41  stephan

	* src/main_window.c, src/picture_viewer.c:
	  Improve zoom-box Improve behaviour when opening folders

2008-02-17 11:54  stephan

	* configure.in.in:
	  Post release version bump

2008-02-17 11:53  stephan

	* ChangeLog, NEWS, configure.in.in:
	  Pre-release version bump Update ChangeLog Update NEWS

2008-02-16 23:13  stephan

	* src/navigator.c, src/navigator.h, src/thumbnail.c,
	  src/thumbnail.h, src/thumbnail_bar.c:
	  Improve behaviour of the thumbnails, lets them manage
	  widget-states themselves instead of relying on the parent-class
	  to do it for them.

2008-02-11 17:50  stephan

	* src/thumbnail_bar.c:
	  improve scroll-behaviour

2008-02-11 17:14  stephan

	* src/thumbnail_bar.c:
	  Fix scroll-wheel behaviour

2008-02-11 13:09  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Improve expose behaviour

2008-02-11 12:43  stephan

	* src/thumbnail_bar.c:
	  Add some style details for the thumbnail-bar

2008-02-11 12:27  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Improve theme-ability a bit more

2008-02-11 12:12  stephan

	* src/thumbnail.c:
	  Modify looks and behaviour of thumbnails
	  
	  It might require some themes to add an aditional entry
	  specifically for ristretto to increase the contrast.

2008-02-08 16:53  jari

	* po/ChangeLog, po/fi.po:
	  Updated Finnish translation

2008-02-08 12:17  mmassonnet

	* po/ChangeLog, po/fr.po:
	  ristretto: Update French translation

2008-02-08 10:33  stephan

	* po/bg.po, po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po,
	  po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/ristretto.pot, po/tr.po, po/ur.po:
	  Update po-files

2008-02-07 00:14  stephan

	* ChangeLog:
	  Update ChangeLog

2008-02-06 23:39  stephan

	* src/thumbnail_bar.c:
	  Fix thumbnail-bar bg-color

2008-02-06 23:32  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Fixed bug 3823

2008-02-05 08:41  stephan

	* src/thumbnail_bar.c:
	  one step closer to making it work...

2008-02-05 00:06  stephan

	* ChangeLog, ristretto.desktop.in, src/thumbnail.c,
	  src/thumbnail_bar.c:
	  Fix desktop-file Modify thumbnail-bar (if i get the expose
	  right... it should work, i think) Modify changelog

2008-01-28 19:46  stephan

	* src/picture_viewer.c:
	  Fix bug #3824

2008-01-27 22:24  stephan

	* configure.in.in:
	  post-release version bump

2008-01-27 22:23  stephan

	* configure.in.in:
	  Pre-release version bump

2008-01-27 22:17  stephan

	* ChangeLog, NEWS:
	  Update ChangeLog and NEWS

2008-01-27 22:05  stephan

	* ChangeLog:
	  Update changelog

2008-01-27 21:48  stephan

	* src/navigator.c:
	  Implement directory_handle

2008-01-27 21:36  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h:
	  Add new monitor-handle on open-folder (don't add handles on
	  individual files then)

2008-01-27 17:50  stephan

	* po/ChangeLog, po/LINGUAS, po/tr.po:
	  Add turkish translation by Eren Turkay and Onur Kucuk

2008-01-26 15:32  stephan

	* src/navigator.c:
	  change stuff

2008-01-26 15:20  stephan

	* src/main_window.c, src/main_window.h, src/picture_viewer.c:
	  Changed stuff

2008-01-21 18:46  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translations by Fábio Nogueira
	  <deb-user-ba@ubuntu.com>.

2008-01-20 14:48  stephan

	* src/navigator.c:
	  potential fix for borked animated gifs

2008-01-20 13:48  stephan

	* ChangeLog:
	  Update ChangeLog

2008-01-20 13:38  stephan

	* src/main.c:
	  Set default cache-size to 64MB

2008-01-20 13:16  stephan

	* src/navigator.c, src/thumbnail.c:
	  fix segfault

2008-01-19 12:48  stephan

	* src/navigator.c, src/thumbnail.c, src/thumbnail_bar.c:
	  Replace one segfault by another

2008-01-16 18:07  stephan

	* src/navigator.c, src/thumbnail_bar.c:
	  Fix segfault

2008-01-15 22:25  stephan

	* src/navigator.c:
	  Fix thumbnail generation with alpha-channel

2008-01-15 22:19  stephan

	* configure.in.in, src/Makefile.am, src/main.c, src/navigator.c,
	  src/navigator.h:
	  Revert changes made in revision 3809

2008-01-15 20:31  majkl

	* po/cs.po:
	  Czech translation updated

2008-01-14 22:14  stephan

	* configure.in.in, src/Makefile.am, src/main.c, src/navigator.c,
	  src/navigator.h:
	  Remove xfcerc dep

2008-01-12 13:33  stephan

	* ChangeLog:
	  Update ChangeLog

2008-01-12 13:31  stephan

	* po/bg.po, po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po,
	  po/it.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po,
	  po/ristretto.pot, po/ur.po, src/main.c, src/main_window.c,
	  src/navigator.c, src/navigator.h:
	  Update .po files Add cache configuration

2008-01-12 09:35  stephan

	* src/navigator.c, src/navigator.h, src/picture_viewer.c:
	  Modify cache, fix compile bug

2008-01-12 09:18  stephan

	* src/navigator.c, src/navigator.h, src/picture_viewer.c:
	  Fix scrolled-zoom (and broke preloading)

2008-01-12 09:10  stephan

	* src/picture_viewer.c:
	  fix box-zoom

2008-01-11 23:20  stephan

	* src/navigator.c, src/thumbnail_bar.c:
	  Add scrolling support to thumbnail_bar Add function to return the
	  size of a pixbuf (in bytes) to the navigator

2008-01-11 15:16  stephan

	* ChangeLog:
	  Update ChangeLog

2008-01-11 14:59  stephan

	* src/main_window.c, src/picture_viewer.c, src/picture_viewer.h:
	  Add zoom modes

2008-01-04 13:16  stephan

	* po/ChangeLog, po/LINGUAS, po/bg.po:
	  Add Bulgarian translation by Plamen Stoychev Stoev <piros89 AT
	  gmail DOT com>

2008-01-02 15:10  stephan

	* src/thumbnail_bar.c:
	  Fix auto-center restore

2008-01-02 14:42  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Improve the thumbnail bar a bit

2007-12-24 14:35  stephan

	* src/navigator.c:
	  Fix preloader (set max_history on 1)

2007-12-24 09:11  stephan

	* src/thumbnail_bar.c:
	  Fix the expose function for the thumbnail bar (finally)

2007-12-24 00:00  stephan

	* po/Makevars, src/navigator.c, src/thumbnail.c,
	  src/thumbnail_bar.c:
	  Improve thumbnail-bar a bit more put xfce-i18n m/l in Makevars
	  file

2007-12-23 08:50  stephan

	* po/ChangeLog, po/LINGUAS, po/it.po, src/navigator.c:
	  Add italian translation by Fabio Vergnani <monghitri AT aruba DOT
	  it>

2007-12-22 07:05  stephan

	* po/Makefile.in.in:
	  remove an autogenerated file from svn

2007-12-22 07:05  stephan

	* po/Makefile.in.in, po/POTFILES.in, src/thumbnail.c,
	  src/thumbnail_bar.c:
	  Fix make distcheck (add correct filenames to POTFILES.in)
	  
	  Fix auto-center for thumbnail-bar

2007-12-22 06:37  stephan

	* src/navigator.c, src/navigator.h, src/thumbnail_bar.c:
	  Sort thumbnails like the items in the navigator are sorted.

2007-12-21 20:18  stephan

	* src/main.c, src/thumbnail.c, src/thumbnail.h,
	  src/thumbnail_bar.c:
	  Improve the thumbnails

2007-12-18 18:49  stephan

	* ChangeLog, po/Makefile.in.in, src/navigator.c, src/navigator.h,
	  src/thumbnail.c, src/thumbnail_bar.c:
	  Update ChangeLog Improve the thumbnail-bar

2007-12-17 21:55  stephan

	* src/main.c, src/main_window.c, src/thumbnail.c:
	  Fix includes

2007-12-17 21:35  stephan

	* src/Makefile.am, src/main.c, src/navigator.c, src/navigator.h,
	  src/thumbnail.c, src/thumbnail.h, src/thumbnail_bar.c,
	  src/thumbnail_viewer.c, src/thumbnail_viewer.h:
	  Remove thumbnail-viewer Allow toggle for thumbnails

2007-12-17 20:46  stephan

	* src/thumbnail.c, src/thumbnail_bar.c:
	  Fix window resize

2007-12-16 13:16  stephan

	* src/main_window.c, src/thumbnail.c, src/thumbnail_bar.c:
	  - Some improvements to the thumbnail-bar - remove an obsolete
	  line of code from the main_window

2007-12-15 10:42  stephan

	* src/thumbnail_bar.c:
	  Set visible

2007-12-15 09:51  stephan

	* src/Makefile.am, src/main_window.c, src/navigator.c,
	  src/navigator.h, src/thumbnail.c, src/thumbnail.h,
	  src/thumbnail_bar.c, src/thumbnail_bar.h, src/thumbnail_viewer.c:
	  Add replacement for thumbnail-viewer. It is still a bit broken at
	  the moment.

2007-12-09 21:38  stephan

	* configure.in.in:
	  post release version bump

2007-12-09 21:37  stephan

	* configure.in.in:
	  Pre-release version bump

2007-12-09 21:36  stephan

	* src/picture_viewer.c:
	  Just check for the CONTROL_MASK (a hack, but the behaviour is the
	  same)

2007-12-09 11:35  stephan

	* src/picture_viewer.c:
	  Change modifiers a bit

2007-12-09 11:22  stephan

	* src/picture_viewer.c:
	  Modify masks to fix drag-move

2007-12-09 00:05  stephan

	* src/picture_viewer.c:
	  Center box-zoom

2007-12-08 23:20  stephan

	* ChangeLog, po/ChangeLog, po/nl.po:
	  Update ChangeLogs and dutch translation

2007-12-08 23:11  stephan

	* src/main.c, src/main_window.c, src/picture_viewer.c,
	  src/picture_viewer.h:
	  Fix boxed-zoom

2007-12-06 00:04  stephan

	* src/main.c:
	  Fix segfault

2007-12-05 05:20  stephan

	* src/main.c:
	  Applied patch from Sergio Perticone (fixes relative-path issue)

2007-12-04 17:25  majkl

	* po/cs.po:
	  Czech translation updated

2007-12-04 17:15  stephan

	* ChangeLog, src/main.c:
	  Remove the accidental gtk 2.12 dep

2007-12-03 21:51  maximilian

	* po/ChangeLog, po/de.po:
	  Latvian and German translations added and updated respectively.

2007-12-03 03:36  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Brazilian Portuguese translations updated by Fábio Nogueira
	  <deb-user-ba@ubuntu.com>

2007-12-01 17:08  stephan

	* configure.in.in:
	  post-release version bump

2007-12-01 17:06  stephan

	* ChangeLog, configure.in.in:
	  Update changelog Pre-release version-bump

2007-12-01 15:59  stephan

	* ChangeLog, po/ChangeLog, po/de.po:
	  Update ChangeLog Update german translation (by Christian Dywan)

2007-12-01 09:53  mmassonnet

	* po/ChangeLog, po/fr.po:
	  Update french translation

2007-12-01 09:07  stephan

	* po/ChangeLog, po/nl.po:
	  Update dutch translation

2007-12-01 09:03  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po,
	  src/main_window.c:
	  Update po-files

2007-12-01 08:49  stephan

	* src/main.c:
	  Applied patch from david baggerman <david DOT baggerman AT gmail
	  DOT com>

2007-11-30 23:18  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po:
	  update po files

2007-11-30 23:14  stephan

	* ChangeLog, po/ChangeLog, po/cs.po, po/de.po, po/fi.po, po/fr.po,
	  po/hu.po, po/lv.po, po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ur.po,
	  src/main.c, src/main_window.c, src/picture_viewer.c,
	  src/thumbnail_viewer.c:
	  Modify behaviour when opening files from CLI Fix bg-color stuff
	  Improve the preferences dialog. Update dutch translation. (and
	  the other .po files)

2007-11-30 01:28  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Updated Brazilian Portuguese translation by Fábio Nogueira
	  <deb-user-ba@ubuntu.com>

2007-11-28 22:37  majkl

	* po/cs.po:
	  Czech translation updated

2007-11-27 22:23  stephan

	* src/main_window.c:
	  Fix some preferences dialog issues

2007-11-27 22:14  stephan

	* src/main.c, src/main_window.c, src/main_window.h,
	  src/picture_viewer.c, src/picture_viewer.h:
	  Allow bg-color to be overridden (non gtk-style, bug #3691)

2007-11-27 18:32  stephan

	* ChangeLog, src/main_window.c, src/navigator.c:
	  Update ChangeLog Add shortcuts for rotating Fix thumbnail scaling
	  when thumbnails are first generated (Bug #3693)

2007-11-26 20:38  stephan

	* src/main_window.c:
	  Add bg-color selector stub

2007-11-25 17:17  stephan

	* configure.in.in:
	  post-release version bump

2007-11-25 17:16  stephan

	* ChangeLog, configure.in.in:
	  Pre-release version bump (and ChangeLog update)

2007-11-25 17:15  stephan

	* po/ChangeLog, po/cs.po:
	  Update Czech translation (by Miro Hrončok)

2007-11-25 11:06  mmassonnet

	* po/ChangeLog, po/fr.po:
	  ristretto: Update fr translation

2007-11-25 11:02  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po,
	  src/main_window.c:
	  Add some more mnemonics

2007-11-25 11:00  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po,
	  src/main_window.c:
	  Add mnemonics to menu items

2007-11-25 10:55  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po:
	  Update po-files

2007-11-25 10:54  stephan

	* ChangeLog:
	  Update ChangeLog

2007-11-25 10:47  stephan

	* src/main_window.c, src/picture_viewer.c, src/picture_viewer.h:
	  Make bg prettier

2007-11-25 10:32  stephan

	* configure.in.in, ristretto.desktop.in, src/picture_viewer.c:
	  Remove some obsolete debug stuff (xdg-debug is allready defined)
	  from configure.in.in Remove some depricated stuff from
	  ristretto.desktop.in Fix segfault

2007-11-25 10:27  stephan

	* src/picture_viewer.c:
	  Box-zoom *almost* works

2007-11-25 09:02  stephan

	* src/picture_viewer.c:
	  First (broken) version of boxed zoom added.

2007-11-24 19:02  stephan

	* src/picture_viewer.c:
	  Added box to picture viewer (now for the zoom part)

2007-11-24 17:26  stephan

	* src/main_window.c:
	  Fix sensitivity of rotate buttons

2007-11-24 13:45  stephan

	* src/main_window.c, src/navigator.c, src/navigator.h:
	  Fix rotation

2007-11-23 22:47  stephan

	* po/cs.po, po/de.po, po/fi.po, po/fr.po, po/hu.po, po/lv.po,
	  po/nb_NO.po, po/nl.po, po/pt_BR.po, po/ristretto.pot, po/ur.po,
	  src/main_window.c:
	  Add zooming and rotation menus. (latter is not yet working)

2007-11-23 21:57  stephan

	* ChangeLog, src/main.c:
	  Fix segfault when running ristretto with unknown cli-options

2007-11-19 23:06  maximilian

	* po/ChangeLog, po/LINGUAS, po/lv.po:
	  Latvian translations added to most goodies.

2007-11-17 13:31  stephan

	* configure.in.in:
	  post-release version bump

2007-11-17 13:28  stephan

	* ChangeLog, configure.in.in:
	  Pre release version bump ChangeLog update

2007-11-17 13:19  stephan

	* src/main.c:
	  Fix funky indent

2007-11-17 13:18  stephan

	* src/main.c, src/main_window.c:
	  Fix open file from CLI Fix window-title (show correct nr of total
	  images)

2007-11-17 12:46  stephan

	* src/main_window.c:
	  Allow leaving full-screen with 'escape' key-press

2007-11-17 12:40  stephan

	* src/main_window.c:
	  Fix toolbar toggle when switching back from fullscreen (Bug
	  #3655)

2007-11-17 12:18  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  Improve performance when opening new images

2007-11-17 11:26  stephan

	* src/picture_viewer.c:
	  Fix the cpu-usage

2007-11-15 08:37  mmassonnet

	* po/ChangeLog:
	  Fix changelogs for updated ur.po files, and add
	  thunar-archive-plugin

2007-11-15 08:24  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/pk.po, po/ur.po:
	  Rename pk.po to ur.po

2007-11-12 08:48  mmassonnet

	* po/ChangeLog, po/cs.po:
	  Update cs.po

2007-11-06 21:00  stephan

	* configure.in.in:
	  Post-release version bump

2007-11-06 20:59  stephan

	* ChangeLog, configure.in.in:
	  Pre-release version-bump

2007-11-06 20:53  stephan

	* src/picture_viewer.c:
	  Clean up the picture-viewer

2007-11-05 21:42  stephan

	* src/picture_viewer.c:
	  Fix zoom

2007-11-05 20:28  stephan

	* src/picture_viewer.c:
	  Improved zoom support (with mouse-wheel)

2007-11-05 05:27  stephan

	* src/main_window.c:
	  modify border-width

2007-11-05 04:54  mmassonnet

	* po/ChangeLog, po/fr.po:
	  * ristretto: update fr translation

2007-11-04 21:56  stephan

	* po/ChangeLog, po/LINGUAS, po/cs.po:
	  Add Czech translation by Miro Hrončok <churchyard AT gmail DOT
	  com>

2007-11-04 12:53  omaciel

	* po/ChangeLog, po/pt_BR.po:
	  Brazilian Portuguese translation updated by Og Maciel
	  <ogmaciel@gnome.org>

2007-11-04 09:10  stephan

	* po/de.po, po/fi.po, po/fr.po, po/hu.po, po/nb_NO.po, po/nl.po,
	  po/pk.po, po/ristretto.pot, src/thumbnail_viewer.c:
	  Update po-files Add some comments to the thumbnail-viewer

2007-11-04 08:09  stephan

	* src/main_window.c:
	  Applied patch from Mike Massonnet <mmassonnet at gmail dot com>
	  Makes preferences-dialog look prettier.

2007-11-04 04:34  omaciel

	* po/ChangeLog, po/LINGUAS, po/pt_BR.po:
	  Added new Brazilian Portuguese translation by Og Maciel
	  <ogmaciel@gnome.org>

2007-11-03 23:57  stephan

	* po/de.po, po/fi.po, po/fr.po, po/hu.po, po/nb_NO.po, po/nl.po,
	  po/pk.po, po/ristretto.pot, src/main_window.c:
	  Improve preferences dialog a bit

2007-11-03 16:43  mmassonnet

	* po/fr.po:
	  * ristretto/fr.po: little fixes

2007-11-03 16:08  mmassonnet

	* po/ChangeLog, po/fr.po:
	  * ristretto: update fr translation

2007-11-03 13:58  stephan

	* configure.in.in:
	  Post-release version bump

2007-11-03 13:57  stephan

	* ChangeLog, configure.in.in:
	  Update ChangeLog pre-release version bump

2007-11-03 13:54  stephan

	* src/thumbnail_viewer.c:
	  Fix rendering bug with thumbnail-viewer

2007-11-03 08:18  stephan

	* po/de.po, po/fi.po, po/fr.po, po/hu.po, po/nb_NO.po, po/nl.po,
	  po/pk.po, po/ristretto.pot, src/main_window.c:
	  Improve preferences dialog fix strings

2007-11-03 08:04  stephan

	* po/nl.po, src/navigator.c:
	  Update dutch translation Fix segfault

2007-11-02 23:14  stephan

	* ChangeLog:
	  Modify ChangeLog

2007-11-02 23:00  stephan

	* po/de.po, po/fi.po, po/fr.po, po/hu.po, po/nb_NO.po, po/nl.po,
	  po/pk.po, po/ristretto.pot, src/main_window.c:
	  Add some strings

2007-11-02 22:11  stephan

	* src/main_window.c, src/navigator.c:
	  Fix segfault add preload to preferences dialog

2007-11-02 11:42  sas

	* po/LINGUAS, po/hu.po:
	  hu trunk: ristretto, vnc

2007-11-01 22:08  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c:
	  Add preloader

2007-10-29 19:33  stephan

	* configure.in.in, src/Makefile.am, src/main.c, src/main_window.c,
	  src/main_window.h, src/navigator.c, src/picture_viewer.c:
	  Add preferences dialog add libxfcegui4 dependency

2007-10-29 11:38  stephan

	* src/main.c, src/navigator.c, src/navigator.h:
	  Fix fd issue

2007-10-29 09:41  stephan

	* src/Makefile.am, src/main.c, src/main_window.c, src/navigator.c,
	  src/navigator.h, src/picture_viewer.c:
	  Add cache to ristretto... (it now saves up to 5 images in memory
	  after rendering them)

2007-10-28 19:05  mmassonnet

	* po/ChangeLog, po/LINGUAS, po/pk.po:
	  Add new translation by محمد علي المكي <makki.ma@gmail.com>

2007-10-24 12:27  mmassonnet

	* po/ChangeLog, po/fr.po:
	  * ristretto, xfce4-mount-plugin, xfce4-places-plugin,
	  xfce4-rss-plugin, xfce4-sensors-plugin, xfce4-time-out-plugin,
	  xfce4-volstatus-icon: Update french translation *
	  thunar-svn-plugin, xfce4-smartpm-plugin: Add french translation

2007-10-21 07:41  stephan

	* src/picture_viewer.c:
	  Improve motion of image a bit

2007-10-20 23:14  stephan

	* src/picture_viewer.c:
	  Improve zooming through toolbar zoom buttons

2007-10-20 22:42  stephan

	* po/de.po, po/fi.po, po/fr.po, po/nb_NO.po, po/nl.po,
	  po/ristretto.pot, src/picture_viewer.c:
	  Update po files improve motion event handling on picture viewer

2007-10-20 11:52  stephan

	* src/picture_viewer.c:
	  Fix real-time update when moving the image around Remove
	  mouse-wheel zoom, going to fix that later

2007-10-20 10:07  stephan

	* src/picture_viewer.c:
	  Improved zooming a little

2007-10-20 08:39  stephan

	* src/main_window.c:
	  Fix an error with the properties dialog

2007-10-19 22:16  stephan

	* src/picture_viewer.c:
	  repaint picture viewer widget on size allocate

2007-10-19 19:22  stephan

	* configure.in.in, src/Makefile.am, src/main_window.c:
	  Add file properties dialog

2007-10-16 20:44  stephan

	* src/main.c:
	  Add --version cli option.

2007-10-15 22:07  stephan

	* src/picture_viewer.c:
	  Apply patch from Peter de Ridder <peter@xfce.org>, fixes an issue
	  with moving an image by dragging.

2007-10-15 21:34  stephan

	* configure.in.in:
	  Post release version bump

2007-10-15 21:33  stephan

	* ChangeLog, configure.in.in:
	  Pre release version bump Update ChangeLog

2007-10-15 21:28  stephan

	* src/picture_viewer.c:
	  Modify some code that manages dragging

2007-10-15 21:11  stephan

	* src/main_window.c:
	  Add open with to picture viewer menu

2007-10-15 20:35  stephan

	* src/main_window.c:
	  Add open and close feature to context menu

2007-10-15 20:30  stephan

	* src/main_window.c:
	  Fix sensitivity of menu items

2007-10-15 20:26  stephan

	* ChangeLog, src/main_window.c, src/picture_viewer.c,
	  src/picture_viewer.h:
	  Add popup menu to picture viewer

2007-10-15 18:30  stephan

	* src/picture_viewer.c:
	  Fix EXIF rotation again...

2007-10-14 23:18  stephan

	* src/picture_viewer.c:
	  Add right-click menu to picture viewer... should be properly
	  free-ed later.

2007-10-14 22:48  stephan

	* src/picture_viewer.c:
	  Add dragging to move focus of zoomed image

2007-10-14 08:51  stephan

	* configure.in.in:
	  Post release version bump

2007-10-14 08:50  stephan

	* ChangeLog, configure.in.in, po/Makefile.in.in:
	  Pre release version bump

2007-10-14 07:45  stephan

	* src/main.c, src/main_window.c, src/navigator.c,
	  src/picture_viewer.c:
	  Fix memory leaks and segfault

2007-10-13 23:27  stephan

	* src/picture_viewer.c:
	  Improve memory usage for static images (needs some cleaning up
	  though)

2007-10-13 23:12  stephan

	* src/picture_viewer.c:
	  Fix segfault

2007-10-13 16:20  stephan

	* src/picture_viewer.c:
	  Fix segfault with animated images

2007-10-13 15:58  stephan

	* src/picture_viewer.c:
	  Fix memory leak

2007-10-13 14:54  stephan

	* src/picture_viewer.c:
	  Fix memory leak

2007-10-12 20:08  stephan

	* src/picture_viewer.c:
	  Fix scrollbars when scrolling on an image which is biger then the
	  viewport.

2007-10-12 20:02  stephan

	* src/picture_viewer.c:
	  Fix cursor

2007-10-12 19:46  stephan

	* src/picture_viewer.c:
	  Fix reference bug

2007-10-12 17:53  stephan

	* po/Makefile.in.in, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c:
	  Fix rendering issue with picture viewer Fix EXIF rotation Fix
	  memory leak

2007-10-09 20:38  stephan

	* src/navigator.c, src/picture_viewer.c, src/thumbnail_viewer.c:
	  Support animated images

2007-10-08 21:28  stephan

	* src/picture_viewer.c:
	  Fix picture viewer refresh

2007-10-07 22:30  stephan

	* configure.in.in:
	  Update version number (forgot to do so...)

2007-10-02 21:03  stephan

	* src/navigator.c, src/navigator.h, src/picture_viewer.c,
	  src/thumbnail_viewer.c:
	  Use thunar thumbnail factory for thumbnail stuff...

2007-09-30 22:30  stephan

	* src/picture_viewer.c:
	  Add GdkPixbufAnimation and GdkPixbufLoader to PictureViewer
	  widget
	  
	  It is still a bit of a hack, but it's a start.

2007-09-30 12:14  stephan

	* ChangeLog, configure.in.in:
	  Update ChangeLog and bump version number

2007-09-30 12:07  stephan

	* src/main_window.c, src/navigator.c:
	  Fix segfault and some b0rked if-statements

2007-09-30 11:46  stephan

	* configure.in.in:
	  Post-release version-bump

2007-09-30 11:44  stephan

	* ChangeLog, configure.in.in:
	  Update ChangeLog Bump version number for release (0.0.6)

2007-09-30 09:27  stephan

	* src/navigator.c:
	  Fix mem-leak

2007-09-30 08:47  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h:
	  Add an 'is_album' flag (so ristretto knows when to clean up the
	  navigator)

2007-09-29 14:07  stephan

	* src/thumbnail_viewer.c:
	  Fix offset issue with thumbnail viewer

2007-09-29 13:18  stephan

	* src/main.c, src/main_window.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c, src/thumbnail_viewer.c:
	  Add exif orientation support

2007-09-29 12:22  stephan

	* src/main_window.c:
	  Fix sensitivity of toolbar buttons

2007-09-29 12:03  stephan

	* src/main_window.c, src/picture_viewer.c, src/picture_viewer.h:
	  Disable timeout on picture-viewer when running slideshow

2007-09-29 11:51  stephan

	* src/picture_viewer.c, src/thumbnail_viewer.c:
	  Improve scrolling :-)

2007-09-29 08:03  stephan

	* src/main_window.c:
	  Fix open-with menu item... should really focus on performance
	  now... :/

2007-09-28 20:01  stephan

	* src/main.c:
	  Modify opening files from cli, to support relative paths.

2007-09-28 17:56  stephan

	* src/main.c, src/main_window.c, src/main_window.h,
	  src/navigator.c, src/navigator.h:
	  Fix open from CLI

2007-09-27 21:32  stephan

	* po/de.po, po/fi.po, po/fr.po, po/nb_NO.po, po/nl.po,
	  po/ristretto.pot, src/main_window.c:
	  Fix 'clear recent documents' Fix title in titlebar

2007-09-25 20:34  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Fix other settings

2007-09-25 17:57  stephan

	* src/main.c, src/main_window.c, src/main_window.h:
	  Re-implement some settings-management

2007-09-25 17:23  stephan

	* src/main_window.c, src/navigator.c, src/navigator.h:
	  Fix remaining signal-handlers

2007-09-25 04:00  stephan

	* configure.in.in, icons/16x16/ristretto.png, po/POTFILES.in,
	  po/de.po, po/fi.po, po/fr.po, po/nb_NO.po, po/nl.po,
	  po/ristretto.pot, src/Makefile.am, src/main.c, src/main_window.c,
	  src/main_window.h, src/picture_viewer.c, src/thumbnail_viewer.c:
	  Cleanup the main_window code

2007-09-15 14:49  mmassonnet

	* po/ChangeLog, po/fr.po:
	  Update french translation

2007-09-14 08:26  jari

	* po/ChangeLog, po/LINGUAS, po/fi.po:
	  Update Finnish translation.

2007-09-13 21:28  stephan

	* src/picture_viewer.c:
	  Fix critical warning

2007-09-13 21:08  stephan

	* configure.in.in:
	  Post-release version bump

2007-09-13 21:07  stephan

	* ChangeLog, configure.in.in:
	  Update ChangeLog Update version-number

2007-09-12 21:16  stephan

	* src/picture_viewer.c:
	  Fix scrolling

2007-09-12 20:55  stephan

	* src/main.c:
	  Forgotten the toolbar

2007-09-12 20:50  stephan

	* src/main.c:
	  Fix segfault and modify sensitivity of nav-buttons.

2007-09-12 20:26  stephan

	* src/main.c:
	  fixed yet another segfault (why doesn't it crash here?!)

2007-09-12 20:23  stephan

	* po/ChangeLog, po/de.po, src/main.c:
	  Update german translation (thanks to Christian Dywan) Fix other
	  segfault

2007-09-12 20:20  stephan

	* src/main.c:
	  think i fixed it.

2007-09-12 20:15  stephan

	* src/main.c:
	  Fix segfault

2007-09-12 19:55  stephan

	* src/main.c, src/navigator.c:
	  Fix the order in which the signals are send when removing images.
	  (closing them) Fix sensitivity of close button

2007-09-12 17:20  stephan

	* po/de.po, po/fr.po, po/nb_NO.po, po/nl.po, po/ristretto.pot,
	  src/picture_viewer.c:
	  Modified some stuff

2007-09-11 22:02  stephan

	* po/de.po, po/fr.po, po/nb_NO.po, po/nl.po, po/ristretto.pot,
	  src/main.c:
	  Update po-files

2007-09-11 21:59  stephan

	* src/main.c, src/navigator.c, src/picture_viewer.c:
	  Fix closing of images Add a confirmation-dialog to the
	  recently-used clear button

2007-09-10 20:47  stephan

	* src/main.c, src/navigator.c, src/navigator.h,
	  src/thumbnail_viewer.c:
	  Adding close button

2007-09-10 19:29  stephan

	* ristretto.desktop.in, src/main.c:
	  Improved the applications menu a bit.

2007-09-09 22:10  stephan

	* src/main.c:
	  Place it in a submenu

2007-09-09 22:01  stephan

	* po/de.po, po/fr.po, po/nb_NO.po, po/nl.po, po/ristretto.pot,
	  src/main.c:
	  Evil hack, but it at least gives an idea of how the stuff should
	  work.

2007-09-08 14:30  stephan

	* configure.in.in:
	  Post-release version bump

2007-09-08 14:29  stephan

	* configure.in.in:
	  Pre release version bump

2007-09-08 14:24  mmassonnet

	* po/ChangeLog, po/fr.po:
	  Update french translation

2007-09-08 14:24  stephan

	* ChangeLog, src/main.c:
	  Update Changelog place clear-code behind a timeout (now nobody
	  notices it takes time)

2007-09-08 14:05  stephan

	* ristretto.desktop.in, src/main.c:
	  Improve .desktop file (fix max's bug) Allow ristretto to open
	  multiple files from the cli

2007-09-08 13:56  stephan

	* po/de.po, src/main.c:
	  Fix a bug in german translation Fix clear (should be both fast
	  and usefull now)

2007-09-08 13:42  stephan

	* src/main.c:
	  remove all items from the recent-manager. (see if that is faster,
	  should be fixed later though)

2007-09-08 13:34  stephan

	* README, po/ChangeLog, po/de.po, po/fr.po, po/nb_NO.po, po/nl.po,
	  po/ristretto.pot, src/main.c:
	  Update readme Update german translation Update dutch translation
	  Update mnemonic for menu-item

2007-09-08 10:58  stephan

	* src/main.c, src/navigator.c, src/navigator.h:
	  Add option to configure slideshow timeout (only in config-file
	  for now)

2007-09-08 10:43  stephan

	* ChangeLog, src/main.c:
	  Update ChangeLog Fix toggling slideshow when fullscreen

2007-09-08 10:27  stephan

	* src/main.c:
	  Thumbnail-viewer visibility can now be toggled using ^t (Bug
	  #3507)

2007-09-08 10:14  stephan

	* po/de.po, po/fr.po, po/nb_NO.po, po/nl.po, po/ristretto.pot,
	  src/main.c:
	  Update .po files

2007-09-08 10:12  stephan

	* src/picture_viewer.c:
	  improve zooming performance

2007-09-04 21:44  stephan

	* src/picture_viewer.c:
	  Fix busy-cursor

2007-09-04 18:12  stephan

	* src/picture_viewer.c:
	  Reduce timeout on picture_viewer (might improve the feel of the
	  app)

2007-09-04 17:46  stephan

	* src/main.c, src/thumbnail_viewer.c:
	  Applied patch from Mike Massonnet (Bug #3529) Fixed
	  floating-point-exception in thumbnail-viewer.

2007-09-03 18:36  stephan

	* src/thumbnail_viewer.c:
	  Thumbnail-viewer now updates when a new image is added to the
	  navigator

2007-09-03 18:07  stephan

	* po/de.po, po/fr.po, po/nb_NO.po, po/nl.po, po/ristretto.pot,
	  src/main.c:
	  Add cleanup function to recent-documents menu

2007-09-03 17:20  stephan

	* src/main.c, src/navigator.c:
	  Page-Up/Page-Down no longer skip an entry. replaced check with an
	  assertion.

2007-09-03 16:44  stephan

	* po/ChangeLog, po/de.po, src/navigator.c:
	  Update german translation (thanks to Christian Dywan) Applied
	  patch from Mike Massonnet (fixes bug #3527)

2007-09-02 21:21  stephan

	* configure.in.in:
	  Post-release version bump

2007-09-02 21:18  stephan

	* configure.in.in:
	  Update version number

2007-09-02 21:12  stephan

	* ChangeLog, src/main.c:
	  Update ChangeLog, remember window-dimensions.

2007-09-02 12:44  mmassonnet

	* po/ChangeLog, po/fr.po:
	  * Update french translation. * Fix ChangeLog with last addition
	  of nb_NO translation.

2007-09-02 12:07  stephan

	* ChangeLog, po/de.po, po/fr.po, po/nb_NO.po, po/nl.po,
	  po/ristretto.pot, src/main.c:
	  Toggle toolbar

2007-09-02 11:53  stephan

	* src/main.c:
	  Set important flags on navigation toolitems

2007-09-02 09:34  stephan

	* src/picture_viewer.c:
	  Really fix the zooming this time

2007-09-02 06:51  stephan

	* src/main.c, src/picture_viewer.c:
	  Zoom to mouse-pointer on PictureViewer Do not set zoom-fit when
	  fullscreen

2007-09-01 14:23  stephan

	* src/picture_viewer.c:
	  Improve performance when scrolling the thumbnailer

2007-09-01 13:55  stephan

	* INSTALL, install-sh, missing, src/thumbnail_viewer.c:
	  Remove Autogenerated files (and some unused code from the
	  thumbnail-viewer)

2007-09-01 13:41  stephan

	* ChangeLog, INSTALL, install-sh, missing, po/Makefile.in.in,
	  src/main.c, src/navigator.c, src/picture_viewer.c,
	  src/thumbnail_viewer.c:
	  Modify ChangeLog (i really should take a look at it prior to
	  releases) Fix some bugs with the thumbnail viewer

2007-08-30 15:05  stephan

	* src/main.c, src/picture_viewer.c, src/picture_viewer.h:
	  modified some stuff to make it work with gtk 2.11 (which it
	  doesn't)

2007-08-29 23:01  stephan

	* configure.in.in:
	  post-release version bump

2007-08-29 22:44  stephan

	* icons/22x22/Makefile.am, icons/24x24/Makefile.am,
	  icons/32x32/Makefile.am, icons/36x36/Makefile.am:
	  Add missing makefiles

2007-08-29 22:36  stephan

	* Makefile.am, configure.in.in:
	  Fix make distcheck Pre-release version-bump

2007-08-29 22:29  stephan

	* po/nb_NO.po:
	  update po-files

2007-08-29 20:41  mmassonnet

	* po/LINGUAS, po/nb_NO.po:
	  Add Nordic translations to ristretto and notification-daemon.

2007-08-29 19:22  stephan

	* depcomp, gettext.h, po/de.po, stamp-h.in:
	  Remove other autogenerated files from svn Fixed bug in german
	  translation

2007-08-29 19:19  stephan

	* aclocal.m4, compile, config.h.in, intltool-extract.in,
	  intltool-merge.in, intltool-update.in, mkinstalldirs,
	  src/thumbnail_viewer.c:
	  Remove autogenerated files from svn Remove obsolete includes from
	  thumbnail-viewer

2007-08-29 18:42  stephan

	* po/ChangeLog, po/de.po:
	  Update German translation

2007-08-29 18:42  mmassonnet

	* po/fr.po:
	  Update french translations for Ristretto.

2007-08-29 17:23  stephan

	* ChangeLog, README, configure.in.in, icons/22x22,
	  icons/22x22/ristretto.png, icons/24x24,
	  icons/24x24/ristretto.png, icons/32x32,
	  icons/32x32/ristretto.png, icons/36x36,
	  icons/36x36/ristretto.png, icons/Makefile.am, po/ChangeLog,
	  po/POTFILES.in, po/de.po, po/fr.po, po/nl.po, po/ristretto.pot,
	  src/navigator.c, src/picture_viewer.c:
	  Updated .po files Updated Dutch and German translations Added
	  Mike to the translator-credits field of the french translation
	  Fixed scaling bugs of the picture-viewer. Added missing icons for
	  22x22, 24x24, 32x32 and 36x36pixels Updated ChangeLog Started on
	  README

2007-08-28 05:38  stephan

	* src/main.c:
	  add message when path == NULL

2007-08-28 05:29  stephan

	* src/picture_viewer.c:
	  fixed segfault

2007-08-27 17:33  stephan

	* src/thumbnail_viewer.c:
	  fix a thumbnailer issue

2007-08-27 13:58  stephan

	* ChangeLog, src/main.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c, src/thumbnail_viewer.c:
	  Fix bug 3500 (among other things)

2007-08-26 23:17  stephan

	* src/picture_viewer.c, src/thumbnail_viewer.c:
	  add scrolling with mouse-wheel

2007-08-26 23:05  stephan

	* src/main.c:
	  show first image when dir is loaded from cli

2007-08-26 22:56  stephan

	* src/main.c, src/thumbnail_viewer.c:
	  Fixed image-navigation with mouse-wheel. Fixed backward-scrolling
	  in thumbnail-viewer. Fixed image-navigation with space /
	  backspace. (does not work well with the toolbar buttons though)

2007-08-26 02:10  mmassonnet

	* po/ChangeLog, po/fr.po:
	  * fr.po: Update french translations

2007-08-26 00:45  stephan

	* ChangeLog, configure.in.in, po/de.po, po/fr.po, po/nl.po:
	  Post-release version-bump

2007-08-25 17:59  stephan

	* configure.in.in:
	  bump version number for release

2007-08-25 15:29  stephan

	* po/ChangeLog, po/LINGUAS, po/de.po:
	  Add German translation by Christian Dywan

2007-08-25 15:07  stephan

	* po/POTFILES.in, po/fr.po, po/nl.po, po/ristretto.pot,
	  ristretto.desktop.in:
	  Add i18n .desktop-file

2007-08-24 18:32  stephan

	* src/main.c:
	  add config option to change the toolbar open button's behaviour

2007-08-24 18:22  stephan

	* src/main.c:
	  change config-file path

2007-08-24 17:57  stephan

	* configure.in.in, src/main.c:
	  Bump gtk version and add settings support

2007-08-24 11:51  stephan

	* src/Makefile.am, src/main.c, src/thumbnail_viewer.c:
	  fix vertical orientation of thumbnailer

2007-08-24 10:56  stephan

	* configure.in.in, icons/16x16/ristretto.png,
	  icons/48x48/ristretto.png, icons/scalable/ristretto.svg,
	  po/fr.po, po/nl.po, po/ristretto.pot, src/main.c,
	  src/navigator.c:
	  Add recent document support

2007-08-24 09:57  stephan

	* src/thumbnail_viewer.c:
	  fixed regression

2007-08-24 07:26  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  make it show all thumbnails

2007-08-23 22:48  stephan

	* src/thumbnail_viewer.c:
	  fix scroll-buttons

2007-08-23 22:40  stephan

	* src/thumbnail_viewer.c:
	  removed yet another artifact

2007-08-23 22:37  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  improve thumbailer performance

2007-08-23 21:45  stephan

	* src/navigator.c, src/navigator.h, src/thumbnail_viewer.c:
	  Improve the thumbnail viewer performance

2007-08-22 23:43  stephan

	* src/main.c, src/navigator.c, src/picture_viewer.c,
	  src/thumbnail_viewer.c:
	  modified navigator signals, will eventually help reduce the
	  amount of work done in the viewer classes

2007-08-22 09:53  stephan

	* src/thumbnail_viewer.c:
	  thumbnailer no longer modifies the cursor when pressing next
	  besides the thumbnails

2007-08-22 09:37  stephan

	* src/navigator.c:
	  revert previous commit

2007-08-22 09:34  stephan

	* src/navigator.c:
	  modify the add behaviour of the navigator

2007-08-22 07:05  stephan

	* src/picture_viewer.c:
	  remove issue with gtk-adjustments

2007-08-21 21:51  stephan

	* src/picture_viewer.c:
	  fixed possible bug

2007-08-21 21:36  stephan

	* icons/16x16/ristretto.png, icons/48x48/ristretto.png,
	  icons/scalable/ristretto.svg, src/thumbnail_viewer.c:
	  fix thumbnailer issue (and update the icon)

2007-08-21 06:52  stephan

	* src/thumbnail_viewer.c:
	  fix thumbnail-viewer (i think)

2007-08-21 06:47  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, ristretto.desktop.in:
	  Fix desktop file

2007-08-20 21:12  stephan

	* src/picture_viewer.c:
	  check if there is a src_pixbuf in the adjustment-value changed
	  callback

2007-08-20 11:00  stephan

	* src/main.c:
	  tool-button opens dir

2007-08-20 10:57  stephan

	* src/picture_viewer.c:
	  cursor stuff

2007-08-20 09:50  stephan

	* src/picture_viewer.c:
	  improve some performance (do not render the image when it is not
	  needed)

2007-08-20 09:09  stephan

	* src/navigator.c:
	  fix thumbnail-cache

2007-08-20 09:05  stephan

	* src/main.c:
	  fix thumbnail-viewer response

2007-08-19 23:43  stephan

	* src/main.c:
	  titlebar shows filename when opened from command-line

2007-08-19 23:40  stephan

	* src/picture_viewer.c:
	  apply patch that should fix the segfault with gtk 2.11

2007-08-19 23:40  stephan

	* src/main.c, src/navigator.c, src/picture_viewer.c,
	  src/picture_viewer.h:
	  Fix memory leaks and remove a memory-peak.

2007-08-19 23:28  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, src/main.c:
	  fix accelerators

2007-08-19 22:47  stephan

	* src/picture_viewer.c, src/thumbnail_viewer.c:
	  Add some changing cursors to indicate ristretto is busy.

2007-08-19 22:18  stephan

	* src/main.c:
	  Fix segfault when an invalid filename is provided over the
	  command-line

2007-08-19 13:59  stephan

	* src/main.c:
	  let ristretto only open images

2007-08-19 13:52  stephan

	* src/main.c:
	  fix open file from cli

2007-08-19 13:40  stephan

	* src/main.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c, src/picture_viewer.h,
	  src/thumbnail_viewer.c, src/thumbnail_viewer.h:
	  Please do not mind the memory-leak, cached pictures are not
	  cleaned up yet. Stuff should work a bit better now.

2007-08-19 12:39  stephan

	* INSTALL, aclocal.m4, depcomp, install-sh, missing, mkinstalldirs,
	  src/main.c, src/navigator.c, src/navigator.h,
	  src/thumbnail_viewer.c:
	  moved around some code

2007-08-13 21:26  stephan

	* src/thumbnail_viewer.c:
	  Fix some rendering bugs

2007-08-13 11:36  stephan

	* src/thumbnail_viewer.c:
	  Fix screen-flikker of thumbnail-viewer and a cache-bug

2007-08-13 11:13  stephan

	* src/navigator.c, src/navigator.h, src/thumbnail_viewer.c:
	  Add autocenter to thumbnailer

2007-08-13 07:44  stephan

	* src/navigator.c, src/picture_viewer.c, src/picture_viewer.h:
	  Revert files which accidently slipped through previous commit

2007-08-13 07:42  stephan

	* src/navigator.c, src/picture_viewer.c, src/picture_viewer.h,
	  src/thumbnail_viewer.c:
	  fix warning

2007-08-13 07:37  stephan

	* src/thumbnail_viewer.c:
	  Fix vertical orientation of thumbnailer

2007-08-12 22:31  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, src/thumbnail_viewer.c:
	  Implemented cache cleanup

2007-08-11 23:04  stephan

	* src/navigator.c:
	  changed rotate check

2007-08-11 22:57  stephan

	* src/thumbnail_viewer.c:
	  Improve performance issues introduced with last commit (and make
	  the cache work)

2007-08-11 17:36  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  Move thumbnailer code to the thumbnail viewer

2007-08-09 07:39  stephan

	* src/main.c:
	  fix critical message

2007-08-09 06:59  stephan

	* src/navigator.c:
	  revert previous commit

2007-08-09 06:51  stephan

	* src/navigator.c:
	  Move some stuff around

2007-08-08 23:38  stephan

	* src/navigator.c:
	  First file from the list should be selected by default

2007-08-08 23:32  stephan

	* src/navigator.c:
	  sort navigator entries

2007-08-08 23:29  stephan

	* src/thumbnail_viewer.c:
	  Remove duplicate code

2007-08-08 22:35  stephan

	* src/thumbnail_viewer.c:
	  improve icons

2007-08-08 21:49  stephan

	* po/nl.po:
	  updated dutch translation

2007-08-08 21:45  stephan

	* src/navigator.c, src/navigator.h, src/thumbnail_viewer.c:
	  Add indicators to thumbnailer

2007-08-08 17:16  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, src/main.c,
	  src/navigator.c, src/navigator.h:
	  Add Flip support Update po files

2007-08-08 15:46  stephan

	* src/main.c, src/navigator.c, src/navigator.h:
	  Add rotation

2007-08-07 20:40  stephan

	* src/thumbnail_viewer.c:
	  fix sensitivity toggling of horizontal oriented thumbnail viewer

2007-08-07 20:27  stephan

	* src/main.c, src/thumbnail_viewer.c, src/thumbnail_viewer.h:
	  Add Thumbnail viewer orientation switching

2007-08-07 18:21  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, src/main.c:
	  Add slideshow support Add menu-items to navigate the images
	  Update the dutch translations (and the po(t) files)

2007-08-07 17:36  stephan

	* src/main.c, src/navigator.c, src/navigator.h:
	  Add First and Last navigation options Allow navigation to First
	  and Last using Home and End buttons

2007-08-07 17:25  stephan

	* src/navigator.c:
	  fix segfault

2007-08-07 17:07  stephan

	* src/thumbnail_viewer.c:
	  Fix next button on thumbnail-viewer, it can now become
	  insensitive

2007-08-07 16:58  stephan

	* src/main.c, src/navigator.c, src/navigator.h,
	  src/thumbnail_viewer.c:
	  fix rendering issue samuel reported (quick-fix)

2007-08-07 14:14  stephan

	* src/thumbnail_viewer.c:
	  fix some rendering issues;

2007-08-07 13:08  stephan

	* src/main.c, src/navigator.c, src/thumbnail_viewer.c:
	  fixed vertical rendering of thumbnail viewer

2007-08-07 12:09  stephan

	* src/thumbnail_viewer.c:
	  cleaned up the thumbnailer code a bit

2007-08-07 08:27  stephan

	* src/main.c:
	  scale_fit by default

2007-08-07 08:02  stephan

	* src/thumbnail_viewer.c:
	  Add thumbnailer scrolling

2007-08-07 00:42  stephan

	* src/thumbnail_viewer.c:
	  thumbnail viewer can now be themed;

2007-08-07 00:12  stephan

	* src/thumbnail_viewer.c:
	  fix thumbnail viewer render issue

2007-08-06 23:58  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  fix segfault

2007-08-06 23:52  stephan

	* src/main.c, src/navigator.c, src/navigator.h,
	  src/thumbnail_viewer.c:
	  Allow navigation through thumbnailer.

2007-08-05 22:20  stephan

	* src/main.c, src/navigator.c, src/thumbnail_viewer.c:
	  modified thumbnailer a bit

2007-08-04 23:46  stephan

	* src/navigator.c, src/thumbnail_viewer.c:
	  fixed issues

2007-08-04 23:13  stephan

	* po/fr.po, po/nl.po, po/ristretto.pot, src/main.c,
	  src/navigator.c, src/navigator.h, src/picture_viewer.c,
	  src/picture_viewer.h, src/thumbnail_viewer.c,
	  src/thumbnail_viewer.h:
	  show thumbnails and cleanup some code

2007-08-03 08:32  stephan

	* po/nl.po, po/ristretto.pot, src/Makefile.am, src/main.c,
	  src/navigator.c, src/navigator.h, src/thumbnail_viewer.c,
	  src/thumbnail_viewer.h:
	  Added initial code for the thumbnailer widget.

2007-08-02 23:53  mmassonnet

	* po/LINGUAS, po/fr.po:
	  Add french translations for ristretto.

2007-08-02 13:10  stephan

	* icons/16x16/ristretto.png, icons/48x48/ristretto.png,
	  icons/scalable/ristretto.svg, src/main.c:
	  Modified icon a bit Changed shortcuts (page-up/down instead of
	  left-right)

2007-08-02 11:48  stephan

	* icons/16x16/Makefile.am, icons/48x48/Makefile.am,
	  icons/Makefile.am, icons/scalable/Makefile.am:
	  add missing makefiles

2007-08-02 09:02  stephan

	* Makefile.am, configure.in.in, icons, icons/16x16,
	  icons/16x16/ristretto.png, icons/48x48,
	  icons/48x48/ristretto.png, icons/scalable,
	  icons/scalable/ristretto.svg, src/main.c:
	  Add default application icon

2007-08-02 08:04  stephan

	* src/main.c, src/picture_viewer.c:
	  Fixed funky-indent Added keyboard-shortcuts.

2007-07-31 22:27  stephan

	* src/main.c:
	  add initial fullscreen-mode mockup

2007-07-31 00:33  stephan

	* src/navigator.c:
	  fix segfault when invalid filename is given

2007-07-31 00:23  stephan

	* src/picture_viewer.c:
	  change zoom behaviour, remembers zoom-to-fit

2007-07-30 23:47  stephan

	* po/nl.po, po/ristretto.pot, src/main.c:
	  add about dialog

2007-07-30 23:25  stephan

	* src/picture_viewer.c, src/picture_viewer.h:
	  Paint checkered background (usefull behind transparent images)

2007-07-30 22:23  stephan

	* src/main.c:
	  fix segfault when opening an image or folder from the menu

2007-07-30 22:14  stephan

	* po/nl.po, po/ristretto.pot, src/main.c, src/navigator.c:
	  Update Dutch translation Add Open Folder button to file menu. Add
	  image media filter to navigator class.

2007-07-30 22:00  stephan

	* src/main.c, src/navigator.c, src/navigator.h:
	  window title fix

2007-07-30 15:33  stephan

	* src/navigator.c:
	  filter out folders

2007-07-29 22:40  stephan

	* src/Makefile.am, src/main.c, src/navigator.c, src/navigator.h,
	  src/picture_viewer.c, src/picture_viewer.h:
	  move navigation code into a separate object

2007-07-24 23:19  stephan

	* src/main.c:
	  Trying out a different UI-layout

2007-07-24 10:30  stephan

	* src/main.c, src/picture_viewer.c, src/picture_viewer.h:
	  Moved the navigation-code to the picture-viewer. (Might be better
	  to place that inside a separate navigator-widget though)

2007-07-23 21:53  stephan

	* aclocal.m4, intltool-update.in, src/main.c:
	  Can open a folder from the command-line (and display it's
	  contents) Remove files from the content-list which can not be
	  opened. Display appropriate error message

2007-07-16 11:51  stephan

	* src/main.c:
	  improve slideshow support

2007-07-16 11:33  stephan

	* src/picture_viewer.c:
	  fix mem-leak

2007-07-16 07:54  stephan

	* src/main.c:
	  fix memory leaks

2007-07-15 23:14  stephan

	* configure.in.in, src/Makefile.am, src/main.c,
	  src/picture_viewer.c:
	  Add forward and backward buttons (for manual slideshow) Add
	  border-line drawing to picture-viewer widget

2007-07-13 11:02  stephan

	* src/picture_viewer.c:
	  changwe background color (black does not work well with the xfce
	  svg logo)

2007-07-13 10:56  stephan

	* src/picture_viewer.c:
	  fix background color

2007-07-13 07:08  stephan

	* Makefile.am, src/main.c:
	  Fix make distcheck Fix i18n

2007-07-12 23:11  stephan

	* src/picture_viewer.c:
	  Fixed refresh issue

2007-07-12 22:51  stephan

	* aclocal.m4, configure.in.in, intltool-extract.in,
	  intltool-merge.in, intltool-update.in, po/ChangeLog, po/LINGUAS,
	  po/Makefile.in.in, po/Makevars, po/nl.po, po/ristretto.pot,
	  src/main.c, src/picture_viewer.c:
	  Fix i18n Add 'open' button Add Dutch translation Add ChangeLog to
	  po directory Fix email adress in po/Makevars

2007-02-04 15:39  stephan

	* src/picture_viewer.c:
	  fix offset bug

2007-02-04 14:41  stephan

	* Makefile.am, ristretto.desktop.in, src/main.c,
	  src/picture_viewer.c, src/picture_viewer.h:
	  Reduced zoom factor to 20% Fit-to-window does not happen
	  real-time anymore (increase performance) added mime-types to
	  .desktop file

2007-02-02 22:38  stephan

	* src/main.c:
	  some ui cleanups

2007-01-29 23:37  stephan

	* src/main.c, src/picture_viewer.c, src/picture_viewer.h:
	  zoom-buttons zoom

2007-01-29 10:57  stephan

	* INSTALL, aclocal.m4, depcomp, install-sh, missing, mkinstalldirs,
	  src/main.c, src/picture_viewer.c, src/picture_viewer.h:
	  fix fit-to-screen scale and ristretto now opens filename from
	  command-line args

2007-01-29 09:34  stephan

	* src/picture_viewer.c:
	  fix offset on adjustment change

2007-01-29 09:19  stephan

	* src/picture_viewer.c:
	  fixed image placing and realization-bug

2006-12-31 01:00  stephan

	* src/picture_viewer.c:
	  added clear statement (fixes display of transparent images)

2006-12-31 00:48  stephan

	* src/picture_viewer.c:
	  improved rendering of scaled images

2006-12-30 16:39  stephan

	* src/picture_viewer.c:
	  screwed up resizing of picture, but scrollbars work now

2006-12-29 00:26  stephan

	* src/picture_viewer.c, src/picture_viewer.h:
	  scroll bars actually do something (only seen when resizing window
	  afterwards though)

2006-12-28 16:06  stephan

	* src/picture_viewer.c:
	  fixed centering of image when resizing picture viewer widget

2006-12-28 00:54  stephan

	* src/picture_viewer.c, src/picture_viewer.h:
	  Changed interpolation type Fixed GtkAdjustment config on
	  size-allocation Fixed scaling issue with resizing -- it couldn't
	  scale on half pixels (half pixel in source pixbuf) if nessecary

2006-12-18 11:22  stephan

	* src/main.c, src/picture_viewer.c, src/picture_viewer.h:
	  Changed stuff to the rendering widget

2006-12-10 09:09  stephan

	* AUTHORS, configure.in.in, src/main.c, src/picture_viewer.c,
	  src/picture_viewer.h:
	  Changed stuff

2006-11-10 11:49  stephan

	* src/Makefile.am, src/main.c, src/picture_viewer.c,
	  src/picture_viewer.h:
	  Added picture-viewer viewport

2006-11-07 18:41  stephan

	* Makefile.in, configure:
	  Forgot to remove these (thanks Enrico)

2006-11-07 18:16  stephan

	* configure.in, src/Makefile.in:
	  Removing obsolete files (are autogenerated)

2006-11-07 17:52  stephan

	* autom4te.cache:
	  oops

2006-11-07 17:50  stephan

	* .valgrind-log.swp:
	  Removing a file which should not have been added last time...

2006-11-07 17:48  stephan

	* .valgrind-log.swp, AUTHORS, COPYING, ChangeLog, INSTALL,
	  Makefile.am, Makefile.in, NEWS, README, TODO, aclocal.m4,
	  autogen.sh, autom4te.cache, autom4te.cache/output.0,
	  autom4te.cache/output.1, autom4te.cache/requests,
	  autom4te.cache/traces.0, autom4te.cache/traces.1, compile,
	  config.h.in, configure, configure.in, configure.in.in, depcomp,
	  gettext.h, install-sh, intltool-extract.in, intltool-merge.in,
	  intltool-update.in, missing, mkinstalldirs, po, po/LINGUAS,
	  po/Makefile.in.in, po/Makevars, po/POTFILES.in,
	  ristretto.desktop.in, src, src/Makefile.am, src/Makefile.in,
	  src/main.c, src/main.h, stamp-h.in:
	  Adding ristretto project files

2006-11-07 17:38  stephan

	* .:
	  Adding ristretto/{tags,branches,trunk}