~vcs-imports/gnome-scan/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
2009-02-03  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-scale-widget.vala:

	Enforce constraints in scale and spin button.

	Avoid updating too many times the value, this avoid useless
	exchange to the hardware.

2009-02-03  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Merge OptionInt and OptionDouble in OptionNumber (using
	double). Uses GnomeScanRange to express range constraint.

	* lib/gnome-scan-init.vala:

	Follow above changes.

	* lib/gnome-scan-scale-widget.vala:

	Support only OptionNumber.

	* modules/gsane/gsane-option-handler-generic.c:

	Migrate to OptionNumber.

2009-02-03  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Avoid duplicated item in OptionEnum.

2009-02-02  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Added a PaperSize option type that constraint new paper size to
	device extent.

	* lib/Makefile.am:
	* lib/gnome-scan-paper-size-widget.vala:

	Added a PaperSize widget that shows the actual size of the
	selected paper size.

	* lib/gnome-scan-init.vala:

	Match PaperSize option with PaperSize widget.

	* modules/gsane/gsane-option-area.c:

	Use PaperSize option. Check value is set upon update.

	* src/flegita.vala:

	Use set_boxed() on GValue. Thanks for Jürg Billeter for fixing a
	bug in Gtk+ binding that prevent from using boxed GValue for
	PaperSize.

2009-02-02  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Allow to dynamically extend enumeration in OptionEnum.

	* lib/gnome-scan-preselection.vala:

	Added PreselectEnum preselection to expand enumeration.

	* src/flegita.vala:

	Added Small Photo and DL envelope in default format available.

2009-02-02  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala:

	Added extent type.

	* lib/gnome-scan-scanner.vala:

	Added extent property.

	* modules/gsane/gsane-option-area.c:

	Define hardware extent and use extent type for internal.

2009-02-01  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-init.vala:

	Don't test if we are in a subdir of top_srcdir. Only support
	launching program from root of source tree.

2009-02-01  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-area.c:

	Reworked the option handler by splitting functions and sharing code
	accross high level options.

	Added support for pixel-defined scan area (video device, lexmark,
	coolscan, etc.). Assume such backend can scan a US Legal-wide
	paper (don't bother length) to always show high level option in
	millimeter (GtkPaperSize forces us to do so, and it's better like
	that).

	For such backend, we don't propose default papersizes and let user
	manually select area.

	Added Manual papersize as well (needs Preview area to become
	actually useful).

2009-02-01  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala:

	Fix conversion from/to pixel to/from millimeter (was inverted).

2009-01-31  Étienne BERSAC  <bersace03@laposte.net>

	* src/flegita.vala:

	Preselect resolution using default screen resolution or 150dpi.

2009-01-31  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-manager.vala:

	Drop prerequisites, was just a first test implementation and
	design of the feature implemented below.

	* lib/gnome-scan-preselection.vala:
	* lib/Makefile.am:

	Add preselection base class and preselection for default value.

	* lib/gnome-scan-job.vala:

	Register preselections and apply preselection on a node once it is
	registered in the job. Preselection are applied to all kind of
	nodes, including sink.

2009-01-31  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-node.vala:

	Added a HashTable referencing node options by their node for
	quicker option search.  Added a lookup_option() for finding a
	node's option by its name.

2009-01-31  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Added set_g_value() method allowing to set an option's value by
	passing an arbirtrary typed value on it. Added a helper to
	copy/transform a value to another. Default implementation for
	Bool, Int and Double option.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.c (gsane_scanner_icon_name),
	(gsane_scanner_new):

	Compute icon name for printer, webcam, photo camera and video
	camera.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-area.c,
	* modules/gsane/gsane-option-handler-generic.c,
	* modules/gsane/gsane-option-handler.c,
	* modules/gsane/gsane-option-source.c,
	* modules/gsane/gsane-scanner.c:

	Improved debugging output.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-common.[ch] (gsane_status_to_error_code),
	(gsane_error_new_from_status):

	Extends GnomeScanStatus for GSaneError codes. Add a
	gsane_status_to_error_code translating SANE_Status to GSaneError
	code.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-scanner.vala:

	Set name, blurb and icon_name upon construction.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* src/flegita-options.vala:

	Don't check diretory and filename length, just check if it's not
	null. This fix g_utf8_strlen() warning.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c (gsane_processor_process_1bit),
	(gsane_processor_prepare_frame):

	Renamed black/white to minval/maxval, making code more
	comprehensible.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala:

	Use hundreds for common status code.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala:

	Added BUSY status.

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-init.vala:

	Don't mix development module path (relative path in source tree)
	and installed module path (MODULE_DIR autoconf macro).

2009-01-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c (gsane_processor_process_1bit),
	(gsane_processor_prepare_frame):

	Fix black&white format support : SANE 1.X use 1 for black and 0
	for white. (Don't ask me why).

=== 0.7.1 ===

2009-01-14  Étienne BERSAC  <bersace03@laposte.net>

	* configure.ac: Depends on Vala 0.5.4.

2009-01-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-manager.vala:

	Preliminary prerequisite support.

2009-01-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-area.c
	(gsane_option_area_install_paper_size):

	Added US letter formats.

2009-01-13  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_handle_int_option),
	(gsane_option_handler_generic_handle_double_option):

	Use minimal step equal to 1.

2009-01-07  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-area.c:

	Added support for page orientation.

2009-01-07  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-page-orientation-widget.vala:
	* lib/Makefile.am:

	Added GnomeScanPageOrientationWidget.

	* lib/gnome-scan-init.vala:

	Use PageOrientation widget for "page-orientation" option.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-source.c:

	Make local function static. Drop unused class_finalize function.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.h:

	Drop useless adf public field.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-area.[ch]:

	Added preliminary paper_sizer and origin option handling.

	* modules/gsane/gsane-module.c:

	Match {tl,br}-[xy] for option area handler.

	* modules/gsane/Makefile.am:

	Added option area to target.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Added pointer option type.

	Dropped GnomeScanOptionEnum::changed signal.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-box.vala:

	Handle no_show_all widget. This is the case of combo box with one
	value.

2008-12-25  Étienne Bersac  <bersace03@gmail.com>

	* lib/gnome-scan-common.vala:

	Added Inch unit in order GnomeScanUnit to be compatible with
	GtkUnit.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_get_double),
	(gsane_option_handler_set_double):

	Silently allow to use double get/set for int SANE option. This
	allow to ignore variation between backends (e.g. some use double
	resolution, other int).

	* modules/gsane/gsane-option-handler.h:

	Include gsane-common.h since it is used by macros.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.h:

	Let handler define option fields (e.g. high level option grouping
	several low level option).

	* modules/gsane/gsane-option-source.c
	(gsane_option_handler_handle_source):

	Define option private field.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Use vala notify and getter/setter for enum value property. Require
	Vala r2240.

	* lib/gnome-scan-combo-box-widget.vala:
	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_enum_option_changed),
	(gsane_option_handler_generic_handle_list_option):
	* modules/gsane/gsane-option-source.c
	(gsane_option_source_option_changed),
	(gsane_option_handler_handle_source):

	Update GnomeScanOptionEnum support to above changes.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.h:

	Add option name as default match.

	* modules/gsane/gsane-option-source.c
	(gsane_option_source_class_init):

	Don't explicitly add option name in matches.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.h:

	Support matching various name for one option.

	* modules/gsane/gsane-option-source.c
	(gsane_option_source_class_init),
	(gsane_option_source_class_finalize):

	Follow macro update.

2008-12-25  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-source.c
	(gsane_option_source_class_init):

	Make GSaneOptionSource a singleton handler.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_get_group),
	(gsane_option_handler_generic_handle_bool_option),
	(gsane_option_handler_generic_handle_int_option),
	(gsane_option_handler_generic_handle_double_option),
	(gsane_option_handler_generic_handle_string_option),
	(gsane_option_handler_generic_handle_list_option):

	Added a rule to overwrite group for some options in GNOME Scan
	well known group GNOME_SCAN_OPTION_GROUP_SCANNER.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-common.[ch] (gsane_propagate_prefixed_status),
	(gsane_string_in_array):

	Drop gsane_str_matches_strv in favor of
	gsane_string_in_array. Avoid two function for one feature.

	* modules/gsane/gsane-option-source.c:

	Move gsane_string_in_array to gane-common.c

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	reviewed by: <delete if not using a buddy>

	* lib/gnome-scan-job.vala:
	* modules/gsane/gsane-common.c (gsane_string_in_array):
	* modules/gsane/gsane-common.h:
	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_get_group):
	* modules/gsane/gsane-option-source.c:
	* modules/gsane/gsane-processor.c:

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_get_type):

	Make GSaneOptionHandler a deep derivable type.

	* modules/gsane/gsane-option-primary.[ch]:
	* modules/gsane/Makefile.am:

	Added a simple generic subclass that use PRIMARY hint as default hint.

	* modules/gsane/gsane-module.c (gnome_scan_module_init):

	Match "mode" and "resolution" for primary hint handler.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.[ch]

	Added class field for option hint instead of hard-coding SECONDARY
	hint.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-source.[ch]:

	Implemented minimal source option handler enabling mass
	acquisition when ADF is selected.

	* modules/gsane/Makefile.am:

	Added gsane-option-source to target.

	* modules/gsane/gsane-module.c (gnome_scan_module_init):

	Use GSaneOptionSource for "source" and "doc-source"
	options. Several other options are to be supported by this
	handler: "adf", "duplex" and may be other.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.[ch]
	(gsane_scanner_set_mass_acquisition), (gsane_scanner_start_image),
	(gsane_scanner_init):

	Added method to enable mass_acquisition. Renamed private field.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.h:

	Added field for GnomeScanOption.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_handle_list_option):
	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_enum_list_int_values),
	(gsane_option_handler_enum_list_double_values),
	(gsane_option_handler_enum_list_string_values):

	Drop useless parameters to enum_list_*.

2008-12-23  Étienne BERSAC  <bersace03@laposte.net>

	* config.vapi:

	Added binding for PACKAGE_VERSION.

	* lib/gnome-scan-init.vala:

	Output GNOME Scan version in stdout.

	* src/flegita.vala (main):

	Define prgname and application name.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_handle_list_option):
	* modules/gsane/gsane-option-handler.[ch]
	(gsane_option_handler_enum_list_int_values),
	(gsane_option_handler_enum_list_double_values),
	(gsane_option_handler_enum_list_string_values):

	Added helper for handling enum option.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.h:

	Added useful macro for writing named option handler.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	* modules/gsane/gsane-option-handler.[ch]:
	* modules/gsane/gsane-scanner.c (gsane_scanner_handle_sane_option):

	Swap option index and option description parameter in
	handle_option function to be more consistent with other functions.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-manager.c
	(gsane_option_manager_add_rule_by_name),
	(gsane_option_manager_add_rules_by_name):
	* modules/gsane/gsane-option-manager.h:

	Added a variadic function to match one handler for several name.

	Fixed a bug rules by name registered as rules by type.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala:

	Use private rather than protected field protection.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c (gsane_processor_process_nbit),
	(gsane_processor_process_three_pass_nbit),
	(gsane_processor_get_func), (gsane_processor_get_sample_offset),
	(gsane_processor_get_sample_count),
	(gsane_processor_prepare_image), (gsane_processor_process):

	Added three-pass arbitrary depth data image support.

	Fixed lots of bugs in values computation.

	Simplified computations.

	Improved comments.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c:

	Added support for three pass 1bit depth.

	Fixed some computation and comments.

2008-12-21  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c,
	(gsane_processor_process_1bit), (gsane_processor_process_nbit),
	(gsane_processor_process_three_pass_8bit),
	(gsane_processor_get_func), (gsane_processor_prepare_image),
	(gsane_processor_process):

	Added 1bit and any depth between 1 and 32 bits process
	functions. Needs to be checked against some backend returning 12
	and 14 bit data.

	Do most computation on bytes and bit at initialization (instead of
	compute same values for each chunk).

	Commented a lot.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c
	(gsane_processor_process_three_pass_8bit),
	(gsane_processor_get_sample_offset),
	(gsane_processor_prepare_image), (gsane_processor_process):

	Fix processing three-pass RGB data with depth > 8bit.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c,
	* modules/gsane/gsane-scanner.c:

	Support hand scanner acquisition.

	Commented a lot GSaneScanner functions.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.c:

	Reordered functions.

	Fixed handling of chunk size of unpredicted length.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-processor.[ch],
	* modules/gsane/gsane-scanner.c:

	Added support for three-pass 8bit acquisition.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-node.vala,
	* lib/gnome-scan-job.vala,
	* modules/gsane/gsane-scanner.c,
	* modules/gsfile/gsfile-scanner.c,
	* src/flegita-sink.vala:

	Renamed frame to image.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/Makefile.am,
	* modules/gsane/gsane-processor.[ch]:

	Added GSaneProcessor, a struct handling processing SANE data into
	a GeglBuffer in a Babl format.

	Currently, only one-pass 8/16bit RGB and gray formats are
	supported.

	* modules/gsane/gsane-scanner.c:

	Join opts and params threads.

	Implement basic acquisition (does not fully support mass scan
	acquisition from ADF, this need a proper GSaneOptionHandler to
	normalize various source options).

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_get_enum), (gsane_option_handler_set_enum):

	Follow API change introduced with r713.

	Fix error on enum value handling.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c:

	Check option value on option-reload, only on reactivation.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala:

	Prevent null value in EnumValues.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-job.vala:
	* lib/gnome-scan-scanner.vala:

	Allow scanner to be itself the processor instead of a Gegl
	operation. This is needed because GEGL assume that the data is
	available prior to source. However we still allow using gegl source
	directly from scanning.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-init.vala:
	* lib/gnome-scan-module-manager.vala:

	Query manually modules before Gegl.init() to register operation
	before gegl_list_operations() is called.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-page.vala:

	Use horizontal scroll bar automatically.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Automatically call changed() signal
	upon set.

2008-12-20  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-checkbox-widget.vala:
	* lib/gnome-scan-combo-box-widget.vala:
	* lib/gnome-scan-entry-widget.vala:
	* lib/gnome-scan-scale-widget.vala:

	Use {freeze,thaw}_notify instead of custom inhibition code.

2008-12-16  Étienne BERSAC  <bersace03@laposte.net>

	* configure.ac, lib/Makefile.am,
	* lib/gnome-scan-module-helper.h:

	Drop custom GS_DEFINE_MODULE_TYPE in favor of
	G_DEFINE_DYNAMIC_TYPE (Since 2.14).

2008-12-16  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsfile/gsfile-backend.[ch],
	* modules/gsfile/gsfile-filenames-widget.[ch],
	* modules/gsfile/gsfile-options.[ch],
	* modules/gsfile/gsfile-scanner.[ch],
	* modules/gsfile/gsfile-module.c (gnome_scan_module_init):

	Use G_DEFINE_DYNAMIC_TYPE instead of custom macro. Some code
	cleanup.

2008-12-16  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-backend.[ch],
	* modules/gsane/gsane-scanner.[ch],
	* modules/gsane/gsane-module.c (gnome_scan_module_init):

	Use G_DEFINE_DYNAMIC_TYPE instead of custom macro.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_control_option):

	Automatically reload parameters.

	* modules/gsane/gsane-scanner.[ch] (gsane_scanner_reload_parameters),
	(gsane_scanner_probe_options):

	Added a reload_parameters options.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.vala:
	* lib/gnome-scan-job.vala:
	* lib/gnome-scan-option-box.vala:
	* lib/gnome-scan-option-page.vala:
	* lib/gnome-scan-option-widget.vala:

	Use weak local variable if possible, avoiding unecessary
	ref/unref.

	Various clean up, drop useless debugging output, comment. etc.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-entry-widget.vala:
	* lib/gnome-scan-scale-widget.vala:

	Avoid setting value upon construction.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.c (gsane_scanner_handle_sane_option):
	Added a warning when no handler is found for an option.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.[ch]
	(gsane_option_handler_control_option),
	(gsane_option_handler_set_bool), (gsane_option_handler_set_int),
	(gsane_option_handler_set_double),
	(gsane_option_handler_set_string), (gsane_option_handler_get_enum),
	(gsane_option_handler_set_enum):

	Setters return true whether value was inexact.

	Added support for string enum.

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_int_option_value_changed),
	(gsane_option_handler_generic_double_option_value_changed),
	(gsane_option_handler_generic_enum_option_changed),
	(gsane_option_handler_generic_enum_list_string_values),
	(gsane_option_handler_generic_handle_list_option):

	Update value if inexact value was set.

	Support string enum.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-scale-widget.vala: Determine digits depending on
	step, not only on type.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Workaround vala not registering
	struct property. Use custom signal for notify. Needs to trigger
	signal manually.

	* lib/gnome-scan-combo-box-widget.vala:

	Trigger manually ::changed signal on option enum widget.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_enum_list_int_values),
	(gsane_option_handler_generic_enum_list_double_values),
	(gsane_option_handler_generic_handle_list_option):

	Added double enum option support.

	* modules/gsane/gsane-option-handler.c
	(gsane_option_handler_get_enum), (gsane_option_handler_set_enum):

	Added double enum read/write support.

	Added write support for int enum option.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-combo-box-widget.vala: Use weak variable,
	avoiding double free corruption.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c:

	Splitted option handling in seperate functions.

	Added support for int enum options.

	* modules/gsane/gsane-option-handler.[ch]
	(gsane_option_handler_get_enum), (gsane_option_handler_set_enum):
	Added getter/setter for enum option.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala: Added GnomeScanEnumValue
	struct. Used to expose backend enum value to the frontend.

	* lib/gnome-scan-option.vala: Added OptionEnum type.

	* lib/gnome-scan-combo-box-widget.vala: Added widget to expose an
	OptionEnum.

	* lib/gnome-scan-init.vala: Register rules matching OptionEnum for ComboBoxWidget.

	* lib/Makefile.am: Added combo-box-widget.vala to target.

2008-12-15  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-manager.vala: Properly initialize hash
	table with GnomeScanOption as value type.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-checkbox-widget.vala: Set GtkCheckButton state
	upon construction.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.[ch]
	(gsane_option_handler_get_string),
	(gsane_option_handler_set_string): Added string getter/setter.
	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_string_option_value_changed),
	(gsane_option_handler_generic_handle_non_list_option): Added
	SANE_TYPE_STRING generic support.
	* modules/gsane/gsane-module.c (gnome_scan_module_init): Register
	rule matching SANE_TYPE_STRING for Generic handler.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Added OptionString type.
	* lib/gnome-scan-entry-widget.vala: Added entry widget for string
	option.
	* lib/Makefile.am: Added gnome-scan-entry-widget.vala
	* lib/gnome-scan-init.vala: Register rule matching OptionString
	for EntryWidget.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-common.vala: Added unit_to_string() function.

	* lib/gnome-scan-option-widget.vala: Append unit label at end of
	option widget box.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_double_option_value_changed),
	(gsane_option_handler_generic_handle_int_option),
	(gsane_option_handler_generic_handle_double_option),
	(gsane_option_handler_generic_handle_non_list_option):

	Added support for SANE_TYPE_FIXED option.

	* modules/gsane/gsane-option-handler.[ch] (gsane_option_hint),
	(gsane_option_unit), (gsane_option_handler_get_double),
	(gsane_option_handler_set_double):

	Added getter/setter for double/fixed option.

	Added unit translator.

	* modules/gsane/gsane-module.c (gnome_scan_module_init): Added
	rules for SANE_TYPE_FIXED -> GSaneOptionHandlerGeneric.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Added OptionDouble option type.
	* lib/gnome-scan-scale-widget.vala: Added support for
	OptionDouble.
	* lib/gnome-scan-init.vala: Added rules for OptionDouble ->
	ScaleWidget.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_handle_non_list_option):

	Ignore int array options.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-module.c (gnome_scan_module_init):

	Remove unsupported SANE_Value_Type. Will be added as support is there.

	* modules/gsane/gsane-option-handler-generic.c
	(gsane_option_handler_generic_int_option_value_changed),
	(gsane_option_handler_generic_handle_non_list_option),
	(gsane_option_handler_generic_handle_list_option),
	(gsane_option_handler_generic_handle_option):

	Handle SANE_TYPE_INT ranged option.

	Prepare for enum option (SANE_CONSTRAINT_*_LIST).

	* modules/gsane/gsane-option-handler.[ch]
	(gsane_option_handler_get_int), (gsane_option_handler_set_int):

	Add getter and setter of SANE_TYPE_INT option.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-box.vala: Add option tooltip also to
	option widget label.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.vala:
	* lib/gnome-scan-option-page.vala:

	Add a scrolled property to option page. A scrolled option page
	automatically add scrollbars and frame around options if the page
	isn't tall enough to hold all the options.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-box.vala: Auto hide label along
	corresponding widget.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-widget.vala:

	Use option description as tooltip.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-common.h,
	* modules/gsane/gsane-option-handler-generic.c,
	* modules/gsane/gsane-scanner.c:

	Factorize i18n.

	Translate option title and description.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler-generic.c,
	* modules/gsane/gsane-option-handler.[ch]:

	Added reload_options abstract method to GSaneOptionHandler.

	Implemented option reloading signal propagation and handling.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.c: Added "reload-options" signal,
	emitted by option handler when setting a SANE option require
	reloading all other? params.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.[ch],
	* modules/gsane/gsane-option-handler-generic.[ch]:

	Implemented SANE option control (get/set) with error handling.

	Define default GnomeScanOption value.

	Set SANE option value on GnomeScanOption value changed.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-common.[ch]: Added SANE_Status to GError
	translation. Added utilities functions and macros for debugging
	and i18n.

2008-12-14  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-init.vala: Remove useless GThread.Init()
	call. g_thread_init() must be called by main program. (using
	--thread switch on valac for vala programs).

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/Makefile.am:
	* modules/gsane/gsane-module.c (gnome_scan_module_init):
	* modules/gsane/gsane-option-handler-generic.[hc]: Added
	preliminary implementation of OptionHandlerGeneric. Currently
	handling half bool option type.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-scanner.c (gsane_scanner_check_sane_status),
	(gsane_scanner_handle_sane_option), (gsane_scanner_probe_options),
	(gsane_scanner_init), (gsane_scanner_finalize): Use OptionManager
	to instanciate OptionHandler and pass SANE option to OptionHandler
	instance.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-common.h: Added SANE gettext
	package. Dropped obsolete code.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-manager.c
	(gsane_option_manager_add_rule_by_name),
	(gsane_option_manager_add_rule_by_type),
	(gsane_option_manager_get_handler_type),
	(gsane_option_manager_instance_init):
	* modules/gsane/gsane-option-manager.h: Use SANE_Value_Type for
	rule type.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane/gsane-option-handler.[ch]: Added handle_option
	abstract method for handling a SANE option.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-manager.vala: Use direct hash rather than
	int hash.

	* lib/gnome-scan-init.vala:
	* lib/gnome-scan-checkbox-widget.vala: Added checkbox widget
	handling bool option widget.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Revert group and domain order since
	group is translated.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.vala: Automatically set page border width
	to 12px.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option.vala: Added bool option.

2008-12-12  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-scanner-selector.vala:

	Prevent selecting failed scanners and otherwise select scanner
	when ready (at least unconfigured).

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane-backend.c:
	* modules/gsane-backend.h:
	* modules/gsane-common.c:
	* modules/gsane-common.h:
	* modules/gsane-module.c:
	* modules/gsane-option-handler.c:
	* modules/gsane-option-handler.h:
	* modules/gsane-option-manager.c:
	* modules/gsane-option-manager.h:
	* modules/gsane-scanner.c:
	* modules/gsane-scanner.h:
	* modules/gsane/Makefile.am:

	Moved gsane to modules/gsane/.

	* modules/gsfile-backend.c:
	* modules/gsfile-backend.h:
	* modules/gsfile-filenames-widget.c:
	* modules/gsfile-filenames-widget.h:
	* modules/gsfile-module.c:
	* modules/gsfile-options.c:
	* modules/gsfile-options.h:
	* modules/gsfile-scanner.c:
	* modules/gsfile-scanner.h:
	* modules/gsfile/Makefile.am:

	Moved gsfile to modules/gsfile/.

	* modules/Makefile.am: Replaces targets with gsane and gsfile
	subdirs.
	* lib/gnome-scan-init.vala: Added modules subdirs in module path.
	* configure.ac: Added modules/{gsane,gsfile}/Makefile to output

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsane-common.[ch]: Drop own i18n code in favor of
	glib/gi18n-lib.h. Drop useless meta param related function.

	* modules/gsane-meta-param.[ch]: Replaced by 
	* modules/gsane-option-handler.[ch]: this 
	* modules/gsane-option-manager.[ch]: and this.

	* modules/gsane-scanner.[ch]:

	Dropped all old code, ported to new lib/.

	Rewrite only device opening, minimal status handling and SANE
	option count retrieval.

	* modules/gsane-backend.c: Port to new lib/.
	* modules/gsane-module.c: Initialize option manager.

	* modules/gsfile-module.h: Dropped useless header.
	* modules/gsfile-pspec.[ch]: Dropped obsolete file.

	* modules/Makefile.am: Build GSane module.

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-scanner-selector.vala: Select first scanner as it
	appear, not once all scanners are probed.

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-node.vala: Initialize also status message.

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-option-box.vala:
	* lib/gnome-scan-option-page.vala:

	Implement option widget destruction.

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.vala:

	Use Pane for seperating scanner selector and options in general
	tab.

	Use default dialog height of 440px.

	Destroy scanner options widget on deselection.

2008-12-11  Étienne BERSAC  <bersace03@laposte.net>

	* modules/gsfile-backend.c: Reorder code.
	* modules/gsfile-filenames-widget.c: Populate file selector with
	default value upon construction.

2008-12-06  Étienne BERSAC  <bersace03@laposte.net>

	* Makefile.am:
	* bindings/Makefile.am:
	* bindings/gir/Makefile.am:

	Dropped GIR generation.

	* config.vapi:
	* configure.ac:

	Requires Vala 0.5.2.
	Added --enable-tools for developments tools.

	* doc/ref/gnome-scan.types:

	Sync with lib/

	* lib/gnome-scan-param-specs.h: Replaced by 
	* lib/gnome-scan-option.vala:

	* lib/gnome-scan-boolean-widget.h:
	* lib/gnome-scan-enum-widget.h:
	* lib/gnome-scan-number-widget.h:
	* lib/gnome-scan-page-orientation-widget.h:
	* lib/gnome-scan-paper-size-widget.h:
	* lib/gnome-scan-range-widget.h:
	* lib/gnome-scan-string-widget.h:
	* lib/gnome-scan-param-widget.h: Replaced by 
	* lib/gnome-scan-option-widget.vala:

	* lib/gnome-scan-plugin.h: Replaced by 
	* lib/gnome-scan-node.vala:

	* lib/gnome-scan-preview-area.h:
	* lib/gnome-scan-preview-plugin-area.h:
	* lib/gnome-scan-preview-plugin-rotation.h:
	* lib/gnome-scan-preview-plugin.h:
	* lib/gnome-scan-preview-sink.h:
	* lib/gnome-scan-processor-common.h:

	Dropped.

	* lib/gnome-scan-private.h:

	Dropped. Use glib/gi18n-lib.h instead (Vala does it automatically).

	* lib/gnome-scan-settings.h: Replace by 
	* lib/gnome-scan-option-manager.vala:

	* lib/gnome-scan-acquisition-dialog.[ch]: Replaced by 
	* lib/gnome-scan-acquisition-widget.vala:

	* lib/gnome-scan-dialog.[hc]: Replaced by
	* lib/gnome-scan-dialog.vala:
	* lib/gnome-scan-option-box.vala:
	* lib/gnome-scan-option-page.vala:
	* lib/gnome-scan-scanner-selector.vala:

	* lib/gnome-scan-backend.vala:
	* lib/gnome-scan-init.vala:
	* lib/gnome-scan-job.vala:
	* lib/gnome-scan-module-manager.vala:
	* lib/gnome-scan-scanner.vala:
	* lib/gnome-scan-sink.vala:

	Rewritten in Vala.

	* lib/gnome-scan-common.vala:

	Provide a GnomeScanStatus enumeration.

	Use a GObject derived class for Format.

	Implement flags_get_nicks to return a debugging string from a
	flags value.

	Use vala max func.

	* lib/gnome-scan-module-helper.h:

	Increase readability of MACRO.

	* lib/gnome-scan-module.vala:
	* lib/gnome-scan.h:

	Sync with vala classes.

	* modules/Makefile.am:
	* modules/gsfile-backend.c:
	* modules/gsfile-filenames-widget.c:
	* modules/gsfile-filenames-widget.h:
	* modules/gsfile-module.c:
	* modules/gsfile-scanner.c:
	* modules/gsfile-scanner.h:

	Ported GSFile to new lib/. Disabled GSane until it is ported to
	new lib/

	* src/Makefile.am:
	* src/flegita-sink.c:
	* src/flegita-sink.h:
	* src/flegita.c:
	* src/flegita.h:

	Dropped.

	* src/flegita-option-widgets.vala:
	* src/flegita-options.vala:
	* src/flegita-sink.vala:
	* src/flegita.vala:

	Rewritten in vala using new lib/

	* tools/Makefile.am:
	* tools/gs-test.c (main):

	Added a C-written test program. Disabled gs-scrot until it is
	ported.

2008-11-11  Philipp Sadleder <philipp@sadleder.de>

	* lib/Makefile.am:
	* lib/gnome-scan-module.vala:
	Port module loading to vala.

	* lib/gnome-scan-module.c:
	* lib/gnome-scan-module.h:
	Remove.

	* lib/gnome-scan-module-helper.h: Contains boilerplate for modules.

	* modules/gsane-backend.c:
	* modules/gsane-scanner.c:
	* modules/gsfile-backend.c:
	* modules/gsfile-scanner.c:
	Include gnome-scan-module-helper.h.

2008-11-12  Étienne BERSAC  <bersace03@laposte.net>

	* bindings/gir/Makefile.am: Add an automake target for gir
	installation. Fix path to built library (using
	$(top_builddir)). Clean gir file.
	* configure.ac: Override prefix variable when requesting a $girdir
	to pkg-config. Substitute $girdir rather than GIRDIR, the former
	being suitable for automake target installation dir. Check for
	GEGL >= 0.0.21.

2008-11-12  Étienne BERSAC  <bersace03@laposte.net>

	* src/flegita-gimp-sink.c (fgs_get_child_nodes),
	src/flegita-sink.c (fs_get_child_nodes): Prefix GEGL operation
	with "gegl:" following 0.0.21 SVN.

2008-11-12  Étienne BERSAC  <bersace03@laposte.net>

	* doc/ref/gnome-scan-docs.sgml: Renamed gnome-scanner to
	gnome-scan-scanner.
	* doc/ref/gnome-scan-sections.txt: Renamed GnomeScanner macro,
	structs and function to GnomeScanScanner. Use gnome_scan prefix
	rather than gs in gnome-scan-common.
	* doc/ref/gnome-scan.types: Renamed gnome_scanner_get_type to
	gnome_scan_scanner_get_type, fix build failure.
	* doc/ref/tmpl/gnome-scan-preview-plugin-area.sgml: Use GNOME_SCAN
	namespace.
	* doc/ref/tmpl/gnome-scanner.sgml: Replaced by 
	* doc/ref/tmpl/gnome-scan-scanner.sgml: this.
	* doc/ref/tmpl/gnome-scan-utils.sgml: Replaced by 
	* doc/ref/tmpl/gnome-scan-common.sgml: this.
	* lib/gnome-scan-scanner.c: Rename gnome-scanner to
	gnome-scan-scanner in docblock.

2008-11-11  Philipp Sadleder <philipp@sadleder.de>

	* lib/gnome-scan-common.vala:
	* lib/gnome-scan-dialog.c:
	* lib/gnome-scan-job.c:
	* lib/gnome-scan-plugin.c:
	* lib/gnome-scan-plugin.h:
	* lib/gnome-scan-scanner.c:
	* lib/gnome-scan-scanner.h:
	* modules/gsane-scanner.c:
	Refactor to use GnomeScanScanner and gnome_scan_scanner_* consequently.
	This helps gobject-introspection.

2008-11-11  Philipp Sadleder <philipp@sadleder.de>

	* bindings/gi/Makefile.am: Do not depend on gnome-scan bein installed.

2008-11-11  Étienne BERSAC  <bersace03@laposte.net>

	* lib/gnome-scan-job.c, lib/gnome-scan-preview-sink.c,
	lib/gnome-scan-processor-common.c, modules/gsane-scanner.c,
	modules/gsfile-scanner.c, src/flegita-gimp-sink.c,
	src/flegita-sink.c, tools/gs-scrot.c: Migrate to latest GEGL
	0.0.21, GeglOperation shipped with gegl are prefixed with "gegl:".

2008-11-11  Philipp Sadleder <philipp@sadleder.de>

	* lib/Makefile.am: Remove gnome-scan from vapidir.

2008-11-11  Philipp Sadleder <philipp@sadleder.de>

	* configure.ac:
	* bindings/Makefile.am:
	* bindings/gir/Makefile.am:
	Add preliminary support for the new gobject-introspection framework.
	That allows to make use of introspection once vala supports it.

	* bindings/gi/Makefile.am:
	* bindings/gi/gnome-scan.files:
	* bindings/gi/gnome-scan.gi:
	* bindings/gi/gnome-scan.namespace:
	* bindings/vapi/Makefile.am:
	* bindings/vapi/gnome-scan.deps:
	* bindings/vapi/gnome-scan.metadata:
	* bindings/vapi/gnome-scan.vapi:
	Removed, as building a vapi is obsolete.

	* AUTHORS:
	Add myself.

2008-08-09  Étienne Bersac  <bersace03@gmail.com>

	* lib/gnome-scan-common.vala: Use public field in
	GnomeScanRectangle.
	Fix max own implementation (waiting for vala 0.3.4++)

	* lib/gnome-scan-module.c (gnome_scan_module_unload): Fix a
	crashed on module unload. Thanks to Philip Sadleder.

2008-06-12  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-module.c (gnome_scan_module_init): Bind SANE
	backends textdomain codeset. Fix bug #537815.

2008-06-11  Étienne Bersac  <bersace03@laposte.net>

	* modules/Makefile.am: Fix module ldflags, patch from Frédéric
	CROZAT. Fix bug #537818

2008-05-08  Étienne Bersac  <bersace03@laposte.net>

	* lib/Makefile.am:
	* lib/gnome-scan-utils.[ch]: Removed

	* lib/gnome-scan-common.vala:
	* lib/gnome-scan-dialog.c (gsd_scanner_added):
	* lib/gnome-scan-param-specs.h:
	* lib/gnome-scan-processor-common.c:
	* modules/gsane-common.[ch]:
	* modules/gsfile-scanner.c (gsfile_scanner_new):  reimplemented
	in Vala in gnome-scan-common.vala.

	* lib/Makefile.am:
	* lib/gnome-scan-scanner.c:
	* lib/gnome-scan-types.c:
	* lib/gnome-scan-types.c.tpl:
	* lib/gnome-scan-types.h:
	* lib/gnome-scan-types.h.tpl:
	* lib/gnome-scan-utils.c: Drop gnome-scan-types.[hc] generation,
	thanks to Vala.

	* lib/Makefile.am:
	* lib/gnome-scanner.[ch]: Renamed to 
	* lib/gnome-scan-scanner.[ch]:

	* lib/gnome-scan-acquisition-dialog.[ch]:
	* lib/gnome-scan-backend.h:
	* lib/gnome-scan-boolean-widget.[ch]:
	* lib/gnome-scan-common.vala:
	* lib/gnome-scan-dialog.[ch]:
	* lib/gnome-scan-enum-widget.[ch]:
	* lib/gnome-scan-job.[ch]:
	* lib/gnome-scan-module-manager.[ch]:
	* lib/gnome-scan-module.[ch]:
	* lib/gnome-scan-number-widget.[ch]:
	* lib/gnome-scan-page-orientation-widget.[c°h:
	* lib/gnome-scan-paper-size-widget.[ch]:
	* lib/gnome-scan-param-specs.c:
	* lib/gnome-scan-param-widget.[ch]:
	* lib/gnome-scan-plugin.[ch]:
	* lib/gnome-scan-preview-area.[ch]:
	* lib/gnome-scan-preview-plugin-area.h:
	* lib/gnome-scan-preview-plugin-rotation.h:
	* lib/gnome-scan-preview-plugin.[ch]:
	* lib/gnome-scan-preview-sink.[ch]:
	* lib/gnome-scan-processor-common.[ch]:
	* lib/gnome-scan-range-widget.[ch]:
	* lib/gnome-scan-settings.[ch]:
	* lib/gnome-scan-sink.[ch]:
	* lib/gnome-scan-string-widget.[ch]:
	* lib/gnome-scan-types.[ch]: Use GnomeScan prefix rather than Gnome.

	* modules/gsane-backend.c (gsb_probe_scanners):
	* modules/gsane-meta-param.c (meta_param_paper_size_get_params):
	* modules/gsane-scanner.[ch]:
	* modules/gsfile-backend.c (gsfb_probe_scanners):
	* modules/gsfile-scanner.[ch]:
	* src/flegita-gimp-sink.c:
	* src/flegita-sink.c: Take above changes in account.

2008-05-08  Étienne Bersac  <bersace03@laposte.net>

	* configure.ac:
	* Makefile.am:
	* bindings/gi/Makefile.am:
	* bindings/gi/gnome-scan.files:
	* bindings/gi/gnome-scan.gi:
	* bindings/gi/gnome-scan.namespace:
	* bindings/vapi/Makefile.am:
	* bindings/vapi/gnome-scan.deps:
	* bindings/vapi/gnome-scan.metadata:
	* bindings/vapi/gnome-scan.vapi: Added preliminary vapi
	generation for internal use for now.

2008-05-06  Étienne Bersac  <bersace03@laposte.net>

	* lib/Makefile.am, lib/gnome-scan-option.vala: preliminary
	implementation of GnomeScanOption in Vala.

2008-05-06  Étienne Bersac  <bersace03@laposte.net>

	* doc/ref/tmpl/gnome-scan-utils.sgml:
	* lib/Makefile.am:
	* lib/gnome-scan-common.vala:
	* lib/gnome-scan-types.c:
	* lib/gnome-scan-types.h:
	* lib/gnome-scan-utils.c (gnome_scan_enum_get_nick_from_value):
	* lib/gnome-scan-utils.h:
	* modules/gsane-meta-param.c (mpps_set_roi):
	* modules/gsane-scanner.c (gss_option_get_param_spec): Rewrite
	part of gnome-scan-utils in vala. Welcome to Vala in GNOME Scan :).

2008-05-04  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c:
	* lib/gnome-scan-param-widget.c:
	* lib/gnome-scan-preview-plugin-area.c:
	* lib/gnome-scan-types.c:
	* lib/gnome-scan-utils.[hc]:
	* modules/gsane-meta-param.[ch]:
	* modules/gsane-scanner.c:
	* modules/gsfile-scanner.c:
	* src/flegita-gimp-sink.c:
	* src/flegita-sink.c: Always use GnomeScan prefix, not GS.

2008-05-03  Étienne Bersac  <bersace03@laposte.net>

	* acinclude.m4:
	* configure.ac:
	* lib/Makefile.am: enable Vala compilation.

2008-03-26  Étienne Bersac  <bersace03@laposte.net>

	* doc/ref/Makefile.am (DOC_MODULE): Use unversionned module name.

2008-03-14  Étienne Bersac  <bersace@thilivren>

	* Include patch from Deji Akingunola to fix cursor. Close bug
	#522054.

=== 0.6 ===

2008-03-09  Étienne Bersac  <bersace03@laposte.net>

	* configure.ac: Release 0.6.

2008-03-08  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-param-specs.c: Fixed a typo :(

2008-03-03  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-meta-param.c: Swallow some redundant epson backend
	option.

	* lib/gnome-scan-param-specs.h: Use an untranslated option group
	for preview and hidden. This avoid collision with existing group.

2008-03-01  Étienne Bersac  <bersace03@laposte.net>

	* lib/Makefile.am: Fix bug #106348: doesn't build with
	LDFLAGS=-Wl,--as-needed. Patch from Marcin Banasiak.

	* lib/gnome-scan-settings.c: (gss_gvalue_to_gconf_value): store
	  enum value as gconf_value_int.

	* lib/gnome-scan-processor-common.c: Tweak stress option.

2008-02-29  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c: (gnome_scan_dialog_new),
	  (gnome_scan_dialog_run), (gsd_build_group_box),(gsd_build_preview_ui),
	  lib/gnome-scan-paper-size-widget.c (gspsw_update_label),
	  lib/gnome-scan-param-widget.c (gnome_scan_param_widget_constructor),
	  lib/gnome-scan-preview-plugin-area.c: (gsppa_send_area),
	  lib/gnome-scan-processor-common.c (gnome_scan_processor_common_init),
	  modules/gsane-meta-param.c (meta_param_paper_size_get_params),
	  modules/gsfile-scanner.c (gsfile_scanner_new),
	  src/flegita-sink.c (flegita_sink_init),
	  src/flegita.c (flegita_about): Fixed tons of translation
	  issues. Thanks to André Klapper. See bug #519627. Removed dead
	  code.

2008-02-29  Ross Burton  <ross@burtonini.com>
	* autogen.sh:
	Don't pass --install to gnome-common.

2008-02-29  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsfile-scanner.c: (gsfile_scanner_class_init),
	(gsf_get_child_nodes), (gsf_start_frame), (gsf_work): Migrate to
	GEGL 0.0.16

	* lib/gnome-scanner.c: (gnome_scanner_get_output_format): Default output
	format to "RGB u8" rather than NULL.

	* lib/Makefile.am, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-preview-plugin-area.c, lib/gnome-scan-private.h,
	  lib/gnome-scan-processor-common.c (gnome_scan_processor_common_init),
	  lib/gnome-scanner.c, modules/gsfile-filenames-widget.c: Use internal
	  translation domain, not app defined one.

2008-02-28  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-common.h: Override _() to use GETTEXT_PACKAGE
	translation.

	* modules/gsane-scanner.c: (gss_probe_options): Fixed a bug
	introduced in last change, number of option wasn't read.

	* modules/gsane-scanner.c: (gss_probe_options),
	(gss_option_get_param_spec): Workaround epson backend "number
	option is a boolean".

	* AUTHORS, THANKS, src/flegita.c: (flegita_about): Added Ross as
	contributor.

	* src/flegita.c: (flegita_about), (main), configure.ac: Drop
	libgnome dependency. Thanks to Ross Burton. (bug #519344).

	* lib/gnome-scan-dialog.c: (gsd_build_sink_ui),
	(gsd_build_scanner_ui), (gsd_build_processing_ui): Don't show
	HIDDEN option group. Fix bug #519331.

	* lib/gnome-scan-acquisition-dialog.c:
	(gnome_scan_acquisition_dialog_set_property),
	(gnome_scan_acquisition_dialog_get_property), (gsad_monitor): Auto
	focus Next button on finished scan.

2008-02-27  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c: (gnome_scan_dialog_constructor),
	(gsd_build_group_box): Migrate to new tooltip API.
	* configure.ac: Depends on Gtk+ 2.12

	* src/flegita.c (flegita_about): Translate application name.

	* flegita.desktop.in (_Comment): Use plural
	
=== 0.5.93 ===

2008-02-27  Étienne Bersac  <bersace03@laposte.net>

	* configure.ac: Release 0.5.93, tighten dependecies
	* NEWS: added details for 0.5.93

	* src/flegita.c: (flegita_about), (main): Added about dialog.

	* modules/gsane-meta-param.c: (meta_param_preview_get_params):
	Hide preview param.

	* lib/gnome-scan-dialog.c: (gsd_preview_end_refresh),
	(gsd_preview_refresh), modules/gsane-meta-param.c: (mpps_set_roi),
	(meta_param_paper_size_set_value), (meta_param_preview_init),
	(meta_param_preview_finalize), (meta_param_preview_add_param),
	(meta_param_preview_get_params), (meta_param_preview_set_value),
	(meta_param_preview_get_value), modules/gsane-scanner.c: ,
	(gss_init), (gss_probe_options), (gsane_scanner_get_meta_param): Added
	preview meta param allowing to use sane backend capability, and removing
	low level code in GnomeScanDialog.

	* lib/gnome-scan-settings.c: (gnome_scan_settings_set_boolean):
	Fixed using g_value_set_int() rather than
	g_value_set_boolean (copy-paste typo)

	* modules/gsane-meta-param.c: (meta_param_paper_size_get_params),
	(gs_rectange_rotate), (mpps_set_roi),
	(meta_param_paper_size_set_value),
	(meta_param_paper_size_get_value): Fixed rotation.

	* lib/gnome-scan-preview-plugin-area.c: (gsppa_send_area),
	(gsppa_set_roi), lib/gnome-scan-utils.c: (gs_rectangle_convert),
	(gs_rectangle_convert_to_mm), (gs_rectangle_convert_from_mm),
	(gs_rectangle_rotate): Moved to GSRectangle and GSPoint with
	gdouble value in order to have accurate paper-size handling.

	* lib/gnome-scan-preview-plugin-rotation.c: (gsppr_button_clicked),
	(gnome_scan_preview_plugin_rotation_changed): Fix rotation being
	inversed !

	* modules/gsane-scanner.c: (gsane_scanner_constructor),
	(gsane_scanner_set_property), (gsane_scanner_class_init),
	(gsane_scanner_new): Add a sane_type property to properly ignore
	webcam. Fix build issue. (Thanks Philipp).

2008-02-27  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-backend.c (gsb_probe_scanners): Show ignored
	scanner name in debug output.

	* modules/gsane-scanner.c (gsane_scanner_constructor): Ignore
	webcam device.

2008-02-26  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-meta-param.c: (meta_param_source_get_params): set
	unit of source param to none. avoid pixel unit to appear in UI.

	* lib/gnome-scan-job.c: (gnome_scan_job_dispose),
	(gnome_scan_job_class_init), (gnome_scan_job_new): move from finalize to
	dispose, fix unref of settings not belonging to job.

	* src/flegita.c (main): let gnome_scan_job_new() create settings
	object.

	* NEWS, doc/ref/*, lib/*gnome-scan-acquisition-dialog.[hc]: rework
	and complete reference manual.

	* lib/gnome-scan-job.c (gnome_scan_job_new): allow to pass NULL
	settings for auto creation.

	* src/flegita.c: (main): Unref sink.

	* lib/gnome-scan-acquisition-dialog.c, lib/gnome-scan-dialog.c:
	fix leaking of acquisition dialog and job leading to no settings
	autosave.

	* lib/gnome-scan-processor-common.c:
	(gnome_scan_processor_common_get_child_nodes): Fixed typo and tune color
	enhancement.

	* lib/gnome-scan-processor-common.c: Tune enhancement.

	* lib/gnome-scan-job.c, src/flegita-sink.c: Fixed buffer leaks

2008-02-26  Étienne Bersac  <bersace03@laposte.net>

	* modules/gsane-scanner.c (gss_option_get_value_by_index): Handle
	gfloat.

	* lib/gnome-scan-settings.c (gss_gconf_value_to_gvalue): Use
	gdouble to store gconf float (No float in gnome-scan).

2008-02-25  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c (gnome_scan_dialog_constructor): Set
	Processing tab content border width.

2008-02-24  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c: (gsd_load_backends), (gsd_probe_done):
	Added watch cursor while probing.

=== 0.5.92 ===
	
2008-02-24  Étienne Bersac  <bersace03@laposte.net>

	* configure.ac: Version 0.5.92

	* lib/*.c: fixed lots of missing ref/unref.

	* lib/gnome-scan-settings.c: (gnome_scan_settings_constructor),
	(gnome_scan_settings_finalize), (gnome_scan_settings_dispose):
	Automatic per app settings saving in gconf.
	
	* src/flegita-output-filename-widget.c:
	(flegita_output_filename_widget_set),
	(fofw_output_filename_changed): Implement set function.

2008-02-21  Étienne Bersac  <bersace03@laposte.net>

	* lib/gnome-scan-processor-common.c:
	(gnome_scan_processor_common_init): Mark param specs nick and blurb for
	translation.

	* lib/gnome-scan-boolean-widget.c:
	(gnome_scan_boolean_widget_build): Handle i18n of label.

	* configure.ac: Bump to 0.5.5

	* lib/gnome-scan-boolean-widget.c:
	(gnome_scan_boolean_widget_init): Don't show unit for boolean options.

	* lib/gnome-scan-processor-common.c:
	(gnome_scan_processor_common_init),
	(gnome_scan_processor_common_configure),
	(gnome_scan_processor_common_get_child_nodes): Added enhance option
	* lib/gnome-scan-settings.c: (gnome_scan_settings_set_boolean),
	(gnome_scan_settings_get_boolean): Added boolean facilities.

	* lib/gnome-scan-preview-plugin-area.c: (gsppa_send_area): Update page
	orientation from manual area.

	* modules/gsane-meta-param.c: (meta_param_paper_size_get_params):
	fix order of orientation, origin and paper-size
	options. paper-size depends on origin and on orientation.

	* lib/gnome-scan-dialog.c: Use 75. dpi as default preview res,
	more close to what hardware is capable of. TODO: check the actual
	resolution from the hardware.

	* lib/gnome-scan-dialog.c: (gsd_build_preview_ui): Show
	acquisition progress bar.

=== 0.5.4 ===

2008-01-15  Étienne Bersac  <bersace03@laposte.net>

	* NEWS, configure.ac: Release 0.5.4

	* configure.ac: Depends on GEGL SVN
	* lib/gnome-scan-dialog.c: (gnome_scan_dialog_constructor),
	(gsd_build_processing_ui), (gsd_preview_scanner_selected),
	(gsd_preview_monitor): Added processing UI.
	
	* lib/gnome-scan-job.c: (gnome_scan_job_configure): Added common
	processing plugin.
	
	* lib/gnome-scan-preview-plugin-area.c:
	(gnome_scan_preview_plugin_area_finalize),
	(gnome_scan_preview_plugin_area_build_ui): Dropped useless macros

	* lib/gnome-scan-preview-plugin.c (gnome_scan_preview_plugin_freeze),
	(gnome_scan_preview_plugin_thaw), (gnome_scan_preview_plugin_changed):
	Add calls to avoid infinite loops while changing a setting.
	
	* lib/gnome-scan-processor-common.c:
	(gnome_scan_processor_common_init),
	(gnome_scan_processor_common_configure): Move degree option to
	preview group.
	
	* lib/gnome-scan-string-widget.c: (gssw_activate): Avoid a segfault.
	
	* modules/gsane-scanner.c: (gss_data_color1), (gss_data_color),
	(gss_data_color1_three_pass), (gss_data_color_three_pass),
	(gss_data_gray1), (gss_data_gray), (gss_init): Migrate to latest
	GEGL API.
	
	* lib/gnome-scan-preview-plugin-rotation.[ch]: Added a preview
	rotation plugin adding rotation button.

2007-12-11  Étienne Bersac <laposte.net>

	* lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-processor-common.c,
	  lib/gnome-scan-processor-common.h, lib/Makefile.am: Added basic
	  processing and rotation support.

	* configure.ac, src/flegita-gimp-sink.c: Fixed flegita-gimp
	  plugin. Bump dependencies to gegl 0.0.14.

2007-11-04  Étienne Bersac <laposte.net>

	* src/flegita-sink.c: 
	  Set minimal compression to 1, not 0.

2007-09-25  Étienne Bersac <laposte.net>

	* ChangeLog, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-paper-size-widget.c,
	  lib/gnome-scan-preview-plugin-area.c,
	  lib/gnome-scan-preview-plugin-area.h, po/POTFILES.in: Added a
	  cursor flags in gnome-scan-preview-plugin-area allowing to
	  determine wether the user is allowed to resize/move/create
	  paper-size.

	* ChangeLog, lib/gnome-scan-job.c, lib/gnome-scanner.c,
	  lib/gnome-scanner.h, modules/gsane-scanner.c: Added
	  gnome_scanner_get_output_format(). Use new Gegl convert-format
	  op in order to avoid "RGBA float" output.

2007-09-24  Étienne Bersac <laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c: Set minimal scanner tree
	  view height to 128. Fix bug #454502.

	* ChangeLog, src/flegita.c: Set application_name and prgname in
	  flegita.

2007-09-23  Étienne Bersac <laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-init.c,
	  lib/gnome-scan-job.c, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-paper-size-widget.c, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-preview-sink.c,
	  lib/gnome-scan-sink.h, modules/gsane-scanner.c,
	  modules/gsfile-scanner.c, src/flegita-action-selector.c,
	  src/flegita-gimp-sink.c, src/flegita.h, src/flegita-sink.c,
	  src/flegita-types.c: Now GnomeScanJob build a unique Gegl
	  pipeline from src and sink plugin. There is still a bug in Gegl
	  that prevent flegita-gimp to work with.

2007-09-22  Étienne Bersac <laposte.net>

	* ChangeLog, src/flegita-output-filename-widget.c: Use
	g_user_get_special_dir(G_USER_DIRECTORY_PICTURES),
	i.e. XDG_PICTURES_DIR) instead of g_user_get_home_dir().

2007-09-21  Étienne Bersac <laposte.net>

	* ChangeLog,
	  lib/gnome-scan-page-orientation-widget.c,
	  modules/gsane-meta-param.c,
	  modules/gsane-meta-param.h: 
	  Implemented PageOrientation handling.

	* ChangeLog,
	  lib/gnome-scan-acquisition-dialog.c,
	  src/flegita-sink.c: 
	  Implemented "Forward" action.

	  FlegitaSink does not override files anymore (in a smarter way
	  than in 0.4).

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h,
	  lib/gnome-scan-preview-plugin-area.c,
	  lib/gnome-scan-preview-plugin-area.h,
	  lib/gnome-scan-preview-plugin.c,
	  lib/gnome-scan-preview-plugin.h, po/POTFILES.in:
	
	  Implemented area moving and resizing.

	  Clipped drawing in order to improve preview area
	  performances (needs feedback).

	  Code refactoring and clean up. The preview is now much more
	  better that in 0.4 :)

2007-09-15 13:18  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-preview-plugin.c,
	  lib/gnome-scan-preview-plugin.h,
	  lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h, modules/gsane-meta-param.c:
	  Split gnome-scan-preview-plugins in gnome-scan-preview-plugin and
	  gnome-scan-preview-plugin-area.

	* ChangeLog, Makefile.am, NEWS, configure.ac: Bump version to
	  0.5.3.
	  Makes Makefile.am less verbose about devel stuff (ChangeLog and
	  TODO generation).

2007-09-13 12:03  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-paper-size-widget.c,
	  lib/gnome-scan-preview-area.c, lib/gnome-scan-preview-plugins.c,
	  src/flegita-action-selector.c: Fixed bug in preview area plugin,
	  the manual area was not set from user.

2007-09-09 14:57  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-area-widget.c,
	  lib/gnome-scan-area-widget.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-page-orientation-widget.c,
	  lib/gnome-scan-paper-size-widget.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-utils.h, modules/gsane-meta-param.c,
	  modules/gsane-meta-param.h, modules/gsane-scanner.c,
	  modules/gsane-scanner.h: Moved from Area to PaperSize+Origin to
	  handle scan roi.

=== 0.5.2 ===

2007-09-06 12:56  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-paper-size-widget.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, modules/gsane-meta-param.c,
	  src/flegita-sink.c: Migrate from paper name to true paper size
	  handling.

2007-09-04 14:41  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c: Use "scanner"
	  icon instead of "input-scanner".

2007-08-29 15:05  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, modules/gsane-meta-param.c: Ignore "paper-size"
	  backend option too in GSane.
	  Warn about ignored options in GSane MetaParamArea.

	* data/input-scanner-flatbed.svg, data/input-scanner-handheld.svg,
	  data/input-scanner-multi-function.svg,
	  data/input-scanner-sheetfed.svg, data/scanner-flatbed.svg,
	  data/scanner-handheld.svg, data/scanner-multi-function.svg,
	  data/scanner-sheetfed.svg: Renamed additionnal scanner icon
	  following icon naming spec.

	* ChangeLog, data/Makefile.am, data/input-scanner.png,
	  data/input-scanner.svg, modules/gsane-scanner.c: Use
	  gnome-icon-theme "scanner" instead of own "input-scanner".

2007-08-28 13:35  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-job.c: Fixed typo, see bug #454412.

	* ChangeLog, modules/gsane-meta-param.c, po/gnome-scan.pot: Updated
	  translation comment.

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, modules/gsane-meta-param.c,
	  po/gnome-scan.pot: Updated translated string.

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-job.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-widget.h,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  po/POTFILES.in, src/Makefile.am, src/flegita-action-selector.c,
	  src/flegita-sink.c, src/flegita.c: Implemented printing (still
	  buggy).

	* configure.ac, data/Makefile.am, lib/gnome-scan-init.c: Don't
	  install private icon in shared directory. Fix some memleaks.

2007-08-09 13:40  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, src/Makefile.am, src/flegita-action-selector.c,
	  src/flegita-action-selector.h,
	  src/flegita-output-filename-widget.c, src/flegita-pspec.c,
	  src/flegita-pspec.h, src/flegita-sink.c, src/flegita-types.c,
	  src/flegita-types.c.tpl, src/flegita-types.h,
	  src/flegita-types.h.tpl, src/flegita.c, src/flegita.h: Added
	  preliminary print infrastructure.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h: Beautify code (thanks GNU Emacs).
	  Added gnome_scan_settings_{set,get}_{int,enum}.
	  Update dynamically sink UI too.

2007-08-07 19:27  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, data/Makefile.am, data/flegita-gimp.svg,
	  data/scan-as-layer.svg, src/Makefile.am, src/flegita-gimp-sink.c,
	  src/flegita-gimp-sink.h, src/flegita-gimp.c, src/flegita-sink.c,
	  src/flegita.c: Flegita-Gimp is back !

	* ChangeLog, lib/gnome-scan-settings.c, lib/gnome-scan-settings.h:
	  Added gnome_scan_settings_set_tranform() and
	  gnome_scan_settings_get_transformed().
	  Added gnome_scan_settings_{get,set}_{double,string}() based on
	  above functions.

2007-08-05 17:50  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, configure.ac, lib/gnome-scan-preview-plugins.c:
	  Another try to optimize preview area roi drawing. Push gdk
	  depedency to 2.11.

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-plugins.c: Draw during expose.

	* ChangeLog, Makefile.am, configure.ac, lib/Makefile.am,
	  lib/gnome-scan-init.c, modules, modules/Makefile.am, plugins,
	  po/POTFILES.in: Renamed plugin to module.

2007-08-03 18:36  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, configure.ac, gnome-scan.pc.in, lib/Makefile.am,
	  plugins/Makefile.am, src/Makefile.am: Use
	  SONAME set to gnomescan1 for library. Fix use of libgnomescan in
	  external software.

2007-06-29 15:14  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-preview-plugins.c: Implemented Select
	  All preview button.

2007-06-28 21:19  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-preview-plugins.c: Use GtkStyle
	  thickness whend drawing selections dashes.

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h: Implemented area selection.
	  (needs optimizations).

2007-06-17 18:24  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h: Properly disconnect signal
	  handlers.

2007-06-16 17:35  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-plugins.c: Set preview area sensitive once
	  pixbuf has been sent.
	  Draw dashes over background.

	* ChangeLog, plugins/gsane-meta-param.c: Fix bug, br-y was used
	  instead of br-x when defining default area.

	* ChangeLog, lib/gnome-scan-preview-plugins.c: Request preview
	  redraw if area is changed.
	  Fade out unselected area.

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h: Added
	  gnome_scan_preview_area_get_resolution() and
	  gnome_scan_preview_area_update().

	* ChangeLog, lib/gnome-scan-settings.c: Return a copy of the GValue
	  in gnome_scan_settings_get().

	* ChangeLog, plugins/gsane-meta-param.c,
	  plugins/gsane-meta-param.h, plugins/gsane-scanner.c: Set back
	  area according to paper-size.

	* ChangeLog, lib/gnome-scan-utils.c, lib/gnome-scan-utils.h: Added
	  GdkRectangle unit conversion functions.

	* ChangeLog, lib/gnome-scan-preview-plugins.c, po/POTFILES.in:
	  Basic area drawing in preview.

	* ChangeLog, plugins/gsane-meta-param.c: Fixed use paper width
	  instead of paper height bug.

	* ChangeLog, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h: Added cairo context as signal
	  callback parameter.

	* ChangeLog, lib/gnome-scan-settings.c, lib/gnome-scan-settings.h:
	  Added gnome_scan_settings_init_value().

=== 0.5.1 ===

2007-06-16 14:24  Étienne Bersac <bersace03@laposte.net>

	* data/Makefile.am, data/input-scanner.png: Added 24px scanner
	  image (thanks Tengo ArtLibreSet)

2007-06-14 12:19  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO, TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h: Implemented basic
	  PreviewPlugin.
	  Updated TODO.

	* plugins/gsane-module.c: Check for SANE version.

	* plugins/gsane-meta-param.c, plugins/gsane-module.c: Fixed build
	  bug.
	  Output SANE version.

	* plugins/gsane-meta-param.c, plugins/gsane-meta-param.h,
	  plugins/gsane-scanner.c: Swallow doc-source as source.
	  Create "Hidden" group for "preview" option and more  (batch-scan
	  ?)
	  Comment MetaParams.

2007-06-13 11:17  Étienne Bersac <bersace03@laposte.net>

	* configure.ac: Bumped gegl deps to 0.0.13.

2007-06-12 14:16  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, NEWS, configure.ac: Pushed 0.5.1 release.

	* lib/Makefile.am, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-preview-plugins.c,
	  lib/gnome-scan-preview-plugins.h: Added preliminary
	  GnomeScanPreviewPlugin allowing to add features to
	  GnomeScanPreviewArea.

2007-06-03 20:28  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-preview-sink.c, src/flegita-sink.c:
	  Move operation "buffer" to "save-buffer" according to Gegl SVN.

	* lib/gnome-scan-preview-area.c, lib/gnome-scan-preview-area.h:
	  Dropped AREA param. Will be more modularized.

2007-06-02 19:41  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-job.c, plugins/gsane-meta-param.c,
	  plugins/gsane-scanner.c: Fixed can't preview after changed
	  device bug.

	* ChangeLog, TODO.tasks, lib/Makefile.am,
	  lib/gnome-scan-acquisition-dialog.c, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-job.c, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-preview-sink.c,
	  lib/gnome-scan-preview-sink.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-types.c, lib/gnome-scan-utils.c,
	  lib/gnome-scan-utils.h, plugins/gsane-meta-param.c, po/en_GB.po,
	  po/es.po, po/fr.po, po/gnome-scan.pot, po/sv.po: Added
	  \"Configuring\" and \"Waiting for device\" stages to
	  GnomeScanJob.
	  Added gnome-scan-utils.
	  Implemented preview. Added GnomeScanPreviewSink.
	  Updated pot.

	* plugins/gsane-meta-param.c: Fixed wrong rect value bug.

	* lib/gnome-scan-acquisition-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h: Splitted gnome_scan_job_run() allowing to
	  run only one frame acquisition.
	  Reworked GnomeScanAcquisitionDialog according to above change.

	* plugins/gsane-meta-param.c: Keep unit for MetaParam "area".

	* lib/Makefile.am, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.h, plugins/gsane-meta-param.c,
	  plugins/gsane-scanner.c, plugins/gsfile-scanner.c,
	  src/flegita-sink.c: Added gnome-scan-utils.[hc].
	  Moved GnomeScanFormat and GnomeScanUnit to gnome-scan-utils.

2007-06-01 15:17  Étienne Bersac <bersace03@laposte.net>

	* TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-preview-area.c, lib/gnome-scan-preview-area.h: Use
	  constructor instead of init for UI building.
	  Preliminary preview handling in GnomeScanDialog.

	* data/Makefile.am, data/scan-preview.svg: Added scan-preview
	  action icon.

	* AUTHORS, ChangeLog, Makefile.am: Use author realname in
	  ChangeLog.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-init.c,
	  lib/gnome-scan-init.h, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-module-manager.h, lib/gnome-scan-module.c,
	  lib/gnome-scan-module.h, lib/gnome-scanner.c,
	  plugins/gsane-backend.c, plugins/gsane-module.c,
	  plugins/gsane-scanner.c, plugins/gsfile-backend.c,
	  plugins/gsfile-module.c, src/flegita.c: Added gnome_scan_exit().
	  Fixed denitialization.

	* lib/gnome-scan-dialog.c: Added Tooltips.

2007-05-31 12:59  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO.tasks, lib/Makefile.am,
	  lib/gnome-scan-area-widget.c, lib/gnome-scan-boolean-widget.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-enum-widget.c,
	  lib/gnome-scan-number-widget.c,
	  lib/gnome-scan-page-orientation-widget.c,
	  lib/gnome-scan-page-orientation-widget.h,
	  lib/gnome-scan-paper-size-widget.c,
	  lib/gnome-scan-paper-size-widget.h, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-range-widget.c,
	  lib/gnome-scan-string-widget.c, plugins/gsane-meta-param.c,
	  plugins/gsane-meta-param.h, plugins/gsane-scanner.c,
	  plugins/gsfile-filenames-widget.c,
	  src/flegita-output-filename-widget.c: Added PaperSize support.
	  Added preliminary orientation support.
	  Cleaned ParamWidget API.
	  Added Format front option group. Pack front option groups
	  horizontally.
	  Set default dialog height to 420.

2007-05-30 13:14  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-acquisition-dialog.c, plugins/gsane-scanner.c: Fix
	  acquisition always multiple bug.
	  Added icon in GnomeScanAcquisitionDialog.

	* plugins/gsane-meta-param.c, plugins/gsane-scanner.c,
	  plugins/gsane-scanner.h: Implemented mass acquisition in GSane.

	* ChangeLog, NEWS, lib/gnome-scan-plugin.h,
	  plugins/gsane-meta-param.c, plugins/gsane-meta-param.h,
	  plugins/gsane-scanner.c: Updated NEWS.
	  Implemented MetaParamSource set_value.

2007-05-25 23:09  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c: Pack advanced options in a
	  scrolled window only if scanner expose more than 12 options.
	  Updated TODO.

	* ChangeLog, lib/gnome-scan-dialog.c: Align option's label to left
	  instead of right (follow HIG).

	* ChangeLog, Makefile.am, NEWS, configure.ac,
	  plugins/gsane-meta-param.c: Fix typo in translatable string.
	  Added --enable-tests and --enable-tools ./configure option to
	  build tests and tools directory (disabled by default).
	  Filled NEWS in expectation of 0.5.1 release.

	* ChangeLog, lib/gnome-scan-dialog.c, po/POTFILES.in: Removed
	  scrolled window for sink options tab.

	* ChangeLog, Makefile.am, configure.ac, data, data/Makefile.am,
	  data/flegita.svg, data/input-scanner-flatbed.svg,
	  data/input-scanner-handheld.svg,
	  data/input-scanner-multi-function.svg,
	  data/input-scanner-sheetfed.svg, data/input-scanner.svg,
	  data/scan.svg, lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-init.c, lib/gnome-scan-init.h,
	  lib/gnome-scan-module-manager.c, plugins/gsane-scanner.c,
	  src/flegita.c: Added icons.

	* lib/gnome-scan-dialog.c: Fixed wrong border with in advanced tab.
	  Added border width in preview tab.

	* lib/gnome-scan-dialog.c: Fix empty "Advanced" tab shown bug.
	  Use 12 pixel border with for GnomeScanDialog notebook pages
	  instead of 6 (more consistent with GtkPrintUnixDialog).

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.h, plugins/gsane-common.c,
	  plugins/gsane-common.h, plugins/gsane-meta-param.c,
	  plugins/gsane-meta-param.h, plugins/gsane-scanner.c,
	  plugins/gsane-scanner.h, plugins/gsfile-pspec.c,
	  plugins/gsfile-pspec.h, plugins/gsfile-scanner.c,
	  src/flegita-pspec.c, src/flegita-pspec.h, src/flegita-sink.c: Use
	  GParamFlags instead of overwriting it with GnomeScanParamFlags in
	  GParamSpecs.
	  Refined MetaParam API.
	  Allow to handle per param ParamWidget instead of per plugin.
	  Refined all Param show/hide mecanism in GnomeScanDialog.

	* ChangeLog, plugins/gsane-meta-param.c, src/flegita-sink.c: Allow
	  0 png compression level in flegita sink.
	  Fix bug if device has no source.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-plugin.c, plugins/gsane-meta-param.c,
	  plugins/gsane-meta-param.h, plugins/gsane-scanner.c,
	  plugins/gsane-scanner.h, plugins/gsfile-scanner.c,
	  src/flegita-sink.c: Call gnome_scan_plugin_end_frame() in order
	  to free resources.
	  Added PNG compression level option (needs Gegl SVN r1490).
	  Added advanced sink option tab "Output".
	  Renamed GnomeScanScannerSane to GSaneScanner.

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-backend.c, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-enum-widget.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-module-manager.c, lib/gnome-scan-number-widget.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-range-widget.c, lib/gnome-scanner.c,
	  plugins/Makefile.am, plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h,
	  plugins/gnome-scan-backend-sane.c,
	  plugins/gnome-scan-backend-sane.h,
	  plugins/gnome-scan-filenames-widget.c,
	  plugins/gnome-scan-filenames-widget.h,
	  plugins/gnome-scan-files-pspec.c,
	  plugins/gnome-scan-files-pspec.h,
	  plugins/gnome-scan-module-file.c,
	  plugins/gnome-scan-module-file.h,
	  plugins/gnome-scan-module-sane.c, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h, plugins/gnome-scanner-sane.c,
	  plugins/gnome-scanner-sane.h, plugins/gsane-backend.c,
	  plugins/gsane-backend.h, plugins/gsane-common.c,
	  plugins/gsane-common.h, plugins/gsane-meta-param.c,
	  plugins/gsane-meta-param.h, plugins/gsane-module.c,
	  plugins/gsane-scanner.c, plugins/gsane-scanner.h,
	  plugins/gsfile-backend.c, plugins/gsfile-backend.h,
	  plugins/gsfile-filenames-widget.c,
	  plugins/gsfile-filenames-widget.h, plugins/gsfile-module.c,
	  plugins/gsfile-module.h, plugins/gsfile-pspec.c,
	  plugins/gsfile-pspec.h, plugins/gsfile-scanner.c,
	  plugins/gsfile-scanner.h, plugins/meta-param.c,
	  plugins/meta-param.h, po/POTFILES.in, src/Makefile.am,
	  src/flegita-output-filename-widget.c, src/flegita-sink.c: Rework
	  plugins to use own prefix and proper naming.
	  Added source MetaParam (incomplete).
	  Fixed a bug in option group display.
	  Added -Wall -g AM_CFLAGS.
	  Fixed tons of warnings 

2007-05-21 20:46  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO.tasks, lib/Makefile.am,
	  lib/gnome-scan-acquisition-dialog.c, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-filenames-widget.c,
	  lib/gnome-scan-filenames-widget.h, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-output-filename-widget.c,
	  lib/gnome-scan-output-filename-widget.h,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  plugins/Makefile.am, plugins/gnome-scan-filenames-widget.c,
	  plugins/gnome-scan-filenames-widget.h,
	  plugins/gnome-scan-files-pspec.c,
	  plugins/gnome-scan-files-pspec.h,
	  plugins/gnome-scan-module-file.c, plugins/gnome-scan-sink-file.c,
	  plugins/gnome-scan-sink-file.h, plugins/gnome-scanner-sane.c,
	  po/POTFILES.in, src/Makefile.am,
	  src/flegita-output-filename-widget.c,
	  src/flegita-output-filename-widget.h, src/flegita-pspec.c,
	  src/flegita-pspec.h, src/flegita-sink.c, src/flegita-sink.h,
	  src/flegita.c: Do not hardcode prefix in GS_DEFINE_QUARK and
	  GS_DEFINE_PARAM.
	  Moved GnomeScanOutputFilenameWidget and GSParamSpecOutputFilename
	  to FlegitaOutputFilenameWidget and
	  FlegitaParamSpecOutputFilename.
	  Moved GnomeScanFilenamesWidget and GSParamSpecFilenames to file
	  backend.
	  Don't show any text in GnomeScanAcquisitiondialog progress bar.

	* ChangeLog, TODO.tasks, plugins/Makefile.am,
	  plugins/gnome-scanner-sane.c, plugins/gnome-scanner-sane.h,
	  plugins/meta-param.c, plugins/meta-param.h, po/POTFILES.in:
	  Refactor MetaParam as GTypeFundamental.
	  Allow a MetaParam to produce multiple Params.

	* plugins/gnome-scanner-sane.c: Fix segfault in 1bit gray.

	* plugins/gnome-scanner-sane.c: Implemented 8/16bit Gray.
	  Use native Babl grayscale instead of converting to RGB.

	* ChangeLog, plugins/gnome-scanner-sane.c: Implemented 1bit Gray
	  (Black&White).

	* ChangeLog, plugins/gnome-scanner-sane.c: Implemented three pass
	  1bit RGB acquisition.

2007-05-20 20:35  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, plugins/gnome-scanner-sane.c: Refactor acquisition
	  code.
	  Implemented three pass RGB 8/16 acquisition.

	* plugins/gnome-scanner-sane.c: Implemented (useless) 1 bit per
	  sample RGB acquisition.

	* ChangeLog, plugins/gnome-scanner-sane.c: Implemented 8bit RGB
	  one-pass acquisition in GSane.

	* ChangeLog, TODO.tasks, lib/gnome-scan-area-widget.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-settings.c, plugins/gnome-scanner-sane.c:
	  Implemented dynamic tab show/hide.
	  Readded populated preview tab.

	* lib/gnome-scan-dialog.c, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-plugin.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  plugins/gnome-scanner-sane.c: Handle area MetaParam disabling.
	  Make GnomeScanParamWidget more independant to GnomeScanDialog.

2007-05-19 21:48  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO.tasks, lib/Makefile.am,
	  lib/gnome-scan-area-widget.c, lib/gnome-scan-area-widget.h,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-param-widget.h,
	  plugins/Makefile.am, plugins/gnome-scanner-sane.c,
	  po/POTFILES.in: Implemented MetaParam system in GSane.
	  Added "area" MetaParam.
	  Added GSParamSpecArea and preliminary GnomeScanAreaWidget.

	* ChangeLog, TODO.tasks, lib/Makefile.am,
	  lib/gnome-scan-boolean-widget.c, lib/gnome-scan-boolean-widget.h,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-enum-widget.c,
	  lib/gnome-scan-enum-widget.h, lib/gnome-scan-filenames-widget.c,
	  lib/gnome-scan-filenames-widget.h,
	  lib/gnome-scan-number-widget.c, lib/gnome-scan-number-widget.h,
	  lib/gnome-scan-output-filename-widget.c,
	  lib/gnome-scan-output-filename-widget.h,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-param-widget.h,
	  lib/gnome-scan-range-widget.c, lib/gnome-scan-range-widget.h,
	  lib/gnome-scan-string-widget.c, lib/gnome-scan-string-widget.h,
	  plugins/gnome-scanner-sane.c, po/POTFILES.in, tools/gs-scrot.c:
	  Modularize GnomeScanParamWidget.

	* ChangeLog, configure.ac, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, plugins/gnome-scanner-sane.c,
	  src/flegita.c: Added --disable-debug ./configure option.
	  Don't wait before setting device to ready state.

	* ChangeLog, TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  plugins/gnome-scanner-sane.c: Implemented param index. Sort param
	  per index instead of string. This help keeping options groups
	  consistency.

	* ChangeLog, TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-job.c: Udpated TODO.
	  Clean code.
	  Add 6px border to option group. Suggestions welcome.

2007-05-18 20:50  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, plugins/gnome-scanner-sane.c: Updated GnomeScannerSane
	  to new GnomeScanPlugin API.

	* lib/gnome-scan-dialog.c: Don't show front options in Advanced.

	* ChangeLog, lib/gnome-scan-init.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, plugins/gnome-scan-sink-file.c,
	  plugins/gnome-scanner-file.c, po/POTFILES.in, tests/Makefile.am:
	  Migrated from GdkPixbuf to GeglBuffer. Needs a fix in Gegl
	  \"save-buffer\" operation (see
	  https://lists.xcf.berkeley.edu/lists/gegl-developer/2007-May/000730.html
	  ).
	  Implemented mass acquisition framework and in file backend.

	* TODO.tasks, lib/gnome-scan-dialog.c,
	  plugins/gnome-scanner-sane.c: Moved common option to front option
	  group.

2007-05-17 20:06  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, TODO.tasks, lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-types.c, lib/gnome-scan-types.h,
	  lib/gnome-scan-types.h.tpl, lib/gnome-scanner.c,
	  lib/gnome-scanner.h, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-sane.c: Implemented scanner status.
	  Renamed enums to always use GnomeScan prefix (not GS).
	  Wait for scanner to be ready before building scanner UI.

	* lib/gnome-scan-dialog.c: Fix disabled widgets shown if not all
	  group is disabled bug.
	  Improve handling of empty groups.

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-settings.c,
	  plugins/gnome-scanner-sane.c: Implemented GParamSpecInt and
	  GParamSpecDouble GnomeParamSpecWidget.
	  Set only changed value in GSane, avoid useless option reloading.
	  Update settings on inexacts values.
	  Update param widgets (show/hide/set exact value) instead of
	  destroy/recreate option widget.
	  Hide disabled params instead of unsensitive them or not build
	  them.
	  Actually set GSParamRange value from GnomeScanParamWidget.

	* ChangeLog, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-types.c, lib/gnome-scan-types.c.tpl,
	  lib/gnome-scan-types.h, lib/gnome-scan-types.h.tpl,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-sane.c: Implemented param unit.

	* lib/gnome-scan-param-specs.c, po/en_GB.po, po/es.po, po/fr.po,
	  po/gnome-scan.pot, po/sv.po: Use N_() instead of _() when
	  generating GQuarks.
	  Updated pot.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-sane.c: Improve i18n handling. Now params
	  nick, blurb and values are translated at runtime using the
	  specified domain setted with gs_param_spec_set_domain().

2007-05-16 22:47  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, configure.ac, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scanner-sane.c, src/flegita.c: Enable i18n for
	  flegita (using gnome-scan domain) and GSane (using sane-backends
	  domain).
	  Implemented gs_param_values_cmp() and true value comparison for
	  enum.

	* TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-types.c,
	  plugins/gnome-scanner-sane.c: Implemented flags option support.
	  Updated TODO.
	  Now unsensitive disabled options.
	  Drop hard selected options.
	  Fix some GLib warnings.

	* ChangeLog, lib/gnome-scan-param-widget.c: Fix
	  GtkFileChooserButton not shown in GnomeScanParamWidget.

	* ChangeLog, Makefile.am, flegita.desktop.in: Added flegita
	  desktop.

	* ChangeLog, lib/gnome-scan-param-widget.c: * refactor
	  GnomeScanParamWidget.

2007-05-14 10:34  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-param-widget.c: Fix bug in Range GtkAdjustment
	  value. Thanks Philipp Sadleder !

2007-05-11 15:57  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-param-widget.c: Implemented String option ui.

	* ChangeLog, TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, plugins/gnome-scanner-sane.c:
	  Boolean option widget implementation.
	  More code in Range handling, but fighting with a f* bug. I give
	  up for this week.

	* TODO.tasks, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-settings.c,
	  plugins/gnome-scanner-sane.c: Fixed memory handling bug in
	  GSParamSpecRange.
	  Implemented GSParamSpecRange default value.
	  Preliminary Range widget implementation.
	  Use g_strdup_value_contents() where possible.

	* ChangeLog, TODO.tasks, doc/ref/gallery.xml,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  lib/gnome-scanner.c, lib/gnome-scanner.h,
	  plugins/gnome-scanner-sane.c, tools/gs-scrot.c: Implemented
	  device option setting.
	  Implemented dynamic device option reloading.
	  Sort options in options box.

	* TODO.tasks, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, plugins/gnome-scanner-sane.c:
	  Ignore inactive options.
	  Beautify debug output.
	  Implement GParamDouble, GParamString and GParamBoolean.
	  Implement boolean, double and string values getting in SANE
	  backend.
	  Fix last option group not shown bug.

2007-05-10 21:05  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, plugins/gnome-scanner-sane.c:
	  Implemented default sane option value.

	* lib/gnome-scan-param-widget.c: Base Enum option widget.

	* lib/gnome-scan-dialog.c, lib/gnome-scan-param-widget.c: Fix
	  advanced window not drawn bug.

	* lib/gnome-scan-dialog.c: Fix bug in multiple construction of
	  option group.

	* lib/gnome-scan-dialog.c: Show advanced options.

	* plugins/gnome-scanner-sane.c: Implemented
	  gss_option_get_param_spec().

	* lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h: Added
	  GSParamSpecEnum and GSParamSpecRange.
	  Added spec group functions : gs_param_spec_set_group(),
	  gs_param_spec_set_group_from_string(),
	  gs_param_spec_get_group_string().

2007-05-09 19:29  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  plugins/gnome-scanner-sane.c: Added threaded scanner option
	  detection.

	* plugins/gnome-scan-backend-sane.c, plugins/gnome-scanner-sane.c:
	  Open SANE Device. If device can't be opened, don't add it.

	* plugins/gnome-scan-backend-sane.c, plugins/gnome-scanner-sane.c:
	  Added sane-id properties to GnomeScannerSane.
	  Declared configure and work method to GnomeScannerSane (avoid
	  segfault on acquisition).

2007-05-08 11:19  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, configure.ac, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-init.c,
	  lib/gnome-scan-module-manager.c, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scan-backend-sane.c,
	  plugins/gnome-scan-backend-sane.h,
	  plugins/gnome-scan-module-sane.c, plugins/gnome-scanner-sane.c,
	  plugins/gnome-scanner-sane.h, src/Makefile.am, tests/Makefile.am,
	  tests/sane-probe.c: Use static for internal symbols.
	  Don\'t check for gimp dependency while we do not ship gimp
	  plugin.
	  Added SANE backend (only probe works).

2007-05-07 15:31  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, Makefile.am, configure.ac,
	  lib/gnome-scan-module-manager.c, tests, tests/Makefile.am,
	  tests/sane-probe.c: Added tests program.

	* ChangeLog, lib/gnome-scan-types.c, lib/gnome-scan-types.h,
	  plugins/Makefile.am, plugins/gnome-scan-module-file.c,
	  plugins/gnome-scan-module-file.h, plugins/gnome-scan-sink-file.c,
	  plugins/gnome-scan-sink-file.h, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h: Renamed sane plugin to libgsane in
	  order to avoid confusion with real SANE so.

2007-04-02 14:43  Étienne Bersac <bersace03@laposte.net>

	* tools/gs-scrot.c: Added tooltips.

	* tools/Makefile.am, tools/gs-scrot.c, tools/scrot.c: Renamed scrot
	  to gs-scrot.

	* tools/scrot.glade: Delete obsolete glade file.

2007-03-31 22:10  Étienne Bersac <bersace03@laposte.net>

	* doc/ref/images/GSParamSpecFilenames.png,
	  doc/ref/images/GSParamSpecOutputFilename.png,
	  doc/ref/images/GnomeScanAcquisitionDialog.png,
	  doc/ref/images/GnomeScanDialog.png,
	  lib/gnome-scan-param-widget.c: Use 4 pixel spacing between
	  filenames buttons.
	  Updated screenshots.

	* doc/ref/images/GSParamSpecFilenames.png,
	  doc/ref/images/GSParamSpecOutputFilename.png,
	  doc/ref/images/GnomeScanAcquisitionDialog.png,
	  doc/ref/images/GnomeScanDialog.png,
	  lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-acquisition-dialog.h, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, lib/gnome-scan-init.c,
	  lib/gnome-scan-init.h, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-module-manager.h, lib/gnome-scan-module.c,
	  lib/gnome-scan-module.h, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, lib/gnome-scan-sink.c,
	  lib/gnome-scan-sink.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.h, lib/gnome-scanner.c, lib/gnome-scanner.h,
	  plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h,
	  plugins/gnome-scan-module-file.c,
	  plugins/gnome-scan-module-file.h, plugins/gnome-scan-sink-file.c,
	  plugins/gnome-scan-sink-file.h, tools/scrot.c: Highly improve
	  screenshooter. Fix e-mail address :x

	* ChangeLog, Makefile.am, configure.ac, doc/ref/Makefile.am,
	  doc/ref/gallery.xml, doc/ref/gnome-scan-1.0-docs.sgml,
	  doc/ref/images, doc/ref/images/GSParamSpecFilenames.png,
	  doc/ref/images/GSParamSpecOutputFilename.png,
	  doc/ref/images/GnomeScanAcquisitionDialog.png,
	  doc/ref/images/GnomeScanDialog.png, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan.h, src/Makefile.am,
	  tools, tools/Makefile.am, tools/scrot.c, tools/scrot.glade:
	  Explode pkg-config checks. Will make some conditionnal in the
	  future (no-gnome, no-gimp, no-tools, )
	  Created scrot tools which automate the creation of Gnome Scan
	  widget screenshot, using Gegl to add border and drop down shadow.
	  Added widget gallery to documentation. Generate gallery from
	  available images.
	  Don't load backends upon GnomeScanDialog construction. (shoudl be
	  dispatched between gnome_scan_init() and
	  gnome_scan_dialog_run()).

2007-03-30 11:47  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-job.c, lib/gnome-scan-job.h,
	  lib/gnome-scan-plugin.h, lib/gnome-scanner.c, src/flegita.c:
	  Various fixes. GnomeScanJob does not instanciate its own settings
	  anymore.

	* ChangeLog, plugins/gnome-scan-sink-file.c: Fix symbols lookup
	  error due to migration from filename to output_filename.

2007-03-29 22:23  Étienne Bersac <bersace03@laposte.net>

	* TODO.tasks: Updated TODO.tasks

	* ChangeLog, doc/ref/gnome-scan-1.0.types,
	  lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h,
	  lib/gnome-scan-types.c, lib/gnome-scan-types.h,
	  lib/gnome-scanner.c: Fixed some documentation typo.

	* ChangeLog, autogen.sh, configure.ac, lib/Makefile.am,
	  lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-acquisition-dialog.h, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, lib/gnome-scan-init.c,
	  lib/gnome-scan-init.h, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-module-manager.h, lib/gnome-scan-module.c,
	  lib/gnome-scan-module.h, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, lib/gnome-scan-sink.c,
	  lib/gnome-scan-sink.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.c.tpl, lib/gnome-scan-types.h,
	  lib/gnome-scan-types.h.tpl, lib/gnome-scan.h,
	  lib/gnome-scanner.c, lib/gnome-scanner.h, plugins/Makefile.am,
	  plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scanner-file.c,
	  src/flegita.c: Document all Gnome Scan library.
	  Rename some stuffs.
	  Harmonize file head comment (LGPL).

	* doc/ref/gnome-scan-1.0-docs.sgml, doc/ref/gnome-scan-1.0.types,
	  doc/ref/tmpl, doc/ref/tmpl/gnome-scan-1.0-unused.sgml,
	  doc/ref/tmpl/gnome-scan-acquisition-dialog.sgml,
	  doc/ref/tmpl/gnome-scan-backend.sgml,
	  doc/ref/tmpl/gnome-scan-dialog.sgml,
	  doc/ref/tmpl/gnome-scan-init.sgml,
	  doc/ref/tmpl/gnome-scan-job.sgml,
	  doc/ref/tmpl/gnome-scan-module-manager.sgml,
	  doc/ref/tmpl/gnome-scan-module.sgml,
	  doc/ref/tmpl/gnome-scan-param-specs.sgml,
	  doc/ref/tmpl/gnome-scan-param-widget.sgml,
	  doc/ref/tmpl/gnome-scan-plugin.sgml,
	  doc/ref/tmpl/gnome-scan-preview-area.sgml,
	  doc/ref/tmpl/gnome-scan-settings.sgml,
	  doc/ref/tmpl/gnome-scan-sink.sgml,
	  doc/ref/tmpl/gnome-scan-types.sgml,
	  doc/ref/tmpl/gnome-scanner.sgml: Added SGMLs.

	* ChangeLog, INSTALL, Makefile.am, autogen.sh, configure.ac, doc,
	  doc/Makefile.am, doc/ref, doc/ref/Makefile.am,
	  doc/ref/version.xml.in, gnome-scan.pc.in, lib/Makefile.am: Added
	  gtk-doc build system.
	  Bump to 0.5 development version.

	* lib/gnome-scan-param-widget.c: Don't use g_idle_add without
	  returning false one time. Fix infinite loop bug. (Thanks Philipp !)

	* ChangeLog, Makefile.am, configure.ac, gnome-scan.pc.in,
	  lib/Makefile.am, plugins/Makefile.am: Fixed build system.
	  Added pkgconfig file.

	* ChangeLog, plugins/gnome-scan-sink-file.c: Select PNG as first
	  available output format.

	* ChangeLog, lib/gnome-scan-backend.c, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-job.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan-sink.c,
	  lib/gnome-scan-sink.h, lib/gnome-scanner.c, lib/gnome-scanner.h,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scan-sink-file.h,
	  plugins/gnome-scanner-file.c: Used GdkPixbuf formats support and
	  representation.
	  Implemented sink.
	  Added buffer plugin properties (instead of scanner output-buffer
	  and sink input-buffer).
	  Parent file chooser dialog.

2007-03-28 21:43  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-job.c, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scanner.h,
	  plugins/gnome-scanner-file.c, plugins/gnome-scanner-file.h,
	  po/POTFILES.in: Implemented acquisition.

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h,
	  lib/gnome-scan-settings.c, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h: Implemented plugin configuration.
	  Refined GnomeScanJob API in order to be thread friendly.
	  Fixed bugs in GnomeScanParamWidget properties (thanks to pippin).
	  Use default value in gnome_scan_param_widget_new().
	  Threaded filenames list store populating, delegate preview
	  generation.
	  Threaded job execution and monitoring by
	  GnomeScanAcquisitionDialog.
	  That's all :P

	* lib/gnome-scan-acquisition-dialog.c: Use GMainLoop smoothness to
	  run acquisition dialog. Set acquisition dialog unresizeable,
	  added forward button.

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c: Populate
	  acquisition dialog.

	* lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h: Implement value storing in settings.

	* lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h: Use
	  g_return_if_fail() and fix API typo.

	* ChangeLog, lib/gnome-scan-param-widget.c: Build filename from
	  widgets.

	* ChangeLog, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scan-sink-file.c: Use suffixes, not mime-types in
	  filename selector.
	  Refactor filename widget in order to fit "output filename" not
	  "input filename".

2007-03-27 21:10  Étienne Bersac <bersace03@laposte.net>

	* plugins/gnome-scan-backend-file.c: Revert debugging code.

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c: Fix dynamic expansion of widgets.

	* ChangeLog, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scan-backend-file.c, plugins/gnome-scanner-file.c,
	  po/POTFILES.in: Mark some string for translation. Refine code.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scanner-file.c: Use
	  translatable string for group quark.
	  Implemented file spec widget.
	  Reworked option box building. Now showing group and option label.
	  Packing options in table, etc.

	* ChangeLog, lib/gnome-scan-param-widget.c: Warn about non
	  supported param specs.

	* lib/gnome-scan-dialog.c: Build sink front box.

	* plugins/gnome-scan-sink-file.c: Declare filename param.

	* lib/gnome-scan-param-specs.c, lib/gnome-scan-param-specs.h: Added
	  Filename param spec.

	* lib/gnome-scan-job.c, lib/gnome-scan-job.h, src/flegita.c: Added
	  GnomeScanJob:\"snk" getter/setter.

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c: Set superclass properties in init, not
	  in _new.

2007-03-26 23:41  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c: Remove
	  acquisition dialog seperator.

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-init.c, lib/gnome-scan-init.h, src/flegita.c:
	  Added Gnome Scan initialize functions.

	* plugins/Makefile.am, plugins/gnome-scan-module-file.c,
	  plugins/gnome-scan-sink-file.c, plugins/gnome-scan-sink-file.h:
	  Declared GnomeScanSinkFile.

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-dialog.h,
	  lib/gnome-scan-job.c, lib/gnome-scan-param-widget.c,
	  src/flegita.c: Added GnomeScanDialog:\"job\". Create Job in
	  application in order to configure it before sending to the
	  dialog. (Application can scan without GnomeScanDialog).

2007-03-25 16:26  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-scan-param-widget.c: Implemented clean in filenames
	  selector.

	* ChangeLog, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c:
	  Implemented file removal in filenames selector.

	* ChangeLog, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-param-widget.c,
	  plugins/gnome-scanner-file.c: Use a GSList to list mime-types in
	  GSParamSpecFilenames.
	  Implemented multiple file addition in GnomeScanParamWidget.

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-param-widget.c, lib/gnome-scan-param-widget.h,
	  po/POTFILES.in: Implemented Filenames selector construction.
	  Let GnomeScanParamWidget decided wether to expands/fill or not.

2007-03-24 22:01  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scanner-file.c: Implemented GnomeScanJob,
	  GnomeScanSettings and GnomeScanParamWidget initialisation.
	  Simplify GnomeScanPlugin param API.
	  Implemented GnomeScanDialog front scanner widget
	  desctruction/creation. Implemented scanner selection.

	* ChangeLog, Makefile.am, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, plugins/gnome-scan-backend-file.c:
	  Enable dialog delete, this helps with buggy software.
	  Autoselecting message dialog parent window. ChangeLog is build
	  only on changes in SVN meta datas (ugly code here).

	* lib/gnome-scan-dialog.c, lib/gnome-scan-param-specs.h,
	  plugins/gnome-scan-backend-file.c, plugins/gnome-scanner-file.c:
	  Implemented hot plug/unplug support !

	* ChangeLog, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-types.c: Move
	  GS_DEFINE_QUARK from header to source. Restructure the code.

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-param-specs.c,
	  lib/gnome-scan-param-specs.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.h, lib/gnome-scanner.c,
	  plugins/gnome-scanner-file.c: Added GSParamSpecs. Implemented
	  dynamic plugin parameter pool. Added \"files\"
	  GSParamSpecFilenames to GnomeScannerFile.

2007-03-23 22:18  Étienne Bersac <bersace03@laposte.net>

	* configure.ac, lib/gnome-scan-backend.c, lib/gnome-scan-dialog.c,
	  plugins/gnome-scan-backend-file.c: Added thread support to
	  probing !!! So easy with GLib smoothness :)

	* ChangeLog, lib/gnome-scan-backend.c, lib/gnome-scan-backend.h,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-module.c,
	  lib/gnome-scan-module.h, plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-module-file.c: Added
	  GnomeScanBackend:\"probe-done\" signal.
	  Added "no backend" and "no device" dialog using a convenient
	  function.

	* lib/gnome-scan-dialog.c: Use V as accelerator for Preview tab,
	  since P is used by Apply button.

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-module-manager.c, lib/gnome-scan-module.h,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h,
	  lib/gnome-scanner.c, lib/gnome-scanner.h,
	  plugins/gnome-scan-backend-file.c, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h, po/POTFILES.in: Fixed symbols
	  export in modules.
	  Implemented device probe.
	  Implemented device list view.
	  Added GnomeScanner:"icon-name" property.

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-module-manager.c,
	  lib/gnome-scan-module.h, plugins/Makefile.am,
	  plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h,
	  plugins/gnome-scan-module-file.c,
	  plugins/gnome-scan-module-file.h, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h: Declared GnomeScanBackendFile.
	  Autodetect backends (thanks to g_type_children).
	  Révision 200 !!!

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-module-manager.c, lib/gnome-scan-module-manager.h,
	  lib/gnome-scan-module.c, lib/gnome-scan-module.h,
	  plugins/Makefile.am, plugins/gnome-scan-module-file.c,
	  plugins/gnome-scanner-file.c, plugins/gnome-scanner-file.h:
	  Implemented plugin loading system. Added ModuleManager. Thanks to
	  Michael Natterer conf
	  for GUADEC 2007. (So bad i can't be there !!!)

	* ChangeLog, README, lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-module.c, lib/gnome-scan-module.h,
	  lib/gnome-scan-plugin.c, lib/gnome-scan-plugin.h: Preliminary
	  module loading support.

	* ChangeLog, lib/gnome-scan-dialog.c: Added ScrolledWindow around
	  VBoxes.

2007-03-22 23:07  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/gnome-scan-dialog.c, src/flegita.c: Added
	  notebook, defined all tabs, instanciate all boxes.
	  Destroy widgets before quit.
	  
	* ChangeLog, lib/Makefile.am, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-acquisition-dialog.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, po/POTFILES.in, src/flegita.c: Added
	  GnomeScanDialog:\"job\" properties.
	  Added GnomeScanDialog private.
	  Implement basic GnomeScanAcquisitionDialog.
	  Chain gnome_scan_dialog_run() and
	  gnome_scan_acquisition_dialog_run().

	* ChangeLog, lib/gnome-scan-acquisition-dialog.c,
	  lib/gnome-scan-acquisition-dialog.h, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-param-widget.c,
	  lib/gnome-scan-param-widget.h, lib/gnome-scan-plugin.c,
	  lib/gnome-scan-plugin.h, lib/gnome-scan-preview-area.c,
	  lib/gnome-scan-preview-area.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, lib/gnome-scan-sink.c,
	  lib/gnome-scan-sink.h, lib/gnome-scan-types.c,
	  lib/gnome-scan-types.h, lib/gnome-scanner.c, lib/gnome-scanner.h,
	  plugins/Makefile.am, plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h, plugins/gnome-scanner-file.c,
	  plugins/gnome-scanner-file.h: Drop old files. Add new files.

	* ChangeLog, configure.ac, lib/Makefile.am,
	  lib/gnome-known-scan-options.h, lib/gnome-scan-backend-module.c,
	  lib/gnome-scan-backend-module.h, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, lib/gnome-scan-forecast.c,
	  lib/gnome-scan-forecast.h, lib/gnome-scan-job.c,
	  lib/gnome-scan-job.h, lib/gnome-scan-option-constraint.c,
	  lib/gnome-scan-option-constraint.h, lib/gnome-scan-option-set.c,
	  lib/gnome-scan-option-set.h, lib/gnome-scan-option-widget.c,
	  lib/gnome-scan-option-widget.h, lib/gnome-scan-option.c,
	  lib/gnome-scan-option.h, lib/gnome-scan-settings.c,
	  lib/gnome-scan-settings.h, lib/gnome-scan.h, lib/gnome-scanner.c,
	  lib/gnome-scanner.h, plugins/Makefile.am,
	  plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h, src/flegita.c: * Huge update
	  following http://live.gnome.org/GnomeScan/Spec .
	  * Created all classes needed for implementation.
	  * Renamed backends to plugin. New plugin installation dir.


	* ChangeLog, Makefile.am, backends, plugins, plugins/Makefile.am,
	  plugins/gnome-scan-backend-file.c,
	  plugins/gnome-scan-backend-file.h: Rename backends to plugins.

2007-03-19 18:04  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, Makefile.am, backends/gnome-scan-backend-file.c,
	  lib/Makefile.am, lib/gnome-known-scan-options.h,
	  lib/gnome-known-scanner-options.h, lib/gnome-scan-backend.h,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-option-constraint.c,
	  lib/gnome-scan-option-constraint.h, lib/gnome-scan-option-set.c,
	  lib/gnome-scan-option-set.h, lib/gnome-scan-option-widget.c,
	  lib/gnome-scan-option.c, lib/gnome-scan-option.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan.h,
	  lib/gnome-scanner-option-constraint.c,
	  lib/gnome-scanner-option-constraint.h,
	  lib/gnome-scanner-option-set.c, lib/gnome-scanner-option-set.h,
	  lib/gnome-scanner-option.c, lib/gnome-scanner-option.h,
	  lib/gnome-scanner.c, po/POTFILES.in: * Rename %ScannerOption% to
	  %ScanOption since GnomeScanOption will also handle processing
	  options.
	  * Update $(top_srcdir)/Makefile.am to generate silently ChangeLog
	  * Autoregenerated POTFILES.in

	* lib/gnome-scan-option-widget.c, lib/gnome-scanner-option.c:
	  Correct GnomeScanOption properties default value. Clean some
	  debug messages.

	* backends/gnome-scan-backend-file.c, lib/gnome-scanner-option.c:
	  Provide intial value (and type) for filenames option in
	  GnomeScanBackendFile .

	* lib/gnome-scan-dialog.c, lib/gnome-scan-option-widget.c,
	  lib/gnome-scan-settings.c: Update settings on file selection.

	* ChangeLog, lib/Makefile.am: Fixed gnome-scan-types.[hc]
	  generation. (it was only regenerate). Thanks Philip Sadeleder for
	  the first bug report on gnome-scan 0.5 ;)

	* lib/gnome-scan-option-widget.c: Drop fixed size GtkCellRenderer
	  in filenames selector. Set filenames reorderable in selector.

	* lib/gnome-scan-option-widget.c: Implemented filename removal and
	  filename list clearing. Fix preview of image lower than 96x96
	  (not that usefull for scanning but.).

	* ChangeLog, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-option-widget.c, lib/gnome-scan-settings.c,
	  po/POTFILES.in: Implemented files addition to files list.
	  Implemented file listing including preview.

2007-03-18 23:22  Étienne Bersac <bersace03@laposte.net>

	* lib/gnome-known-scanner-options.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-option-widget.c, lib/gnome-scan-option-widget.h,
	  lib/gnome-scanner-option-set.c, lib/gnome-scanner-option-set.h,
	  lib/gnome-scanner-option.c: Implemented FILENAMES
	  ScanOptionWidget. Implemented basic frontbox population.

	* backends/gnome-scan-backend-file.c, lib/Makefile.am,
	  lib/gnome-known-scanner-options.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scanner-option.c, lib/gnome-scanner-option.h: Store
	  group in GnomeScannerOption. Provide well-known options
	  id/name/desc and well-known groups. Use well-known options/groups
	  in file backend.

	* ChangeLog, Makefile.am, lib/Makefile.am, lib/gnome-scanner.h,
	  po/POTFILES.in: Fix gnome-scan to pass make distcheck.

	* ChangeLog, Makefile.am, svn2cl: * Fix ChangeLog generation. Use
	  external svn2cl.

	* backends/gnome-scan-backend-file.c, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  lib/gnome-scanner-option-set.c, lib/gnome-scanner-option-set.h,
	  lib/gnome-scanner-option.h, lib/gnome-scanner.c: Implemented
	  GnomeScanSettings update on scanner selection.

	* backends/gnome-scan-backend-file.c, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  lib/gnome-scanner-option-set.c, lib/gnome-scanner-option.c,
	  lib/gnome-scanner-option.h, lib/gnome-scanner.c,
	  lib/gnome-scanner.h: Implemented scanner details query.
	  Preliminary implementation of GnomeScannerOption{,Set}. Added
	  GnomeScannerOptionType enum. Added GnomeScanner:"backend"
	  property.

	* lib/gnome-scan-dialog.c: Autoselect first added device.
	  Preliminary device selection handle.

2007-03-17 23:30  Étienne Bersac <bersace03@laposte.net>

	* backends/gnome-scan-backend-file.c, lib/Makefile.am,
	  lib/gnome-scan-dialog.c, lib/gnome-scan-option-widget.c,
	  lib/gnome-scan-option-widget.h, lib/gnome-scanner.c: Added
	  preliminary GnomeScanOptionWidget. Drop name/vendor/product in
	  favor to id/name. It\'s more friendly for virtual device.

	* Makefile.am, backends/Makefile.am,
	  backends/gnome-scan-backend-file.c,
	  backends/gnome-scan-backend-file.h, lib/Makefile.am,
	  lib/gnome-scan-backend-module.c, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scanner.c, lib/gnome-scanner.h: Added module search
	  path features. Better handling of module loading failure.
	  Implemented basic device probe. Handle device added event in
	  GnomeScanDialog (use arbitrary icon). Fix autotools tarball
	  generation.

	* Makefile.am, backends, backends/gnome-scan-backend-file.c,
	  backends/gnome-scan-backend-file.h, configure.ac,
	  lib/Makefile.am, lib/gnome-scan-backend-module.c,
	  lib/gnome-scan-backend-module.h, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c: Added backend
	  dynamic loading support. Implemented file backend. Thanks to
	  GtkPrint code.

2007-03-16 17:25  Étienne Bersac <bersace03@laposte.net>

	* ChangeLog, lib/Makefile.am, lib/gnome-scan-settings.c,
	  lib/gnome-scanner-option-constraint.c,
	  lib/gnome-scanner-option-constraint.h: Well, this time it should
	  build 

	* lib/Makefile.am, lib/gnome-scan-backend.c,
	  lib/gnome-scan-backend.h, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-forecast.c, lib/gnome-scan-forecast.h,
	  lib/gnome-scan-job.c, lib/gnome-scan-job.h,
	  lib/gnome-scan-settings.c, lib/gnome-scan-settings.h,
	  lib/gnome-scan-types.c.tpl, lib/gnome-scan-types.h.tpl,
	  lib/gnome-scan.h, lib/gnome-scanner-option-constraint.c,
	  lib/gnome-scanner-option-constraint.h,
	  lib/gnome-scanner-option-set.c, lib/gnome-scanner-option-set.h,
	  lib/gnome-scanner-option.c, lib/gnome-scanner-option.h,
	  lib/gnome-scanner.c, lib/gnome-scanner.h, src/main.c: Added
	  almost all necessary files. Thanks to anjuta GObject class
	  generator. It does almost nothing, but it builds.

	* lib/Makefile.am, lib/gnome-scan-dialog.c,
	  lib/gnome-scan-dialog.h, lib/gnome-scan.h, src/Makefile.am,
	  src/main.c: First mockup of gnome-scan 0.5. Mostly stolen from
	  Gnome Scan 0.4.