summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: a9d274910d59f4c084d764ed8e0f4724e7cb1e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
V 0.1.9 - 2009-05-10
----------------------------------------------------------------------------

2009-05-10 09:20  cgilles

	* libkdcraw/kdcraw.cpp: backport commit #965982 from trunk

2009-04-19 15:02  cgilles

	* NEWS: update

2009-04-19 15:01  cgilles

	* libkdcraw/rawfiles.h: add rwl Leica raw format as supported
	  officially

2009-04-07 18:36  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/dcraw_fileio.cpp, libraw/internal/defines.h,
	  libraw/internal/foveon.cpp, libraw/libraw/libraw_datastream.h,
	  libraw/libraw/libraw_types.h, libraw/libraw/libraw_version.h,
	  libraw/samples/dcraw_emu.cpp, libraw/src/libraw_cxx.cpp:
	  libkdcraw from KDE3 branch : update internal Libraw to 0.7.2
	  release

2009-03-22 20:58  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/dcraw_fileio.cpp, libraw/internal/defines.h,
	  libraw/internal/foveon.cpp, libraw/libraw/libraw_version.h:
	  update interanal LibRaw to 0.7.1

2009-03-17 07:22  cgilles

	* NEWS, libkdcraw/kdcraw.cpp, libraw/Makefile.am,
	  libraw/internal/dcraw_common.cpp,
	  libraw/internal/dcraw_fileio.cpp, libraw/internal/defines.h,
	  libraw/internal/foveon.cpp,
	  libraw/internal/libraw_internal_funcs.h,
	  libraw/internal/var_defines.h, libraw/libraw/libraw.h,
	  libraw/libraw/libraw_alloc.h, libraw/libraw/libraw_const.h,
	  libraw/libraw/libraw_datastream.h,
	  libraw/libraw/libraw_internal.h, libraw/libraw/libraw_types.h,
	  libraw/libraw/libraw_version.h, libraw/samples/4channels.cpp,
	  libraw/samples/dcraw_emu.cpp, libraw/samples/dcraw_half.c,
	  libraw/samples/half_mt.c, libraw/samples/half_mt_win32.c,
	  libraw/samples/identify.cpp, libraw/samples/mem_image.cpp,
	  libraw/samples/simple_dcraw.cpp,
	  libraw/samples/unprocessed_raw.cpp, libraw/src/libraw_c_api.cpp,
	  libraw/src/libraw_cxx.cpp, test/Makefile.am: update internal
	  Libraw to 0.7.0 release

2009-03-13 20:17  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/internal/libraw_internal_funcs.h,
	  libraw/libraw/libraw_version.h: update internal libraw to 0.6.15

2009-03-08 20:04  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/internal/var_defines.h, libraw/libraw/libraw.h,
	  libraw/libraw/libraw_types.h, libraw/libraw/libraw_version.h,
	  libraw/samples/dcraw_emu.cpp, libraw/src/libraw_cxx.cpp: updated
	  internal libraw to 0.6.14. BC preserved

2009-02-25 12:50  cgilles

	* NEWS, configure.in.in, libkdcraw.lsm, libkdcraw.pc.in,
	  libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/kdcrawprivate.cpp,
	  libkdcraw/kdcrawprivate.h, libkdcraw/rawdecodingsettings.h,
	  libkdcraw/rawfiles.h, libkdcraw/rcombobox.cpp,
	  libkdcraw/rcombobox.h, libkdcraw/rnuminput.cpp,
	  libkdcraw/rnuminput.h, libkdcraw/version.h: let's go to libkdcraw
	  0.1.9

2009-02-25 10:23  cgilles

	* libkdcraw.lsm: update

2009-02-25 10:21  cgilles

	* ChangeLog: update

V 0.1.8 - 2009-02-25
----------------------------------------------------------------------------

2009-02-13 09:39  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h: update internal libraw to 0.6.13.
	  BC preserved

2009-02-07 18:10  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h, libraw/src/libraw_cxx.cpp:
	  libkdcraw from KDE3 branch : update interanal LibRaw to 0.6.12
	  release. BC preserved

2009-01-27 14:47  cgilles

	* README: fix qt url

2009-01-25 11:10  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h: updated internal LibRaw to 0.6.11

2009-01-24 20:39  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h: update libraw to 0.6.10

2009-01-16 19:31  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h: libkdcraw from KDE3 branch:
	  updated internal LibRaw to 0.6.9

2009-01-14 09:30  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h: libkdcraw from KDE3 branch :
	  update to LibRaw 0.6.8

2009-01-11 18:24  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h, libraw/src/libraw_cxx.cpp:
	  libkdcraw from KDE3 branch : updated to LibRaw 0.6.7:
	  * Added support for Samsung S85
	  * Changes in external jpeg (metadata) processing

2009-01-09 07:42  cgilles

	* libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
	  libraw/internal/foveon.cpp, libraw/libraw/libraw_version.h,
	  libraw/samples/dcraw_half.c, libraw/samples/dcraw_half.cpp,
	  libraw/samples/half_mt.c, libraw/samples/half_mt.cpp,
	  libraw/samples/half_mt_win32.c, libraw/samples/half_mt_win32.cpp:
	  libkdcraw from KDE3 branch : updated internal libraw to 0.6.6
	  stable release:
	  Imported dcraw 8.89/1.411: changes in Panasonic FZ50 processing
	  code

2009-01-09 07:41  cgilles

	* NEWS: libkdcraw from KDE3 branch : updated internal libraw to
	  0.6.6 stable release:
	  Imported dcraw 8.89/1.411: changes in Panasonic FZ50 processing
	  code
	  CCMAIL: digikam-devel@kde.org

2009-01-04 16:52  cgilles

	* NEWS, libraw/internal/dcraw_common.cpp,
	  libraw/internal/defines.h, libraw/internal/foveon.cpp,
	  libraw/libraw/libraw_version.h, libraw/samples/dcraw_half.c,
	  libraw/samples/dcraw_half.cpp, libraw/samples/half_mt.c,
	  libraw/samples/half_mt.cpp, libraw/samples/half_mt_win32.cpp,
	  libraw/src/libraw_cxx.cpp: libkdcraw from KDE3 branch: updated to
	  libraw to 0.6.5:
	  -Fixed file descriptor and buffer memory leak when thumbnail
	  extractor is called,
	  but library object is not properly initialized.
	  -Fixes in Imacon files unpacking.
	  -Fixes in Hasselblad .fff files unpacking.
	  
	  CCMAIL: digikam-devel@kde.org
	  

2009-01-01 15:47  cgilles

	* libraw/src/libraw_cxx.cpp: sync with trunk

2008-12-16 12:25  cgilles

	* NEWS: update

2008-12-15 20:55  cgilles

	* libkdcraw/kdcrawprivate.cpp: fix index. No PPM preview from RAW
	  image are not broken anymore...

2008-12-15 20:49  cgilles

	* libkdcraw/kdcrawprivate.cpp: do not include #00 char at end of
	  QCString data to generate ppm preview

2008-12-14 18:44  cgilles

	* NEWS, libkdcraw.lsm, libkdcraw.pc.in, libkdcraw/version.h: update
	  release version

2008-12-13 09:55  cgilles

	* ChangeLog: update

2008-12-13 09:41  cgilles

	* libkdcraw.lsm: prepare libkdcraw 0.1.7 for KDE3

V 0.1.7 - 2008-12-13
----------------------------------------------------------------------------

2008-12-11 21:32  cgilles

    * NEWS, libraw/internal/dcraw_common.cpp,
      libraw/internal/defines.h, libraw/internal/foveon.cpp,
      libraw/libraw/libraw_version.h: updated to LibRaw 0.6.3

2008-12-04 17:22  cgilles

    * libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
      libraw/internal/foveon.cpp, libraw/libraw/libraw_internal.h,
      libraw/libraw/libraw_version.h: libkdcraw from KDE3 branch:
      update to official libraw 0.6.2

2008-12-03 20:13  cgilles

    * NEWS, libraw/internal/dcraw_common.cpp,
      libraw/internal/defines.h, libraw/internal/foveon.cpp,
      libraw/libraw/libraw_internal.h, libraw/src/libraw_cxx.cpp:
      libkdcraw from KDE3 branch : updated internal Libraw to
      0.6.2-beta1
      New camera supported: Canon G10 & 5D Mk2, Leaf AFi 7, Leica
      D-LUX4, Panasonic FX150 & G 1, Fujifilm IS Pro.
      Binary compatibility is preserved.
      CCMAIL: digikam-devel@kde.org
      CCMAIL: kde-imaging@kde.org

2008-11-15 09:39  cgilles

    * configure.in.bot: this is optional. it's a warning

2008-10-24 14:54  cgilles

    * NEWS, configure.in.in, libkdcraw.lsm, libkdcraw.pc.in,
      libkdcraw/dcrawinfocontainer.h, libkdcraw/version.h: bump release
      id

V 0.1.6 - 2008-10-06
----------------------------------------------------------------------------

2008-10-06 10:48  cgilles

    * libkdcraw/rawfiles.h: backport from trunk

2008-09-27 15:08  cgilles

    * libkdcraw/dcrawinfocontainer.h: sync with trunk

2008-09-26 09:06  cgilles

    * libraw/libraw/libraw_version.h: fix version

2008-09-26 09:05  cgilles

    * libkdcraw/dcrawinfocontainer.h, libkdcraw/kdcrawprivate.cpp: sync
      with trunk : orientation flag + W/B points

2008-09-25 11:04  cgilles

    * NEWS, libraw/internal/dcraw_common.cpp,
      libraw/internal/defines.h, libraw/internal/foveon.cpp,
      libraw/libraw/libraw_types.h, libraw/samples/identify.cpp: update
      LibRaw to 0.6.1

2008-09-22 12:00  cgilles

    * configure.in.in: obsolete set

2008-09-18 20:35  cgilles

    * libkdcraw/kdcraw.cpp: backport from trunk

2008-09-18 19:50  cgilles

    * libkdcraw/dcrawsettingswidget.h: backport from trunk

2008-09-18 19:01  cgilles

    * NEWS: update

2008-09-18 19:00  cgilles

    * libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
      libraw/internal/foveon.cpp,
      libraw/internal/libraw_internal_funcs.h,
      libraw/internal/var_defines.h, libraw/libraw/libraw.h,
      libraw/libraw/libraw_internal.h, libraw/libraw/libraw_version.h,
      libraw/src/libraw_cxx.cpp: update libraw to 0.6.0 release.
      * dcraw 8.88 imported: new cameras (Canon 50D, Sony A900, Nikon
      D90 & P6000, Panasonic LX3 FZ28)
      * new method of black point subtraction for Canon cameras,
      preliminary banding supression.
      * Stack memory usage lowered (some thread data moved to dynamic
      memory)
      * some patches for MSVC compatibility
      

2008-09-17 11:32  cgilles

    * README: update

2008-09-17 10:26  cgilles

    * configure.in.bot, configure.in.in: libkdcraw from KDE3 branch :
      add a new .configure --enable-openmp option to compile libraw
      with parallelized code to speed-up RAW Demosaicing operations.
      You need libgomp shared library installed.
      CCMAIL: digikam-devel@kde.org
      CCMAIL: digikam-users@kde.org
      CCMAIL: kde-imaging@kde.org
      CCMAIL: holger.berger@googlemail.com
      CCMAIL: lexa@lexa.ru

2008-09-17 03:55  cgilles

    * NEWS, README, libkdcraw.lsm, libkdcraw.pc.in: sunc with trunk

2008-09-16 16:38  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/kdcrawprivate.cpp,
      libkdcraw/kdcrawprivate.h: sync with trunk

2008-09-16 12:41  cgilles

    * libkdcraw/Makefile.am, libraw/Makefile.am, test/Makefile.am: this
      flag is obsolete now

2008-09-16 12:40  cgilles

    * libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
      libraw/internal/foveon.cpp, libraw/libraw/libraw.h,
      libraw/libraw/libraw_const.h, libraw/libraw/libraw_internal.h,
      libraw/libraw/libraw_types.h, libraw/libraw/libraw_version.h,
      libraw/samples/simple_dcraw.cpp: sync with trunk

2008-09-16 12:07  cgilles

    * test/Makefile.am: do not intall these program

2008-09-16 11:58  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h: this method is
      depreciated

2008-09-16 10:41  cgilles

    * libkdcraw/kdcrawprivate.cpp, libkdcraw/kdcrawprivate.h: fix PPM
      construction from memory image

2008-09-16 08:42  cgilles

    * test/raw2png.cpp: polish

2008-09-16 08:31  cgilles

    * libkdcraw/Makefile.am, libraw/Makefile.am, test/Makefile.am: I
      hate automake : we need to copy everywhere all libraw definition
      as well to have an homogenous compilation env. I have lost 2 days
      about this problem.
      Thanks to CMake to resolve this problem very quickly in trunk

2008-09-16 06:54  cgilles

    * libkdcraw/kdcraw.cpp: more debug messages

2008-09-16 06:22  cgilles

    * libkdcraw/kdcraw.cpp: more debug message

2008-09-16 06:06  cgilles

    * test/raw2png.cpp: polish

2008-09-16 04:28  cgilles

    * libkdcraw/Makefile.am: polish

2008-09-15 18:57  cgilles

    * libkdcraw/Makefile.am, libraw/Makefile.am, test/Makefile.am: fix
      compilation flags

2008-09-15 18:55  cgilles

    * libkdcraw/Makefile.am: fix flag name

2008-09-15 14:20  cgilles

    * test/raw2png.cpp: sync with trunk

2008-09-15 14:19  cgilles

    * libraw/Makefile.am: file missing

2008-09-15 14:12  cgilles

    * test/raw2png.cpp: add half extraction

2008-09-15 13:18  cgilles

    * test/raw2png.cpp: polish

2008-09-15 13:04  cgilles

    * test/raw2png.cpp: polish

2008-09-15 11:40  cgilles

    * test/Makefile.am: add more test program

2008-09-15 11:21  cgilles

    * test/Makefile.am: add identify program

2008-09-15 10:09  cgilles

    * test/raw2png.cpp: polish

2008-09-15 10:04  cgilles

    * libkdcraw/kdcrawprivate.cpp: worng return

2008-09-15 09:49  cgilles

    * Makefile.am, libkdcraw/Makefile.am: separate libraw and libkdcraw
      compilation rules

2008-09-15 09:36  cgilles

    * libkdcraw/Makefile.am: polish

2008-09-15 09:07  cgilles

    * Makefile.am: polish

2008-09-15 09:00  cgilles

    * test, test/Makefile.am, test/raw2png.cpp: add test program

2008-09-15 07:54  cgilles

    * libkdcraw/Makefile.am: polish

2008-09-14 20:57  cgilles

    * libkdcraw/kdcraw.cpp: use const char

2008-09-14 20:41  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/kdcrawprivate.cpp: fix qDebug
      statements

2008-09-14 19:20  cgilles

    * libkdcraw/Makefile.am: now, make and compile fine

2008-09-14 19:14  cgilles

    * libkdcraw/Makefile.am: polish

2008-09-14 18:52  cgilles

    * libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
      libraw/internal/foveon.cpp, libraw/libraw/libraw_const.h,
      libraw/libraw/libraw_types.h, libraw/libraw/libraw_version.h,
      libraw/samples/dcraw_emu.cpp, libraw/samples/mem_image.cpp,
      libraw/src/libraw_cxx.cpp: backport form trunk

2008-09-14 17:01  cgilles

    * libkdcraw/kdcraw.cpp: remove debug

2008-09-14 16:57  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/kdcrawprivate.cpp: make a deep
      copy

2008-09-14 16:34  cgilles

    * libkdcraw/kdcrawprivate.cpp: polish

2008-09-14 16:05  cgilles

    * libkdcraw/dcrawinfocontainer.h, libkdcraw/kdcrawprivate.cpp:
      missing to backbport some settings from trunk

2008-09-14 15:17  cgilles

    * libkdcraw/Makefile.am: wrong file name

2008-09-14 15:16  cgilles

    * libkdcraw/Makefile.am: missing file to compile

2008-09-14 12:30  cgilles

    * Makefile.am, configure.in.in, dcraw, libkdcraw.lsm,
      libkdcraw.pc.in, libkdcraw/Makefile.am,
      libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
      libkdcraw/dcrawsettingswidget.cpp, libkdcraw/kdcraw.cpp,
      libkdcraw/kdcraw.h, libkdcraw/kdcrawprivate.cpp,
      libkdcraw/kdcrawprivate.h, libkdcraw/rawdecodingsettings.h,
      libkdcraw/version.h, libraw, libraw/internal,
      libraw/internal/dcraw_common.cpp, libraw/internal/defines.h,
      libraw/internal/foveon.cpp,
      libraw/internal/libraw_internal_funcs.h,
      libraw/internal/var_defines.h, libraw/libraw,
      libraw/libraw/libraw.h, libraw/libraw/libraw_alloc.h,
      libraw/libraw/libraw_const.h, libraw/libraw/libraw_internal.h,
      libraw/libraw/libraw_types.h, libraw/libraw/libraw_version.h,
      libraw/samples, libraw/samples/dcraw_emu.cpp,
      libraw/samples/dcraw_half.c, libraw/samples/half_mt.c,
      libraw/samples/identify.cpp, libraw/samples/mem_image.cpp,
      libraw/samples/simple_dcraw.cpp, libraw/src,
      libraw/src/libraw_c_api.cpp, libraw/src/libraw_cxx.cpp: libkdcraw
      from KDE3 branch : start new 0.1.6 version :
      port code to libraw library (http://www.libraw.org).
      remove dcraw.c code
      remove KDcrawBinary class.
      
      TODO: adapt kipi-plugins and digiKam code to new api
      
      CCMAIL: digikam-devel@kde.org
      CCMAIL: kde-imaging@kde.org

2008-09-13 12:27  cgilles

    * TODO: missing

2008-09-13 12:19  cgilles

    * ChangeLog, NEWS: preapring libkdcraw 0.1.5 release

V 0.1.5 - 2008-09-13
----------------------------------------------------------------------------

2008-09-09 10:09  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: sync API with trunk

2008-09-05 06:01  cgilles

    * libkdcraw/kdcraw.cpp: polish

2008-09-03 16:44  cgilles

    * libkdcraw/rnuminput.h: wrong default value

2008-09-03 11:58  cgilles

    * libkdcraw/rnuminput.cpp, libkdcraw/rnuminput.h: sync with KDE4

2008-09-02 13:54  aclemens

    * libkdcraw/rcombobox.cpp, libkdcraw/rcombobox.h: Due to a backport
      commit we get a lot of connect warning messages now.
      
      We have to remove the signal currentIndexChanged() again, it is
      not present in Qt3.

2008-09-01 19:47  cgilles

    * libkdcraw/Makefile.am: fix linking

2008-08-29 14:57  cgilles

    * libkdcraw/kdcraw.cpp: wrong condition

2008-08-29 13:36  cgilles

    * NEWS, libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h: backport commit
      #854433 from KDE4

2008-08-25 17:34  cgilles

    * libkdcraw/rnuminput.cpp: better layout management

2008-08-24 13:18  aclemens

    * libkdcraw/rcombobox.cpp, libkdcraw/rcombobox.h: backport commit
      #851735 from KDE4 branch

2008-08-23 11:16  aclemens

    * libkdcraw/dcrawinfocontainer.h: polish

2008-08-23 11:00  aclemens

    * libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
      libkdcraw/dcrawinfocontainer.h, libkdcraw/dcrawsettingswidget.h,
      libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h, libkdcraw/rcombobox.h,
      libkdcraw/rnuminput.h: polish

2008-08-22 13:13  aclemens

    * libkdcraw/rnuminput.h: setValue() should be a slot

2008-08-19 07:59  cgilles

    * libkdcraw/dcrawsettingswidget.cpp, libkdcraw/kdcraw.cpp,
      libkdcraw/rawdecodingsettings.h: typo

2008-08-18 19:52  aclemens

    * libkdcraw/dcrawsettingswidget.cpp: fixed some typos

2008-08-18 13:56  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: add enum of tabs

2008-08-18 13:28  cgilles

    * libkdcraw/rnuminput.cpp, libkdcraw/rnuminput.h: int -> double

2008-08-18 12:13  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: polish

2008-08-18 11:10  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
      libkdcraw/rawdecodingsettings.h: libkdcraw from KDE3 branch :
      Added more color management options

2008-08-18 09:53  cgilles

    * libkdcraw/rcombobox.cpp: polish

2008-08-17 13:55  cgilles

    * NEWS, libkdcraw/Makefile.am, libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/rcombobox.cpp, libkdcraw/rcombobox.h,
      libkdcraw/rnuminput.cpp, libkdcraw/rnuminput.h: libkdcraw from
      KDE3 branch:
      New integer and double input widget based on KDE components which
      provide a default value and a reset button, like we
      can found in pro-photograph programs like Aperture or Nikon Nx
      New combo box widget based on KDE component which provide a
      default item and a reset button.
      Adapt dcraw settings widget with these new objects.
      
      Andi,
      
      We need to use these widget into digiKam, especially into all
      image plugins. I will use it in RAW import tool.
      Just look my code to see how to use it.
      
      CCMAIL: andi.clemens@gmx.net
      CCMAIL: digikam-devel@kde.org

2008-08-16 05:52  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: libkdcraw from KDE3 branch:
      -fix crash duing a connection to a null widget.
      -fix advanced option in constructor to switch on/off post
      processed option done by dcraw.

2008-08-15 07:38  cgilles

    * NEWS, libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: new signal to ping host
      application when something is changed in settings

2008-08-14 09:44  cgilles

    * NEWS: update

2008-08-14 09:43  cgilles

    * dcraw/CAMERALIST, dcraw/README, dcraw/dcraw.c,
      libkdcraw/dcrawbinary.cpp: libkdcraw from KDE3 branch: update to
      last dcraw version 8.87. Look like new pro camera are now
      supported:
      -Kodak C603
      -Nikon D700
      -Canon EOS 1000D
      -Canon PowerShot SD300
      -Olympus E-520.
      
      CCMAIL: digikam-devel@kde.org

2008-08-08 09:14  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/rawdecodingsettings.h: use
      QString instead KURL

2008-08-08 07:25  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/rawdecodingsettings.h: polish

2008-08-08 07:12  cgilles

    * libkdcraw/rawdecodingsettings.h: polish

2008-08-08 07:10  cgilles

    * NEWS: update

2008-08-08 07:08  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/rawdecodingsettings.h: prepare
      the future : support more and more dcraw option here :
      -A : Calculate the white balance by averaging a rectangular area
      from image.
      -P : Read the dead pixel list from this file.
      -p : Use ICC profiles to define the camera's raw colorspace or
      use embeded profile from raw file.
      -o : Use ICC profiles to define the output colorspace.

2008-08-07 13:48  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp: add median
      filter passes settings. compile

2008-08-07 13:31  cgilles

    * NEWS: update

2008-08-07 13:30  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/rawdecodingsettings.h: add
      support of -m dcraw option

2008-08-07 12:55  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: polish

2008-08-07 10:05  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: new method to re-compute minimim
      width of QToolBox

2008-08-07 09:18  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: now raw decoding settings widget
      use QToolBox instead KTabWidget

2008-08-06 19:36  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: polish

2008-08-06 19:33  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: revert

2008-08-06 19:01  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: new method to set customized
      Exposure settings

2008-08-06 14:39  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: fix warnings

2008-08-06 14:38  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: polish

2008-08-06 14:36  cgilles

    * NEWS: update

2008-08-06 14:04  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: rewritting RAW decoding
      settings layout : grouping all options by functions

2008-08-06 11:23  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: polish

2008-08-06 10:22  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: polish

2008-08-06 10:18  cgilles

    * NEWS: update

2008-08-06 10:17  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: new method to set Brightness
      settings

2008-08-06 08:39  cgilles

    * NEWS, configure.in.in, libkdcraw.lsm, libkdcraw.pc.in,
      libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: Added support of White level
      settings

2008-08-06 08:06  cgilles

    * libkdcraw/kdcraw.cpp, libkdcraw/rawdecodingsettings.h,
      libkdcraw/version.h: libkdcraw from KDE3 branch : version 0.1.5 :
      API changed add support to white point settings. BC compatibility
      is broken. ABI dumped

2008-08-04 17:13  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: optimize spacing

2008-08-04 17:09  cgilles

    * libkdcraw/dcrawsettingswidget.cpp,
      libkdcraw/dcrawsettingswidget.h: optimize layout

2008-06-09 04:21  cgilles

    * libkdcraw/dcrawsettingswidget.cpp: fix i18n

2008-04-20 18:48  cgilles

    * NEWS, dcraw/CAMERALIST, dcraw/dcraw.c, libkdcraw/dcrawbinary.cpp:
      libkdcraw from KDE3 branch : updated to dcraw.c 8.86:
      Added SONY A300 (dcraw's 300th camera!),
      Fixed camera WB on the A200,
      Set model-specific saturation levels in adobe_coeff().

2008-04-07 21:52  cgilles

    * NEWS: update

2008-04-07 21:48  cgilles

    * libkdcraw/dcrawbinary.cpp: update

2008-04-07 21:47  cgilles

    * dcraw/CAMERALIST, dcraw/dcraw.c: libkdcraw from KDE3 branch :
      update to dcraw.c 8.85 => support of Olympus E-420 camera

2008-04-07 07:00  cgilles

    * libkdcraw/dcrawbinary.cpp: update

2008-04-07 06:59  cgilles

    * NEWS: update

2008-04-07 06:57  cgilles

    * dcraw/CAMERALIST, dcraw/dcraw.c: libkdcraw from KDE3 branch:
      update to new dcraw.c 8.84
      Support the Canon EOS 450D, Nikon D60, and Fuji S100FS.
      Copied new matrices from Adobe DNG Converter 4.4.
      sRAW support in 1.393 broke Fuji DNG files, now fixed.
      CCMAIL: digikam-devel@kde.org

2008-03-18 18:30  cgilles

    * libkdcraw/version.h: update

2008-03-18 18:30  cgilles

    * libkdcraw.pc.in: update

2008-03-18 18:29  cgilles

    * NEWS: update

2008-03-18 18:28  cgilles

    * libkdcraw.lsm: update

2008-03-09 15:29  vfuoglio

    * ChangeLog, libkdcraw.lsm: Preparing libkdcraw 0.1.4 release
      
      SVN_SILENT:
      CCMAIL: anaselli@linux.it

V 0.1.4 - 2008-03-09
----------------------------------------------------------------------------
2008-03-05 10:25  cgilles

	* [r782489] libkdcraw/NEWS:
	  update

2008-03-05 10:24  cgilles

	* [r782487] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/libkdcraw/dcrawbinary.cpp:
	  backport commit #782437 from KDE4

2008-03-02 08:31  cgilles

	* [r781202] libkdcraw/libkdcraw/dcrawsettingswidget.cpp:
	  fix i18n

2008-02-26 07:01  cgilles

	* [r779443] libkdcraw/libkdcraw/dcrawbinary.cpp,
	  libkdcraw/libkdcraw/dcrawbinary.h,
	  libkdcraw/libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/libkdcraw/kdcraw.cpp, libkdcraw/libkdcraw/rawfiles.h,
	  libkdcraw/libkdcraw/version.h:
	  polish

2008-02-26 06:59  cgilles

	* [r779442] libkdcraw/libkdcraw/kdcraw.cpp:
	  polish

2008-02-22 14:24  vfuoglio

	* [r778103] kipi-plugins/rawconverter/batchdialog.cpp,
	  kipi-plugins/rawconverter/batchdialog.h,
	  kipi-plugins/rawconverter/singledialog.cpp,
	  kipi-plugins/rawconverter/singledialog.h, libkdcraw/NEWS,
	  libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/dcrawsettingswidget.h,
	  libkdcraw/libkdcraw/kdcraw.cpp, libkdcraw/libkdcraw/kdcraw.h,
	  libkdcraw/libkdcraw/rawdecodingsettings.h:
	  White balance with RAW files improvements (related to bug
	  #142055).
	  
	  Patches by Guillaume Castagnino.
	  
	  CCMAIL : kde-imaging@kde.org
	  CCMAIL : casta@xwing.info
	  CCMAIL : caulier.gilles@gmail.com

2008-02-07 13:23  cgilles

	* [r772001] libkdcraw/libkdcraw/dcrawbinary.cpp:
	  fix dcraw release

2008-02-07 12:57  gkulzer

	* [r771991] libkdcraw/NEWS:
	  update to 8.82
	  no new options, just renameing of -k black ro -k darkness
	  4 new cameras:
	  Sony DSLR-A200, Sony DSLR-A700, Sony XCD-SX910CR, STV680 VGA
	  CCMAIL: caulier.gilles@gmail.com

2008-02-07 12:56  gkulzer

	* [r771990] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/dcraw/kdcraw.1:
	  update to 8.82
	  no new options, just renameing of -k black ro -k darkness
	  4 new cameras:
	  Sony DSLR-A200, Sony DSLR-A700, Sony XCD-SX910CR, STV680 VGA
	  CCMAIL: caulier.gilles@gmail.com

2008-01-01 20:40  cgilles

	* [r755552] libkdcraw/libkdcraw/dcrawbinary.h:
	  static method

2008-01-01 20:03  cgilles

	* [r755539] kipi-plugins/imageviewer/texture.cpp,
	  kipi-plugins/jpeglossless/utils.cpp,
	  kipi-plugins/printwizard/tphoto.cpp,
	  kipi-plugins/rawconverter/plugin_rawconverter.cpp,
	  kipi-plugins/sendimages/sendimages.cpp,
	  libkdcraw/libkdcraw/dcrawbinary.cpp,
	  libkdcraw/libkdcraw/dcrawbinary.h:
	  new method to get raw files extension string depending of the
	  libkdcraw version installled on computer.

2008-01-01 09:36  cgilles

	* [r755359] libkdcraw/libkdcraw/dcrawbinary.cpp,
	  libkdcraw/libkdcraw/dcrawbinary.h:
	  new method backported from KDE4 to get list of supported RAW
	  camera

2007-12-30 22:04  anaselli

	* [r754876] libkdcraw/configure.in.in, libkdcraw/libkdcraw.lsm,
	  libkdcraw/libkdcraw.pc.in, libkdcraw/libkdcraw/kdcraw.cpp,
	  libkdcraw/libkdcraw/kdcraw.h:
	  Breakage of the year, new static method version() has been added
	  
	  CCMAIL: kde-imaging@kde.org

----------------------------------------------------------------------------
V 0.1.3 - 2007-12-23
----------------------------------------------------------------------------
2007-12-14 14:09  cgilles

	* [r748435] libkdcraw/libkdcraw/version.h:
	  fix new version

2007-12-14 08:17  gkulzer

	* [r748345] libkdcraw/dcraw/CAMERALIST:
	  clean-up list

2007-12-14 07:57  gkulzer

	* [r748333] libkdcraw/NEWS, libkdcraw/dcraw/CAMERALIST,
	  libkdcraw/dcraw/README, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/dcraw/kdcraw.1, libkdcraw/libkdcraw/dcrawbinary.cpp:
	  update dcraw to 8.81. Interface stays compatible, regression
	  testing done. 4 cameras added. Additional parameter -W to not
	  adjust brightness

2007-11-16 14:59  gkulzer

	* [r737564] libkdcraw/NEWS:
	  dcraw update to 8.80
	  CCMAIL:caulier.gilles@gmail.com

2007-11-16 14:48  gkulzer

	* [r737563] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/libkdcraw/dcrawbinary.cpp:
	  update dcraw to version 8.80

2007-11-14 10:22  cgilles

	* [r736540] libkdcraw/dcraw/dcraw.c:
	  fix double "%s"

2007-11-02 14:13  gkulzer

	* [r732003] libkdcraw/dcraw/kdcraw.1:
	  man page update

2007-11-02 11:58  cgilles

	* [r731957] libkdcraw/dcraw/Makefile.am:
	  polish

2007-11-02 11:44  cgilles

	* [r731953] libkdcraw/libkdcraw.lsm, libkdcraw/libkdcraw.pc.in:
	  upgrate libkdcraw version

2007-11-02 11:44  cgilles

	* [r731952] libkdcraw/dcraw/Makefile.am:
	  install CAMERALIST on kdcraw bin folder

2007-11-02 11:33  cgilles

	* [r731948] libkdcraw/dcraw/dcraw.c:
	  separate Make ans Model informations from identify command line

2007-11-02 10:46  gkulzer

	* [r731936] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/dcraw/kdcraw.1, libkdcraw/libkdcraw/dcrawbinary.cpp:
	  dcraw update to version 8.78
	  CCMAIL:caulier.gilles@gmail.com

2007-10-21 10:34  hasso

	* [r727627] libkdcraw/configure.in.in, libkdcraw/dcraw/Makefile.am:
	  Make it to find the lcms from nonstandard places provided by user
	  via
	  --with-extra-* flags. Fixes detecting lcms installed from pkgsrc
	  package
	  system.

2007-09-07 22:02  vfuoglio

	* [r709600] libkdcraw/ChangeLog, libkdcraw/configure.in.in,
	  libkdcraw/libkdcraw.lsm, prepare_libkdcraw.rb:
	  Preparing libkdcraw 0.1.2 release
	  
	  SNV_SILENT:

----------------------------------------------------------------------------
V 0.1.2 - 2007-09-07
----------------------------------------------------------------------------
2007-09-04 21:03  cgilles

	* [r708412] libkdcraw/AUTHORS:
	  fix email

2007-09-04 09:57  cgilles

	* [r708249] libkdcraw/AUTHORS:
	  Add Guillaume as contributor

2007-08-24 08:10  cgilles

	* [r704175] libkdcraw/configure.in.in:
	  fix ABI number for next release

2007-08-23 11:07  cgilles

	* [r703805] libkdcraw/configure.in.in:
	  fix release number

2007-08-22 13:58  cgilles

	* [r703433] libkdcraw/libkdcraw/kdcraw.cpp:
	  add comment

2007-08-22 13:23  cgilles

	* [r703414] libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/dcrawsettingswidget.h,
	  libkdcraw/libkdcraw/kdcraw.cpp,
	  libkdcraw/libkdcraw/rawdecodingsettings.h:
	  libkdcraw from KDE3 branch : patch from Guillaume Castagnino
	  about to support new chromatic aberration reduction options
	  provided by dcraw 8.77
	  CCBUGS: 148561
	  CCMAIL: casta@xwing.info

2007-08-22 04:33  cgilles

	* [r703160] libkdcraw/libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/libkdcraw/kdcraw.cpp:
	  libkdcraw from KDE3 branch : like BC is broken with future
	  release, i backport "Picture Owner" extraction code from KDE4
	  provided by new dcraw 8.77

2007-08-20 09:59  cgilles

	* [r702272] libkdcraw/libkdcraw/dcrawsettingswidget.cpp:
	  fix option

2007-08-20 09:39  cgilles

	* [r702258] libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/rawdecodingsettings.h:
	  libkdcraw from KDE3 branch : patch from Guillaume Castagnino
	  about to handle RAW decoding quality settings properlly since
	  dcraw 8.73 include a new interpolation method named PPG
	  CCMAIL: kde-imaging@kde.org
	  CCMAIL: casta@xwing.info

2007-07-25 14:37  cgilles

	* [r692427] libkdcraw/libkdcraw/dcrawsettingswidget.cpp:
	  fix typo

2007-07-24 12:06  cgilles

	* [r691818] libkdcraw/libkdcraw/dcrawbinary.cpp:
	  fix internal dcraw version

2007-07-24 11:57  cgilles

	* [r691813] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/dcraw/kdcraw.1:
	  libkdcraw from KDE3 branch :
	  - update internal dcraw.c implementation from 8.76 to 8.77.
	  - new cameras RAW file supported : Leaf Aptus 54S and Leaf Aptus
	  75S
	  - Binary compatibility respected.
	  - Changelog from dcraw repository :
	  * Reject 8-bit grayscale TIFFs.
	  * Decode raw CINE files, which may exceed 2GB.
	  * Error-check the "-s" option, and enable "-s all".
	  * Support camera WB for the Canon EOS-1D and EOS-1DS.
	  * Use full output range for "-H 2".
	  
	  CCMAIL: digikam-devel@kde.org

2007-07-04 07:59  cgilles

	* [r683108] libkdcraw/libkdcraw/dcrawsettingswidget.cpp:
	  fix unclip color control with reconstruct setting

2007-07-04 07:53  cgilles

	* [r683105] libkdcraw/AUTHORS, libkdcraw/NEWS,
	  libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/rawdecodingsettings.h:
	  libkdcraw from KDE3 branch: update setting widget to new dcraw
	  8.76.

2007-07-04 07:44  cgilles

	* [r683099] libkdcraw/libkdcraw/dcrawbinary.cpp:
	  update

2007-07-04 07:41  cgilles

	* [r683096] libkdcraw/libkdcraw/version.h:
	  update

2007-07-04 07:41  cgilles

	* [r683095] libkdcraw/libkdcraw.lsm, libkdcraw/libkdcraw.pc.in:
	  update

2007-07-04 07:40  cgilles

	* [r683094] libkdcraw/dcraw/kdcraw.1:
	  update man page

2007-07-04 07:39  cgilles

	* [r683093] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/README,
	  libkdcraw/dcraw/dcraw.c:
	  libkdcraw from KDE3 branch: update internal dcraw version from
	  8.60 to 8.76.
	  
	  New digital still camera supported are given below :
	  
	  Apple QuickTake 100
	  Apple QuickTake 150
	  Canon PowerShot A630
	  Canon PowerShot A640
	  Canon PowerShot A710 IS
	  Canon EOS-1D Mark III
	  Casio QV-R41
	  Fuji FinePix S5Pro
	  Hasselblad CFV
	  Kodak C330
	  Mamiya ZD
	  Nikon D2Xs
	  Nikon D40X
	  Olympus E-410
	  Olympus E-510
	  Olympus SP510UZ
	  Olympus SP550UZ
	  Panasonic DMC-FZ8
	  Pentax Optio 750Z
	  Samsung GX-10
	  Sigma SD14
	  
	  The current implementation of libkdcraw for KDE3 do not break
	  binary compatibility. RAW decoding settings still the same. Only
	  private methods have been fixed, especally the settings widget.
	  
	  I will break binary compatibility of libkdcraw with KDE4 port
	  where i will add new settings like chromatic aberration
	  correction for ex.
	  
	  CCBUGS: 142568
	  CCMAIL: kde-imaging@kde.org
	  CCMAIL: digikam-devel@kde.org
	  CCMAIL: ach@mpe.mpg.de
	  CCMAIL: boud@valdyas.org

2007-06-13 16:54  cgilles

	* [r674972] libkdcraw/libkdcraw/Makefile.am:
	  fix broken compilation about moc file

2007-06-13 08:38  cgilles

	* [r674833] libkdcraw/libkdcraw/kdcraw.cpp:
	  no i18n here

2007-06-13 06:49  cgilles

	* [r674798] libkdcraw/dcraw/CAMERALIST, libkdcraw/dcraw/cameralist:
	  rename

2007-06-13 06:48  cgilles

	* [r674797] libkdcraw/libkdcraw/Makefile.am:
	  use CXXFLAGS instead INCLUDES to dispatch -D option suring
	  compilation

----------------------------------------------------------------------------
V 0.1.1 - 2007-06-13
----------------------------------------------------------------------------

2007-06-12 22:32  ach

	* [r674731] libkdcraw/configure.in.in, libkdcraw/dcraw/Makefile.am,
	  libkdcraw/libkdcraw/Makefile.am,
	  libkdcraw/libkdcraw/dcrawbinary.cpp:
	  o install the '(dirty) implementation detail' kdcraw into a
	  directory that depends on the ABI_MAJOR. This allows
	  several libs with different ABI_MAJOR be installed at the
	  same time.
	  o don't install manpage. kdcraw is not for the user

2007-06-12 21:15  anaselli

	* [r674703] libkdcraw/libkdcraw/Makefile.am:
	  Changed to add libtools version managing into prepare script
	  (hope this will avoid to forget it)

2007-06-11 12:04  cgilles

	* [r673923] libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/dcrawsettingswidget.h:
	  new signal emit when sixteen bits options is toggled

2007-06-07 15:12  cgilles

	* [r672576] libkdcraw/Makefile.am:
	  compile

2007-06-07 15:12  cgilles

	* [r672575] libkdcraw/libkdcraw, libkdcraw/src:
	  compile

2007-06-07 14:52  cgilles

	* [r672567] libkdcraw/Makefile.am, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawdecodingsettings.h, libkdcraw/rawfiles.h,
	  libkdcraw/src, libkdcraw/src/Makefile.am,
	  libkdcraw/src/dcrawbinary.cpp, libkdcraw/src/dcrawbinary.h,
	  libkdcraw/src/dcrawinfocontainer.h,
	  libkdcraw/src/dcrawsettingswidget.cpp,
	  libkdcraw/src/dcrawsettingswidget.h, libkdcraw/src/kdcraw.cpp,
	  libkdcraw/src/kdcraw.h, libkdcraw/src/libkdcraw_export.h,
	  libkdcraw/src/rawdecodingsettings.h, libkdcraw/src/rawfiles.h,
	  libkdcraw/src/version.h, libkdcraw/version.h:
	  libkdcraw from KDE3 branch : move all source code files to "src"
	  sub dir

2007-06-07 07:00  cgilles

	* [r672447] libkdcraw/rawdecodingsettings.h:
	  libkdraw from KDE3 branches : patch from Jakob Stergaard to
	  perform equality test between 2 rawdecoding settings.
	  CCBUGS: 146464

2007-06-05 09:33  vkrause

	* [r671669] libkdcraw/dcrawbinary.cpp:
	  compile, this is still Qt3

2007-06-05 09:12  cgilles

	* [r671664] libkdcraw/dcraw/Makefile.am:
	  digiKam => libkdcraw

2007-06-05 08:20  cgilles

	* [r671639] libkdcraw/dcrawbinary.cpp:
	  krazy fix

2007-06-12 08:39  mlaurent

	* [r674372] kipi-plugins/wallpaper/plugin_wallpaper.cpp,
	  libkdcraw/libkdcraw/CMakeLists.txt:
	  Fix compile/install

2007-06-11 12:14  cgilles

	* [r673926] libkdcraw/libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw/dcrawsettingswidget.h:
	  new signal emit with sixteen bits option is toggled

2007-06-10 21:01  cgilles

	* [r673688] kipi-plugins/CMakeLists.txt,
	  kipi-plugins/common/Makefile.am,
	  kipi-plugins/jpeglossless/utils.cpp,
	  libkdcraw/libkdcraw/kdcraw.cpp, libkexiv2/libkexiv2/kexiv2.cpp:
	  completeSuffix -> suffix

2007-06-10 10:01  coolo

	* [r673456] libkdcraw/Messages.sh:
	  no files here

2007-06-08 12:43  cgilles

	* [r672906] kipi-plugins/README, libkdcraw/README,
	  libkexiv2/README, libkipi/README:
	  add "export VERBOSE=1" in INSTALL section

2007-06-08 12:30  cgilles

	* [r672897] libkdcraw/README:
	  update

2007-06-07 15:19  cgilles

	* [r672581] libkdcraw/CMakeLists.txt, libkdcraw/libkdcraw,
	  libkdcraw/src, libkipi/CMakeLists.txt, libkipi/libkipi,
	  libkipi/src:
	  rename 'src' sub dir to libraries name

2007-06-07 07:03  cgilles

	* [r672448] libkdcraw/src/rawdecodingsettings.h:
	  libkdcraw from trunk (KDE) : backport KDE3 patch from Jakob
	  CCBUGS: 146464

2007-06-06 10:48  mlaurent

	* [r672195] libkdcraw/CMakeLists.txt,
	  libkdcraw/dcraw/CMakeLists.txt, libkdcraw/src/CMakeLists.txt,
	  libkdcraw/src/dcrawbinary.cpp, libkdcraw/src/dcrawbinary.h,
	  libkdcraw/src/kdcraw.cpp, libkdcraw/src/kdcraw.h,
	  libkdcraw/src/version.h, libkdcraw/src/version.h.cmake:
	  Simplify it now when we change soname not necessary
	  to change in 3 files just into libkdcraw/CMakeLists.txt

2007-06-06 10:09  cgilles

	* [r672188] libkdcraw/dcraw/CMakeLists.txt,
	  libkdcraw/src/dcrawbinary.cpp:
	  libkdcraw form trunk (KDE): first approach to introduce the
	  soname ID of libary like suffixe of kdcraw binary program. By
	  this way, we can install more than one libkdcraw version on the
	  same computer.
	  CCMAIL: ach@mpe.mpg.de

2007-06-06 08:26  cgilles

	* [r672158] libkdcraw/cmake/modules/FindLCMS.cmake:
	  backport temporally FindLCMS from KDElibs.
	  Laurent, i will remove later...

2007-06-06 08:22  cgilles

	* [r672156] libkdcraw/src/CMakeLists.txt:
	  no need to link with lcms. Only dcraw.c require it

2007-06-06 07:26  mlaurent

	* [r672130] libkdcraw/CMakeLists.txt,
	  libkdcraw/dcraw/CMakeLists.txt, libkdcraw/src/CMakeLists.txt:
	  Use variable found by find_package
	  (search before to go into directory)

2007-06-05 22:28  cgilles

	* [r671971] libkdcraw/src/CMakeLists.txt:
	  compile

2007-06-05 22:19  cgilles

	* [r671968] libkdcraw/CMakeLists.txt, libkipi/src/CMakeLists.txt,
	  libkipi/src/plugin.cpp, libkipi/src/plugin.h:
	  compile

2007-06-05 18:05  cgilles

	* [r671890] libkdcraw/CMakeLists.txt, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawdecodingsettings.h, libkdcraw/rawfiles.h,
	  libkdcraw/src/CMakeLists.txt, libkdcraw/src/dcrawbinary.cpp,
	  libkdcraw/src/dcrawbinary.h, libkdcraw/src/dcrawinfocontainer.h,
	  libkdcraw/src/dcrawsettingswidget.cpp,
	  libkdcraw/src/dcrawsettingswidget.h, libkdcraw/src/kdcraw.cpp,
	  libkdcraw/src/kdcraw.h, libkdcraw/src/libkdcraw_export.h,
	  libkdcraw/src/rawdecodingsettings.h, libkdcraw/src/rawfiles.h,
	  libkdcraw/src/version.h, libkdcraw/version.h:
	  libkdcraw from trunk : polish sub-folders. Use 'src' to hosts all
	  source code files

2007-06-05 17:58  cgilles

	* [r671888] libkdcraw/src:
	  add

2007-06-05 17:18  cgilles

	* [r671880] libkdcraw/dcraw/CMakeLists.txt:
	  polish

2007-06-05 17:16  cgilles

	* [r671877] libkdcraw/libkdcraw.kdevelop:
	  rm

2007-06-05 17:13  cgilles

	* [r671876] libkdcraw/Makefile.am:
	  rm

2007-06-05 17:11  cgilles

	* [r671872] libkdcraw/libkdcraw_export.h:
	  fix export symbol

2007-06-05 16:48  cgilles

	* [r671862] libkdcraw/configure.in.bot, libkdcraw/configure.in.in:
	  rm old files

2007-06-05 16:46  cgilles

	* [r671861] libkdcraw/Messages.sh:
	  i18n rules

2007-06-05 14:39  mlaurent

	* [r671798] libkdcraw/cmake/modules/FindLCMS.cmake:
	  Move into kdelibs (now used by koffice/libdcraw and digikam for
	  the future)

2007-06-05 13:30  cgilles

	* [r671739] libkdcraw/CMakeLists.txt,
	  libkdcraw/dcrawsettingswidget.cpp:
	  libkdcraw from trunk : port to CMake/Qt4/KDE4 complete !
	  
	  CCMAIL: digikam-devel@kde.org
	  CCMAIL: kde-imaging@kde.org
	  CCMAIL: boud@valdyas.org

2007-06-05 13:13  cgilles

	* [r671731] libkdcraw/dcraw/CMakeLists.txt:
	  do not use enablefinal mode to compile dcraw.c

2007-06-05 12:06  cgilles

	* [r671702] libkdcraw/dcrawinfocontainer.h:
	  port to QT4/KDE4

2007-06-05 12:04  cgilles

	* [r671701] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  libkdcraw from trunk : porting to Qt4/KDE4

2007-06-05 10:48  cgilles

	* [r671692] libkdcraw/CMakeLists.txt, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h:
	  libkdcraw from trunk : port to KDE4/QT4

2007-06-05 09:43  cgilles

	* [r671676] libkdcraw/dcraw/CMakeLists.txt:
	  polish

2007-06-05 09:42  cgilles

	* [r671675] libkdcraw/dcraw/Makefile.am:
	  this file is obsolete now

2007-06-05 09:42  cgilles

	* [r671674] libkdcraw/dcraw/CMakeLists.txt:
	  install kcraw man page

2007-06-05 09:37  cgilles

	* [r671671] libkdcraw/dcraw/CMakeLists.txt:
	  dcraw.c now compile with cmake

2007-06-05 09:20  cgilles

	* [r671666] libkdcraw/dcraw/CMakeLists.txt:
	  port to cmake. Uncomplete

2007-06-05 09:11  cgilles

	* [r671663] libkdcraw/dcraw/Makefile.am:
	  digiKam => libkdcraw

2007-06-05 09:08  cgilles

	* [r671662] libkdcraw/CMakeLists.txt,
	  libkdcraw/icons/CMakeLists.txt, libkdcraw/icons/Makefile.am:
	  include icons sub-dir

2007-06-05 09:04  cgilles

	* [r671661] libkdcraw/CMakeLists.txt:
	  include dcraw sub dir

2007-06-05 09:00  cgilles

	* [r671660] libkdcraw/README:
	  update

2007-06-05 08:58  cgilles

	* [r671658] libkdcraw/NEWS:
	  update

2007-06-05 08:57  cgilles

	* [r671657] libkdcraw/libkdcraw.pc.cmake:
	  new line at EOF

2007-06-05 08:50  cgilles

	* [r671655] libkdcraw/CMakeLists.txt:
	  cmake port continue

2007-06-05 08:43  cgilles

	* [r671649] libkdcraw/libkdcraw.pc.cmake:
	  cmake port continue

2007-06-05 08:41  cgilles

	* [r671647] libkdcraw/libkdcraw.pc.cmake,
	  libkdcraw/libkdcraw.pc.in:
	  port to cmake

2007-06-05 08:35  cgilles

	* [r671646] libkdcraw/cmake, libkdcraw/cmake/modules,
	  libkdcraw/cmake/modules/FindLCMS.cmake,
	  libkdcraw/dcrawbinary.cpp, libkdcraw/libkdcraw.lsm,
	  libkdcraw/libkdcraw.pc.in, libkdcraw/version.h:
	  libkdcraw from trunk : start CMake port

2007-06-05 06:13  cgilles

	* [r671600] libkdcraw:
	  CMake/QT4/KDE4 port

2007-06-02 14:14  helio

	* [r670712] branches/extragear/kde3/libs, .:
	  - First directory to move. No 4.x apps here yet.

2007-05-16 19:27  mwiesweg

	* [r665389] libkdcraw/kdcraw.cpp:
	  I think these lines got lost when splitting the methods...

2007-05-16 08:51  cgilles

	* [r665231] libkdcraw/NEWS, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h:
	  libkdcraw from trunk : separate methods to extract RAW JPEG
	  preview and RAW half decoding

2007-05-16 07:39  cgilles

	* [r665228] libkdcraw/NEWS:
	  updated

2007-05-16 07:38  cgilles

	* [r665227] libkdcraw/dcrawinfocontainer.h:
	  added destructor. Fix API doc

2007-05-16 07:31  cgilles

	* [r665226] libkdcraw/dcrawsettingswidget.h:
	  destructor is now virtual

2007-05-16 07:30  cgilles

	* [r665225] libkdcraw/rawdecodingsettings.h:
	  destructor is now virtual

2007-05-16 07:30  cgilles

	* [r665224] libkdcraw/version.h:
	  update

2007-05-16 07:29  cgilles

	* [r665222] libkdcraw/libkdcraw.pc.in:
	  update

2007-05-16 07:25  cgilles

	* [r665218] libkdcraw/libkdcraw.lsm:
	  update

2007-05-16 07:24  cgilles

	* [r665217] libkdcraw/NEWS:
	  update

2007-05-16 07:24  cgilles

	* [r665215] libkdcraw/kdcraw.h:
	  destructor is now virtual

2007-05-16 07:22  cgilles

	* [r665213] libkdcraw/AUTHORS:
	  update

2007-05-16 05:36  cgilles

	* [r665183] libkdcraw/NEWS:
	  update

2007-05-16 05:34  cgilles

	* [r665182] libkdcraw/dcrawbinary.cpp:
	  libkdcraw from trunk : patch to compile under CYGWIN
	  BUG: 145482

2007-05-14 08:10  cgilles

	* [r664527] libkdcraw/README, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawdecodingsettings.h, libkdcraw/rawfiles.h,
	  libkdcraw/version.h:
	  fix header

2007-05-05 14:18  gkulzer

	* [r661421] libkdcraw/libkdcraw.pc.in:
	  0.1.0 release, coordinated with digiKam 0.9.2-beta1 release

2007-05-05 14:10  gkulzer

	* [r661419] libkdcraw/libkdcraw.lsm:
	  0.1.3 release, coordinated with digiKam 0.9.2-beta1 release

2007-05-05 14:07  gkulzer

	* [r661418] libkdcraw/version.h:
	  0.1.3 release, coordinated with digiKam 0.9.2-beta1 release

2007-05-05 14:07  gkulzer

	* [r661417] libkdcraw/dcraw/dcraw.c:
	  0.1.3 release, coordinated with digiKam 0.9.2-beta1 release

2007-05-02 07:09  cgilles

	* [r660284] libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
	  libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawdecodingsettings.h, libkdcraw/rawfiles.h,
	  libkdcraw/version.h:
	  fix headers

2007-04-21 20:26  mwiesweg

	* [r656606] libkdcraw/kdcraw.cpp:
	  Trying to fix crash: Do not wait on process exit here, and leave
	  setting
	  d->normalExit to slotProcessExited.
	  
	  This fixes the crash I was experiencing here.
	  
	  CCMAIL: caulier.gilles@gmail.com

2007-03-14 12:00  cgilles

	* [r642424] libkdcraw/libkdcraw.lsm:
	  fix version

2007-03-14 12:00  cgilles

	* [r642423] libkdcraw/libkdcraw.pc.in:
	  fix version

2007-03-14 11:59  cgilles

	* [r642422] libkdcraw/version.h:
	  fix version

2007-03-09 06:34  gkulzer

	* [r640778] libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h:
	  Disabling 'Brightness' slider when in 16bit mode, dcraw does not
	  support this.
	  CCMAIL:caulier.gilles@gmail.com

2007-02-27 04:55  gkulzer

	* [r637623] libkdcraw/dcrawsettingswidget.cpp:
	  i18n strings polished

2007-02-23 06:54  cgilles

	* [r636445] libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/libkdcraw.kdevelop, libkdcraw/rawdecodingsettings.h:
	  API doc

2007-02-22 19:20  cgilles

	* [r636303] libkdcraw/dcrawsettingswidget.cpp:
	  fix interval

2007-02-22 19:14  cgilles

	* [r636301] libkdcraw/dcrawsettingswidget.cpp:
	  fix

2007-02-22 14:52  cgilles

	* [r636237] libkdcraw/dcrawsettingswidget.cpp:
	  added labels

2007-02-22 12:13  cgilles

	* [r636213] libkdcraw/dcraw/README:
	  update

2007-02-22 12:12  cgilles

	* [r636212] libkdcraw/dcraw/README, libkdcraw/dcraw/cameralist:
	  add camera list supported by current dcraw release.

2007-02-22 12:01  cgilles

	* [r636211] kipi-plugins/kipiplugins.kdevelop,
	  kipi-plugins/rawconverter/batchdialog.cpp,
	  kipi-plugins/rawconverter/singledialog.cpp,
	  libkdcraw/dcraw/dcraw.c, libkdcraw/dcraw/kdcraw.1,
	  libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/libkdcraw.kdevelop, libkdcraw/rawdecodingsettings.h,
	  libkexiv2/libkexiv2.kdevelop:
	  libkdcraw from trunk : backport last dcraw implementation "8.60"
	  : the old noise reduction algorithm used with 8.54 version have
	  been remplaced by a wavelet algorithm witch is more intuitive,
	  more easy to use (just one threshold setting) and very powerfull.
	  
	  Kipi-plugins RAWConverter from svn trunk is fixed.
	  The patch to use libkdcraw with current implementation of digiKam
	  have been updated :
	  
	  http://digikam3rdparty.free.fr/misc.tarballs/libkdcrawdigikamport.patch
	  
	  CCMAIL: digikam-users@kde.org
	  CCMAIL: digikam-devel@kde.org
	  CCMAIL: kde-imaging@kde.org

2007-02-22 09:19  cgilles

	* [r636182] libkdcraw/libkdcraw.kdevelop:
	  update project

2007-02-20 20:25  ach

	* [r635753] libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawsettingswidget.cpp, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h:
	  EBN: QString::null -> QString() and some spelling fixes

2007-02-20 19:59  ach

	* [r635744] libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawsettingswidget.cpp:
	  EBN: isn't -> is not etc

2007-02-20 19:12  ach

	* [r635732] libkdcraw/README:
	  polish README

2007-02-20 19:03  ach

	* [r635729] libkdcraw/libkdcraw.pc.in:
	  libkdcraw: add homepage URL to pkg-config file

2007-02-20 19:01  ach

	* [r635727] libkdcraw/libkdcraw.lsm, libkdcraw/libkdcraw.pc.in,
	  libkdcraw/version.h:
	  fix version 0.1.0 -> 0.1.0-beta1+svn

2007-02-20 18:58  ach

	* [r635726] libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
	  libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawdecodingsettings.h, libkdcraw/rawfiles.h,
	  libkdcraw/version.h:
	  libkdcraw:
	  o add email to copyright lines
	  o remove unnecessary line wrap in license

2007-02-20 18:53  ach

	* [r635721] libkdcraw/dcraw/kdcraw.1:
	  libkdcraw: s/dcraw/kdcraw in manpage and add
	  e-mail to copyright line

2007-02-20 14:20  cgilles

	* [r635648] kipi-plugins/rawconverter/batchdialog.cpp,
	  kipi-plugins/rawconverter/singledialog.cpp,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/rawdecodingsettings.h:
	  libkdcraw from trunk : introduce the color balance multipliers
	  settings

2007-02-20 12:28  cgilles

	* [r635609] libkdcraw/dcrawsettingswidget.cpp:
	  polish

2007-02-20 10:28  cgilles

	* [r635565] libkdcraw/dcrawsettingswidget.cpp:
	  fix layout

2007-02-19 22:30  cgilles

	* [r635409] libkdcraw/dcrawsettingswidget.cpp:
	  fix layout

2007-02-19 22:28  cgilles

	* [r635408] libkdcraw/dcrawsettingswidget.cpp:
	  fix layout

2007-02-19 22:15  cgilles

	* [r635400] libkdcraw/dcrawsettingswidget.cpp:
	  fix layout

2007-02-19 21:52  cgilles

	* [r635352] libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/libkdcraw.kdevelop:
	  use KtabWidget to separate Standard and Advanced settings

2007-02-19 15:20  cgilles

	* [r635245] libkdcraw/dcrawsettingswidget.cpp:
	  fix i18n

2007-02-19 15:05  cgilles

	* [r635242] kipi-plugins/rawconverter/batchdialog.cpp,
	  kipi-plugins/rawconverter/singledialog.cpp,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/rawdecodingsettings.h:
	  libkdcraw from trunk : introduce the blackpoint compensation
	  value settings

2007-02-19 11:56  cgilles

	* [r635195] kipi-plugins/rawconverter/batchdialog.cpp,
	  kipi-plugins/rawconverter/singledialog.cpp,
	  libkdcraw/dcraw/README, libkdcraw/dcraw/dcraw.c,
	  libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
	  libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/rawdecodingsettings.h:
	  After 8 days of intensive work, I'm very proud to announce the
	  first LibKdcraw shared library 0.1.0 beta release.
	  
	  LibKdcraw is a C++ interface around dcraw binary program used to
	  decode RAW picture files. This library is actually used by
	  kipi-plugins (trunk), and later by digiKam (with future 0.9.2
	  release).
	  
	  http://digikam3rdparty.free.fr/Screenshots/newkipirawconverter.png
	  
	  The library documentation is available on header files. Check svn
	  trunk repository for details :
	  
	  http://websvn.kde.org/trunk/extragear/libs/libkdcraw
	  
	  Libkdcraw include the last dcraw program (version 8.54) from Dave
	  Coffin. It provide a kdcraw binary witch is used instead dcraw.
	  This way prevent _all_ compatibility problems with all options
	  see with dcraw. In fact the dcraw author to not respect a
	  compatibilty between dcraw release witch break all RAW workflow !
	  Also, he won't provide dcraw as a shared library. We have lost a
	  waste a time with these problems in digiKam project. Using a
	  specific version of dcraw in the library, we will valid this one
	  with the library API and preserve the compatibility for the
	  future.
	  
	  The dcraw source code can be updated easily using the
	  libkdcraw/dcraw/README file where i have written a notice for
	  that. The library don't touch the content of dcraw source code.
	  It use it as well...
	  
	  With this library, you can extract preview image (used by camera
	  to display picture on TV screen) as a QImage, and extract all
	  informations given by dcraw to identify a RAW file. Of course,
	  you can decode and extract the RAW pictures with a lot of
	  settings. The image data (8 or 16 bits color depth) is returned
	  in a QByteArray container. The library include a widget to
	  control all RAW decoding settings in your application :
	  
	  http://digikam3rdparty.free.fr/Screenshots/rawsettings.png
	  
	  Using the last dcraw source code, the libary support all last
	  Camera models, especially all models out at Christmas 2006. The
	  complete list is given below :
	  
	  Adobe Digital Negative (DNG)
	  AVT F-145C
	  AVT F-201C
	  AVT F-510C
	  AVT F-810C
	  Canon PowerShot 600
	  Canon PowerShot A5
	  Canon PowerShot A5 Zoom
	  Canon PowerShot A50
	  Canon PowerShot A610
	  Canon PowerShot A620
	  Canon PowerShot Pro70
	  Canon PowerShot Pro90 IS
	  Canon PowerShot G1
	  Canon PowerShot G2
	  Canon PowerShot G3
	  Canon PowerShot G5
	  Canon PowerShot G6
	  Canon PowerShot S2 IS
	  Canon PowerShot S3 IS
	  Canon PowerShot S30
	  Canon PowerShot S40
	  Canon PowerShot S45
	  Canon PowerShot S50
	  Canon PowerShot S60
	  Canon PowerShot S70
	  Canon PowerShot Pro1
	  Canon EOS D30
	  Canon EOS D60
	  Canon EOS 5D
	  Canon EOS 10D
	  Canon EOS 20D
	  Canon EOS 30D
	  Canon EOS 300D / Digital Rebel / Kiss Digital
	  Canon EOS 350D / Digital Rebel XT / Kiss Digital N
	  Canon EOS 400D / Digital Rebel XTi / Kiss Digital X
	  Canon EOS D2000C
	  Canon EOS-1D
	  Canon EOS-1DS
	  Canon EOS-1D Mark II
	  Canon EOS-1D Mark II N
	  Canon EOS-1Ds Mark II
	  Casio QV-2000UX
	  Casio QV-3000EX
	  Casio QV-3500EX
	  Casio QV-4000
	  Casio QV-5700
	  Casio QV-R51
	  Casio QV-R61
	  Casio EX-S100
	  Casio EX-Z4
	  Casio EX-Z50
	  Casio EX-Z55
	  Casio Exlim Pro 505
	  Casio Exlim Pro 600
	  Casio Exlim Pro 700
	  Contax N Digital
	  Creative PC-CAM 600
	  Epson R-D1
	  Foculus 531C
	  Fuji FinePix E550
	  Fuji FinePix E900
	  Fuji FinePix F700
	  Fuji FinePix F710
	  Fuji FinePix F800
	  Fuji FinePix F810
	  Fuji FinePix S2Pro
	  Fuji FinePix S3Pro
	  Fuji FinePix S20Pro
	  Fuji FinePix S5000
	  Fuji FinePix S5100/S5500
	  Fuji FinePix S5200/S5600
	  Fuji FinePix S6000fd
	  Fuji FinePix S7000
	  Fuji FinePix S9000/S9500
	  Imacon Ixpress 16-megapixel
	  Imacon Ixpress 22-megapixel
	  Imacon Ixpress 39-megapixel
	  ISG 2020x1520
	  Kodak DC20 (see Oliver Hartman's page)
	  Kodak DC25 (see Jun-ichiro Itoh's page)
	  Kodak DC40
	  Kodak DC50
	  Kodak DC120 (also try kdc2tiff)
	  Kodak DCS200
	  Kodak DCS315C
	  Kodak DCS330C
	  Kodak DCS420
	  Kodak DCS460
	  Kodak DCS460A
	  Kodak DCS520C
	  Kodak DCS560C
	  Kodak DCS620C
	  Kodak DCS620X
	  Kodak DCS660C
	  Kodak DCS660M
	  Kodak DCS720X
	  Kodak DCS760C
	  Kodak DCS760M
	  Kodak EOSDCS1
	  Kodak EOSDCS3B
	  Kodak NC2000F
	  Kodak ProBack
	  Kodak PB645C
	  Kodak PB645H
	  Kodak PB645M
	  Kodak DCS Pro 14n
	  Kodak DCS Pro 14nx
	  Kodak DCS Pro SLR/c
	  Kodak DCS Pro SLR/n
	  Kodak P850
	  Kodak P880
	  Kodak KAI-0340
	  Konica KD-400Z
	  Konica KD-510Z
	  Leaf Aptus 17
	  Leaf Aptus 22
	  Leaf Aptus 65
	  Leaf Aptus 75
	  Leaf Cantare
	  Leaf CatchLight
	  Leaf CMost
	  Leaf DCB2
	  Leaf Valeo 6
	  Leaf Valeo 11
	  Leaf Valeo 17
	  Leaf Valeo 22
	  Leaf Volare
	  Leica Digilux 2
	  Leica Digilux 3
	  Leica D-LUX2
	  Leica D-LUX3
	  Leica V-LUX1
	  Logitech Fotoman Pixtura
	  Micron 2010
	  Minolta RD175
	  Minolta DiMAGE 5
	  Minolta DiMAGE 7
	  Minolta DiMAGE 7i
	  Minolta DiMAGE 7Hi
	  Minolta DiMAGE A1
	  Minolta DiMAGE A2
	  Minolta DiMAGE A200
	  Minolta DiMAGE G400
	  Minolta DiMAGE G500
	  Minolta DiMAGE G530
	  Minolta DiMAGE G600
	  Minolta DiMAGE Z2
	  Minolta Alpha/Dynax/Maxxum 5D
	  Minolta Alpha/Dynax/Maxxum 7D
	  Nikon D1
	  Nikon D1H
	  Nikon D1X
	  Nikon D2H
	  Nikon D2Hs
	  Nikon D2X
	  Nikon D40
	  Nikon D50
	  Nikon D70
	  Nikon D70s
	  Nikon D80
	  Nikon D100
	  Nikon D200
	  Nikon E700 ("DIAG RAW" hack)
	  Nikon E800 ("DIAG RAW" hack)
	  Nikon E880 ("DIAG RAW" hack)
	  Nikon E900 ("DIAG RAW" hack)
	  Nikon E950 ("DIAG RAW" hack)
	  Nikon E990 ("DIAG RAW" hack)
	  Nikon E995 ("DIAG RAW" hack)
	  Nikon E2100 ("DIAG RAW" hack)
	  Nikon E2500 ("DIAG RAW" hack)
	  Nikon E3200 ("DIAG RAW" hack)
	  Nikon E3700 ("DIAG RAW" hack)
	  Nikon E4300 ("DIAG RAW" hack)
	  Nikon E4500 ("DIAG RAW" hack)
	  Nikon E5000
	  Nikon E5400
	  Nikon E5700
	  Nikon E8400
	  Nikon E8700
	  Nikon E8800
	  Olympus C3030Z
	  Olympus C5050Z
	  Olympus C5060WZ
	  Olympus C7070WZ
	  Olympus C70Z,C7000Z
	  Olympus C740UZ
	  Olympus C770UZ
	  Olympus C8080WZ
	  Olympus E-1
	  Olympus E-10
	  Olympus E-20
	  Olympus E-300
	  Olympus E-330
	  Olympus E-400
	  Olympus E-500
	  Olympus SP310
	  Olympus SP320
	  Olympus SP350
	  Olympus SP500UZ
	  Panasonic DMC-FZ30
	  Panasonic DMC-FZ50
	  Panasonic DMC-L1
	  Panasonic DMC-LC1
	  Panasonic DMC-LX1
	  Panasonic DMC-LX2
	  Pentax *ist D
	  Pentax *ist DL
	  Pentax *ist DL2
	  Pentax *ist DS
	  Pentax *ist DS2
	  Pentax K10D
	  Pentax K100D
	  Pentax Optio S
	  Pentax Optio S4
	  Pentax Optio 33WR
	  Phase One LightPhase
	  Phase One H 10
	  Phase One H 20
	  Phase One H 25
	  Phase One P 20
	  Phase One P 25
	  Phase One P 30
	  Phase One P 45
	  Pixelink A782
	  Polaroid x530
	  Rollei d530flex
	  RoverShot 3320af
	  Samsung GX-1S
	  Sarnoff 4096x5440
	  Sigma SD9
	  Sigma SD10
	  Sinar 3072x2048
	  Sinar 4080x4080
	  Sinar 4080x5440
	  Sinar STI format
	  SMaL Ultra-Pocket 3
	  SMaL Ultra-Pocket 4
	  SMaL Ultra-Pocket 5
	  Sony DSC-F828
	  Sony DSC-R1
	  Sony DSC-V3
	  Sony DSLR-A100
	  Sony XCD-SX910CR
	  STV680 VGA
	  
	  About digiKam and this library, I have a big patch on my computer
	  to use this library with all RAW files. I will commit this code
	  in svn repository later digiKam 0.9.1 release. It will be
	  available for 0.9.2 release. If you is impatient to test it, the
	  patch against current svn implementation of digiKam can be
	  downloaded at this url :
	  
	  http://digikam3rdparty.free.fr/misc.tarballs/libkdcrawdigikamport.patch
	  
	  Of course, you need to checkout, compile and install LibKdcraw
	  first. It is stored on extragear/libs folder of svn trunk.
	  
	  All feedbacks are welcome, especially all RAW pictures sample
	  taken with a recent camera to perform advanced test. Thanks in
	  advance for your help...
	  
	  Gilles Caulier
	  digiKam team
	  
	  BUG: 140865
	  CCBUG : 138744
	  CCMAIL: digikam-users@kde.org, digikam-devel@kde.org,
	  kde-imaging@kde.org

2007-02-19 09:05  cgilles

	* [r635146] libkdcraw/dcrawbinary.cpp:
	  fix test if version is right

2007-02-19 09:03  cgilles

	* [r635144] libkdcraw/dcrawbinary.cpp:
	  fix test if version is right

2007-02-19 08:56  cgilles

	* [r635141] libkdcraw/kdcraw.cpp:
	  be verboze during RAW decoding

2007-02-19 08:32  cgilles

	* [r635135] libkdcraw/dcraw/Makefile.am, libkdcraw/dcraw/kdcraw.1:
	  added official dcraw manual page

2007-02-19 07:34  cgilles

	* [r635123] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  API doc + polishing

2007-02-19 06:53  cgilles

	* [r635114] libkdcraw/README:
	  update depencies

2007-02-19 06:48  cgilles

	* [r635113] libkdcraw/Makefile.am, libkdcraw/icons,
	  libkdcraw/icons/Makefile.am,
	  libkdcraw/icons/hi128-app-kdcraw.png,
	  libkdcraw/icons/hi32-app-kdcraw.png,
	  libkdcraw/icons/hi48-app-kdcraw.png,
	  libkdcraw/icons/hi64-app-kdcraw.png:
	  kdcraw icons

2007-02-18 20:05  cgilles

	* [r634923] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  API doc

2007-02-18 18:16  cgilles

	* [r634885] libkdcraw/kdcraw.cpp:
	  libkdcraw : loading progress value will be continue now. We will
	  folowing the last progress value used by pseudo progress during
	  internal dcraw decoding loop and when you recieve data from
	  dcraw, we continue progress at this point.
	  
	  LibKDcraw shared library is now finalized. digiKam patch to used
	  it is ready for next 0.9.2 release.
	  
	  CCMAIL: marcel.wiesweg@gmx.de

2007-02-18 16:27  cgilles

	* [r634858] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  give raw decoding settings protected

2007-02-18 14:55  cgilles

	* [r634842] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  polish implementation

2007-02-18 12:15  cgilles

	* [r634814] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  add new method to handle progress info in digiKam during RAW file
	  decoding

2007-02-18 11:46  cgilles

	* [r634799] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  update to compile with digiKam

2007-02-18 11:40  cgilles

	* [r634795] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  added new virtual method to cancel RAW decoding with digiKam

2007-02-17 20:53  cgilles

	* [r634615] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  update to compile with digiKam

2007-02-17 17:21  cgilles

	* [r634581] libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h:
	  update to compile with digiKam

2007-02-17 16:40  cgilles

	* [r634572] libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h:
	  update to compile with digiKam

2007-02-17 14:53  cgilles

	* [r634545] libkdcraw/Makefile.am:
	  compile

2007-02-17 14:47  cgilles

	* [r634544] libkdcraw/dcrawinfocontainer.h:
	  compile

2007-02-16 22:01  cgilles

	* [r634334] kipi-plugins/rawconverter/actionthread.cpp,
	  kipi-plugins/rawconverter/rawdecodingiface.cpp,
	  libkdcraw/kdcraw.cpp, libkexiv2/kexiv2.cpp:
	  fix comments

2007-02-16 19:23  cgilles

	* [r634278] libkdcraw/rawdecodingsettings.h:
	  API doc + optimized time loading settings backported from digiKam
	  core

2007-02-16 15:44  cgilles

	* [r634185] libkdcraw/libkdcraw.lsm:
	  fix email

2007-02-16 15:41  cgilles

	* [r634183] libkdcraw/AUTHORS, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h, libkdcraw/kdcraw.cpp,
	  libkdcraw/kdcraw.h, libkdcraw/rawdecodingsettings.h,
	  libkdcraw/rawfiles.h:
	  fix email

2007-02-16 13:38  cgilles

	* [r634150] libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h:
	  add link to dcraw web page

2007-02-16 12:54  cgilles

	* [r634137] libkdcraw/Makefile.am:
	  forget i18n rules

2007-02-16 12:52  cgilles

	* [r634136] libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/dcrawsettingswidget.h:
	  use LIBKDCRAW_EXPORT

2007-02-16 12:48  cgilles

	* [r634134] libkdcraw/kdcraw.h:
	  polish

2007-02-16 10:30  cgilles

	* [r634091] libkdcraw/Makefile.am,
	  libkdcraw/dcrawsettingswidget.cpp,
	  libkdcraw/dcrawsettingswidget.h:
	  libkdcraw from trunk : continue implementation. Still under
	  developement. Not yet suitable.

2007-02-16 09:56  cgilles

	* [r634082] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  update API

2007-02-16 09:39  cgilles

	* [r634076] libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  update API

2007-02-16 09:07  cgilles

	* [r634066] libkdcraw/Makefile.am, libkdcraw/dcrawiface.cpp,
	  libkdcraw/dcrawiface.h, libkdcraw/kdcraw.cpp, libkdcraw/kdcraw.h:
	  polish

2007-02-16 08:50  cgilles

	* [r634064] libkdcraw/dcrawbinary.cpp, libkdcraw/dcrawbinary.h,
	  libkdcraw/libkdcraw.kdevelop:
	  API doc

2007-02-16 08:37  cgilles

	* [r634063] libkdcraw/dcrawbinary.h:
	  polish

2007-02-16 08:05  cgilles

	* [r634059] libkdcraw/dcrawiface.cpp:
	  polish

2007-02-16 07:57  cgilles

	* [r634058] libkdcraw/dcrawiface.cpp,
	  libkdcraw/rawdecodingsettings.h:
	  fix API

2007-02-16 07:55  cgilles

	* [r634057] libkdcraw/dcrawiface.cpp, libkdcraw/dcrawiface.h:
	  fix API

2007-02-15 17:56  cgilles

	* [r633901] libkdcraw/libkdcraw.kdevelop:
	  kdevelop project

2007-02-15 15:14  cgilles

	* [r633865] libkdcraw/dcrawiface.h:
	  polish

2007-02-15 15:08  cgilles

	* [r633863] libkdcraw/dcrawiface.cpp, libkdcraw/dcrawiface.h:
	  libkdcraw from trunk : continue implementation. Still under
	  developement. Not yet suitable.

2007-02-15 14:43  cgilles

	* [r633856] libkdcraw/Makefile.am, libkdcraw/dcrawiface.cpp,
	  libkdcraw/dcrawiface.h, libkdcraw/dcrawinfocontainer.h,
	  libkdcraw/rawdecodingsettings.h:
	  libkdcraw from trunk : continue implementation. Still under
	  developement. Not yet suitable.

2007-02-15 13:17  cgilles

	* [r633837] libkdcraw/rawfiles.h:
	  typo

2007-02-15 13:16  cgilles

	* [r633836] libkdcraw/Makefile.am, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/dcrawiface.cpp,
	  libkdcraw/dcrawiface.h, libkdcraw/rawdecodingsettings.h:
	  libkdcraw from trunk : continue implementation. Still under
	  developement. Not yet suitable.

2007-02-12 15:24  cgilles

	* [r632867] libkdcraw, libkdcraw/AUTHORS, libkdcraw/COPYING,
	  libkdcraw/ChangeLog, libkdcraw/INSTALL, libkdcraw/Makefile.am,
	  libkdcraw/NEWS, libkdcraw/README, libkdcraw/configure.in.bot,
	  libkdcraw/configure.in.in, libkdcraw/dcraw,
	  libkdcraw/dcraw/Makefile.am, libkdcraw/dcraw/README,
	  libkdcraw/dcraw/dcraw.c, libkdcraw/dcrawbinary.cpp,
	  libkdcraw/dcrawbinary.h, libkdcraw/libkdcraw.lsm,
	  libkdcraw/libkdcraw.pc.in, libkdcraw/libkdcraw_export.h,
	  libkdcraw/rawfiles.h, libkdcraw/version.h:
	  kipi-plugins from trunk : starting new shared library "libkdcraw"
	  based on digiKam core and RAW converter implementations.
	  
	  This library will provide a C++ interface to dcraw command line
	  program to decode RAW pictures. It will be used by digiKam and
	  kipi-plugins. A common implementation is require to prevent
	  duplicate source code.
	  
	  The library is not yet complete. I'm working on actually.
	  Compilation is disable by default. Future digiKam 0.9.2 release
	  will use it.
	  
	  CCMAIL: marcel.wiesweg@gmx.de, kde-imaging@kde.org,
	  digikam-devel@kde.org