summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: d51e8f76227f215d4e4292ddf513abd5c7fb1d16 (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
2009-09-26  Robby Stephenson  <robby@periapsis.org>

	* Updated Amazon fetcher to use authentication.
	* Released Tellico 1.3.6

2009-02-14  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.5.

2009-02-04  Robby Stephenson  <robby@periapsis.org>

	* Reverted change from 2007 that merged entries by combining all values in multiple-value fields.

2009-02-02  Robby Stephenson  <robby@periapsis.org>

	* Fixed the CueCat decoder to work for ISBN searches, as well as UPC.

2009-01-30  Robby Stephenson  <robby@periapsis.org>

	* Updated Deliciour Library 1 importer to handle movies and games.
	* Fixed Ubuntu bug#317822, don't mark collection modified when image is found in local data directory.
	* Fixed query bug with z39.50 ISBN search.

2008-12-07  Robby Stephenson  <robby@periapsis.org>

	* Updated it.po, thanks to Valerio Ricci.

2008-10-23  Robby Stephenson  <robby@periapsis.org>

	* Added date, time, and username as available params for the XSLT export.

2008-09-13  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.4.

2008-09-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed error with consecutive tabs in CSV import.

2008-08-26  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with image links in reports not being linked correctly.

2008-08-20  Robby Stephenson  <robby@periapsis.org>

	* Added minimal searching for board games from Amazon.

2008-08-07  Robby Stephenson  <robby@periapsis.org>

	* Changed Choice fields to sort by position in list.

2008-07-25  Robby Stephenson  <robby@periapsis.org>

	* Added ESC key for clearing quick filter.
	* Improved drag/drop to match on file extension after checking mimetype.

2008-07-22  Robby Stephenson  <robby@periapsis.org>

	* Updated IMDb plot regexp.

2008-07-09  Robby Stephenson  <robby@periapsis.org>

	* Fixed EntryView to honor copy() command properly, for clipboard.
	* Released Tellico 1.3.3.

2008-06-24  Robby Stephenson  <robby@periapsis.org>

	* Updated Porbase URL in z39.50 server list.

2008-06-13  Robby Stephenson  <robby@periapsis.org>

	* Updated drag-and-drop to allow HTTP urls.

2008-06-12  Robby Stephenson  <robby@periapsis.org>

	* Changed Arxiv fetcher to remove ID version number for results.

2008-06-07  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with merging file catalogs, to properly match on URL.

2008-05-24  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.2.1.
	* Fixed en_GB translation to remove context strings.

2008-05-23  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.2.
	* Include Canadian LCC values, patch from Peter Stevenson.

2008-05-19  Robby Stephenson  <robby@periapsis.org>

	* Updated entry creation to always add default values. Fixes Debian bug 481639.

2008-04-29  Robby Stephenson  <robby@periapsis.org>

	* Improved IMDb search results.

2008-04-15  Robby Stephenson  <robby@periapsis.org>

	* When adding a book to a bibliography, set the type to 'book'.

2008-04-11  Robby Stephenson  <robby@periapsis.org>

	* Updated LCCN search to validate format.
	* Updated entry match to compare validated LCCN.
	* Updated z39.50 search to allow multiple LCCN values.

2008-04-09  Robby Stephenson  <robby@periapsis.org>

	* Changed loader to eliminate possible duplicates for fields allowing multiple values (like keywords).
	* Updated PubMed search to add all keywords.
	* Fixed PubMed search to use utf8 encoding.

2008-04-08  Robby Stephenson  <robby@periapsis.org>

	* Changed XML loader to strip whitespace from non-paragraph values.

2008-04-06  Robby Stephenson  <robby@periapsis.org>

	* Added languages and editors to Amazon book import.

2008-03-15  Robby Stephenson  <robby@periapsis.org>

	* Updated mods2tellico.xsl to try to capture more of mods info converted from refbase.

2008-03-13  Robby Stephenson  <robby@periapsis.org>

	* Updated mods2tellico.xsl to try to capture more of bibtex info converted from wikindx.

2008-03-10  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.1.
	* Added Discogs.com fetcher.

2008-03-06  Robby Stephenson  <robby@periapsis.org>

	* Added Google Scholar search.

2008-03-05  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that prevented using bibtex format for external scripts.

2008-03-03  Robby Stephenson  <robby@periapsis.org>

	* Changed "ISBN not found" dialog to only appear if multiple ISBN values are being searched.

2008-03-01  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with SRU format not getting remembered in config dialog.
	* Fixed bug with entries with multiple titles not getting linked in the HTML export.

2008-02-29  Robby Stephenson  <robby@periapsis.org>

	* Added LCCN lookup to z39.50 source.
	* Added LCCN lookup to SRU source.
	* Updated CrossRef fetcher to use new unixref format with more data.

2008-02-26  Robby Stephenson  <robby@periapsis.org>

	* Added DOI search to Entrez/Pubmed interface.
	* Fixed bug with some free-form date fields not getting formatted correctly, resulting in a blank string in column view and reports.

2008-02-12  Robby Stephenson  <robby@periapsis.org>

	* Improved loader to delay loading linked images as long as possible.

2008-02-11  Robby Stephenson  <robby@periapsis.org>

	* Fixed Bibtex import for keywords field.

2008-02-07  Robby Stephenson  <robby@periapsis.org>

	* Updated Delicious Library importer to look for cover images.
	* Updated BoardGameGeek script to grab cover image, patch from  
Sven Werlen.

2008-01-29  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3.
	* Fixed bug with stepping through selected entries after editing one.

2008-01-20  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with matching ISBN values for updating entries.

2008-01-11  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.3pre1.

2008-01-09  Robby Stephenson  <robby@periapsis.org>

	* Updated Spanish Ministry of Culture script.

2008-01-05  Robby Stephenson  <robby@periapsis.org>

	* Updated IMDB search to fix director and TV cast.

2007-12-11  Robby Stephenson  <robby@periapsis.org>

	* Added DCOP calls to set the view filter and to show entries.
	* Improved filter to allow specifying field name with '='.

2007-12-10  Robby Stephenson  <robby@periapsis.org>

	* Added importer for Delicious Library files.

2007-12-06  Robby Stephenson  <robby@periapsis.org>

	* Updated Dependant field parsing to allow %{id} to grab entry id.
	* Added context menu option in icon view to change sorting.
	* Extended the DCOP interface to allow adding and removing entries, reading field values, and setting field values.

2007-11-30  Robby Stephenson  <robby@periapsis.org>

	* Added capability to save a link to an image only, instead of saving it to the users image directory. Setting an image field property link=true will make that the default.

2007-11-26  Robby Stephenson  <robby@periapsis.org>

	* Updated to allow a "required" property to be included to indicate that a on-empty value should always be present when saving.
	* Updated to use libcsv from Robert Gamble, allowing newlines

2007-11-25  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with creating filter from group item.
	* Added Ukrainian translation from Serhij Dubyk Сергій Дубик.

2007-11-15  Robby Stephenson  <robby@periapsis.org>

	* Added a sharedmimeinfo file.

2007-11-13  Robby Stephenson  <robby@periapsis.org>

	* Added Bibsonomy fetcher.
	* Added citebase.org fetcher.

2007-11-06  Robby Stephenson  <robby@periapsis.org>

	* Added option for importing bibtex in Unicode (UTF-8).
	* Added importing from Referencer.

2007-11-05  Robby Stephenson  <robby@periapsis.org>

	* Added arxiv.org API fetcher.

2007-11-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed bugs related to compilation with gcc 4.3.

2007-10-27  Robby Stephenson  <robby@periapsis.org>

	* Added option for saving images in local relative directory to data file.

2007-10-26  Robby Stephenson  <robby@periapsis.org>

	* Added menu command for merging entries, based on patch from Cyril Dangerville.

2007-10-24  Robby Stephenson  <robby@periapsis.org>

	* Added CrossRef search for DOI.

2007-10-21  Robby Stephenson  <robby@periapsis.org>

	* Fixed list view sorting to take into account automatic formatting.
	* Fixed date sorting to put empty dates first.

2007-10-19  Robby Stephenson  <robby@periapsis.org>

	* Fixed sorting bug for images.
	* Fixed sorting bug for empty dates in HTML export, patch from Jake Maciejewski.

2007-10-15  Robby Stephenson  <robby@periapsis.org>

	* Fixed crashing bug in bibtex importer.

2007-10-14  Robby Stephenson  <robby@periapsis.org>

	* Added PDF importer, using exempi XMP library.
	* Added drag & drop support for PDF importer.

2007-10-13  Robby Stephenson  <robby@periapsis.org>

	* Added DOI and URL to default bibtex collection fields.

2007-09-23  Robby Stephenson  <robby@periapsis.org>

	* Added data source for using GCstar plugins.
	* Fixed bug with escaping the image id for file names.

2007-09-22  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.14.

2007-09-20  Robby Stephenson  <robby@periapsis.org>

	* Added importer for Griffith database.

2007-09-10  Robby Stephenson  <robby@periapsis.org>

	* Updated Spanish Ministry of Culture script to search out of prints book and add notes field.
	* Updated tellico2html.js file for searching in HTML export.
	* Updated GCstar import to parse new XML format in GCstar version 1.2.

2007-08-27  Robby Stephenson  <robby@periapsis.org>

	* Updated allocine.fr source script to version 0.4, thanks to Mathias Monnerville.
	* Updated the Amazon.com search to allow searching for comic books.
	* Updated the isbndb.com search to allow searching for comic books.
	* Fixed ISBNdb search.

2007-08-25  Robby Stephenson  <robby@periapsis.org>

	* Changed default SRU port from 7090 to 80.

2007-08-23  Robby Stephenson  <robby@periapsis.org>

	* Update CSS in HTML export.

2007-08-10  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with yaz_iconv not flushing complete string for z39.50 search.

2007-08-09  Robby Stephenson  <robby@periapsis.org>

	* Added MARCXML to possible SRU format.
	* Fixed bug with MARC stylesheets to work with better with embedded records.

2007-08-03  Robby Stephenson  <robby@periapsis.org>

	* Updated entry updating to work with all collection types.

2007-07-28  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.13.

2007-07-24  Robby Stephenson  <robby@periapsis.org>

	* Added spell-check for text and paragraph fields.

2007-07-22  Robby Stephenson  <robby@periapsis.org>

	* Added compatibility with yaz3.

2007-07-19  Robby Stephenson  <robby@periapsis.org>

	* Added importer for GCstar files.
	* Fixed bug with namespace handling in Tellico XML loading.

2007-07-14  Robby Stephenson  <robby@periapsis.org>

	* Added Copac and National Library of Lithuania to z39.50 list.

2007-07-08  Robby Stephenson  <robby@periapsis.org>

	* Fixed crashing bug when adding items to a collection with loans.

2007-07-04  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.12.
	* Changed z39.60 search event loop in an attemp to fix some intermittent freezes.

2007-06-26  Robby Stephenson  <robby@periapsis.org>

	* Changed Quick Filter to split text on white space and do an AND search.
	* Bumped automake requirement to version 1.8 or later for macro to work.
	* Fixed HTML export to not rewrite file location for files referenced in the XSL file which don't exist.
	* Fixed Column View report to sort numerically when needed.
	* Fixed Date fields to suppress empty date values.
	* Fixed Date comparisons to work for single digits, patch from  
Jake Maciejewski.
	* Fixed Fields Dialog to show warnings when clicking Ok.

2007-06-22  Robby Stephenson  <robby@periapsis.org>

	* Added '\%' to bibtex translation table for comment escaping.

2007-05-30  Robby Stephenson  <robby@periapsis.org>

	* Fixed potential recursion bug for dependent fields.

2007-05-26  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that didn't write image size options when printing.

2007-05-09  Robby Stephenson  <robby@periapsis.org>

	* Added Turkish translation, thanks to Ali Isingor.

2007-05-08  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.11.

2007-05-06  Robby Stephenson  <robby@periapsis.org>

	* Improved file saving performance by caching image info on load.

2007-05-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that lost some images when loading directly from XML.

2007-04-13  Robby Stephenson  <robby@periapsis.org>

	* Fixed sorting for Dependent fields to match on subfields.

2007-04-12  Robby Stephenson  <robby@periapsis.org>

	* Fixed BibteXML export to include author.
	* Fixed book collection conversion to bibliography to set entry type.

2007-04-10  Robby Stephenson  <robby@periapsis.org>

	* Updated IMDb search for director and writer.
	* Fixed CDDB lookup on OpenBSD, patch from Marc Espie.

2007-04-07  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.10.

2007-04-03  Robby Stephenson  <robby@periapsis.org>

	* Improved accuracy and comprehensiveness of merging collections.
	* Changed collection merge to concatenate paragraph fields.
	* Fixed bug that hid some field groups after undoing append collection.

2007-04-01  Robby Stephenson  <robby@periapsis.org>

	* Added Blu-ray and HD DVD to video formats.

2007-03-31  Robby Stephenson  <robby@periapsis.org>

	* Updated ibs.it searching.
	* Fixed searching to replace all HTML entities.
	* Fixed character encoding for Alexandria import.

2007-03-29  Robby Stephenson  <robby@periapsis.org>

	* Updated Amazon API to 2007-02-22.
	* Fixed error handling for ISBN-13 searches.
	* Fixed bug that showed "ISBN Not Found" dialog in error. 

2007-03-27  Robby Stephenson  <robby@periapsis.org>

	* Cleaned-up up ONIX export a bit.
	* Fixed Alexandria export.
	* Fixed importing covers from Alexandria.

2007-03-24  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that caused some amazon results to be hidden when repeating a search.

2007-03-20  Robby Stephenson  <robby@periapsis.org>

	* Fixed hanging bug when stopping a z39.50 search.

2007-03-14  Robby Stephenson  <robby@periapsis.org>

	* Fixed crashing bug when undoing a collection import or replacement.

2007-03-01  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.9.

2007-02-25  Robby Stephenson  <robby@periapsis.org>

	* Relaxed MODS processing to allow any result with typeOfResource="text"
	* Fixed bug with adding space after commas in edit widget.
	* Fixed bug with formatting of dependent fields always being capitalized.

2007-02-20  Robby Stephenson  <robby@periapsis.org>

	* Updated IMDb parsing for alternative titles and certifications.

2007-02-06  Robby Stephenson  <robby@periapsis.org>

	* Fixed sorting for rating groups with rating = 10.

2007-02-03  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.8.

2007-01-22  Robby Stephenson  <robby@periapsis.org>

	* Updated CDDB import to grab extd data as comments, and category as keyword.

2007-01-21  Robby Stephenson  <robby@periapsis.org>

	* Updated audio file importer to take disc number into account for mp3, ogg, and flac files.

2007-01-13  Robby Stephenson  <robby@periapsis.org>

	* Changed IMDB rating to allow float values.
	* Fixed compile error for z3950 connection, patch from Markus Brueffer.

2007-01-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed cleanup for deleting scripts installed from newstuff.

2007-01-03  Robby Stephenson  <robby@periapsis.org>

	* Fixed busy cursor hanging in newstuff download dialog.

2006-12-21  Robby Stephenson  <robby@periapsis.org>

	* Fixed "ISBN Not Found" dialog to have selectable text.

2006-12-19  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with comparing relative URLs for merging file catalogs.

2006-12-17  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with some results in z39.50 search not showing up,
	due to search events getting processed out of order.

2006-12-07  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with secondary and tertiary sorting.

2006-12-06  Robby Stephenson  <robby@periapsis.org>

	* Bumped the Amazon ECS version to 2006-11-30.
	* Updated Amazon search to allow ISBN-13 values.
	* Fixed bug with saving URLs without the protocol.
	* Changed entry comparison for files to match only on URL value.
	* Released Tellico 1.2.7.

2006-12-04  Robby Stephenson  <robby@periapsis.org>

	* Improved performance for copying and deleting multiple entries.

2006-11-30  Robby Stephenson  <robby@periapsis.org>

	* Updated sorting to take title articles into account.

2006-11-29  Robby Stephenson  <robby@periapsis.org>

	* Added ISBN hyphenation rules for German, Czech, and Dutch.
	* Fixed bug that caused image loss when loading from data file.

2006-11-10  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.6.

2006-11-09  Robby Stephenson  <robby@periapsis.org>

	* Improved TV show matching for IMDB.

2006-11-05  Robby Stephenson  <robby@periapsis.org>

	* Fixed crashing bug in ProgressItem, reported by Izaak Branderhorst.

2006-11-03  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.5.

2006-11-01  Robby Stephenson  <robby@periapsis.org>

	* Fixed another bug with over-writing images on entry update.

2006-10-24  Robby Stephenson  <robby@periapsis.org>

	* Updated yahoo audio search webservice url.

2006-10-18  Robby Stephenson  <robby@periapsis.org>

	* Added warning when importing CSV without assigning any fields. 
	* Updated allocine script (v 0.3), from Mathias Monnerville.

2006-10-16  Robby Stephenson  <robby@periapsis.org>

	* Added board game collection, patch from Steve Beattie.
	* Added script for searching boardgamegeek.com, patch from Steve Beattie.

2006-10-15  Robby Stephenson  <robby@periapsis.org>

	* Branched 1.2.x series.
	* Fixed encoding bug with allocine.fr script.

2006-10-14  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.4.

2006-10-12  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with overwriting images when updating entries.

2006-10-11  Robby Stephenson  <robby@periapsis.org>

	* Improved performance on loading and unloading.
	* Changed Nintendo 'Revolution' to 'Wii'.

2006-10-05  Robby Stephenson  <robby@periapsis.org>

	* Fixed off-by-one error in file listing volume name reader.
	* Update allocine fetcher.

2006-09-25  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with fetch dialog showing all sources, instead of just relevant ones.

2006-09-24  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.3.

2006-09-20  Robby Stephenson  <robby@periapsis.org>

	* Added button to search dialog to get additional results.

2006-09-14  Robby Stephenson  <robby@periapsis.org>

	* Updated to work with KDE 3.3.1 or later.

2006-09-09  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with HTML export not including tellico2html.js.

2006-09-07  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that could cause loss of images.
	* Fixed URL output in Image List report.
	* Released Tellico 1.2.2.

2006-09-06  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.1.

2006-09-05  Robby Stephenson  <robby@periapsis.org>

	* Fixed CDDB cache importer to always assume utf-8, as in libkcddb.
	* Changed bibtex exporter to add braces or quotes around url fields.

2006-09-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed infinite loop in file listing importer.
	* Increased default image cache size to 10 meg.
	* Reworked image loading to avoid reloading large images as much as possible.

2006-09-02  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with CDDB not working (always using debug for Pink Floyd!)

2006-09-01  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with completion not working in filter dialog.
	* Fixed bug with template image gradients not getting updated properly.

2006-08-31  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2.

2006-08-30  Robby Stephenson  <robby@periapsis.org>

	* Fixed crashing bug when using right-click in list view.

2006-08-16  Robby Stephenson  <robby@periapsis.org>

	* Added Abstract and Keywords to default fields for bibliographies.

2006-08-15  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2-pre3.

2006-08-09  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2-pre2.

2006-08-07  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with merging fields in CSV importer.

2006-08-06  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.2-pre1.

2006-08-06  Robby Stephenson  <robby@periapsis.org>

	* Added "next" and "prev" buttons to entry editor.

2006-08-04  Robby Stephenson  <robby@periapsis.org>

	* Changed HTML export to use libxml2 instead of TDEHTML for parsing. That should fix the "all text on one line" problem.
	* Bumped minimum libxml2 verstion to 2.6.0 or greater.

2006-07-30  Robby Stephenson  <robby@periapsis.org>

	* Added bundled scripts for allocine.fr, Spanish Minstry of Culture, and Dark Horse Comics, all from Mathias Monnerville.

2005-11-13  Robby Stephenson  <robby@periapsis.org>

	* Bumped minimum KDE version to 3.3.

2006-07-18  Robby Stephenson  <robby@periapsis.org>

	* Added illustrator field to MODS translator.

2006-07-13  Robby Stephenson  <robby@periapsis.org>

	* Changed document saving to remember what format (Zip or XML) was opened, and save the file in the same format.

2006-07-04  Robby Stephenson  <robby@periapsis.org>

	* Updated sorting in HTML export to be locale-aware.
	* Added auto-completion to filter dialog.

2006-06-30  Robby Stephenson  <robby@periapsis.org>

	* Improved ISBN-13 compliance.

2006-06-24  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with relative url links in template.

2006-06-22  Robby Stephenson  <robby@periapsis.org>

	* Fixed memory leak in image handling.

2006-06-16  Robby Stephenson  <robby@periapsis.org>

	* Changed IMDb and Amazon to always use iso-8859-1 encoding for URL.

2006-06-12  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with HTML export and MSIE.

2006-06-11  Robby Stephenson  <robby@periapsis.org>

	* Added date stamp to all report templates.

2006-06-07  Robby Stephenson  <robby@periapsis.org>

	* Fixed IMDb bug that hid partial name matches for duplicate names.
	* Implemented workaround for NetAccess::download() that doesn't show download progress info.

2006-06-03  Robby Stephenson  <robby@periapsis.org>

	* Added validator for unmodified CueCat bar code reader.

2006-05-07  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.1.6.

2006-05-04  Regis Boudin

	* Added French documentation.

2006-05-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that prevented some images from being written to data directory.

2006-04-22  Robby Stephenson  <robby@periapsis.org>

	* Add font and color config to templates.

2006-04-19  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with multiple ISBN search for z29.50.
	* Fixed "disappearing paragraph" bug in Fancy template.
	* Fixed name order for IBS searches.
	* Released Tellico 1.1.5.

2006-04-12  Robby Stephenson  <robby@periapsis.org>

	* Added Xbox 360, Revolution and Playstation3 to game collection.

2006-04-11  Robby Stephenson  <robby@periapsis.org>

	* Added view config saving for custom collections based on URL.
	* Fixed crashing bug when deleting and re-adding fields by same name.
	* Fixed bug with HTML decoding in IMDb plot summary.

2006-04-10  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that re-added default fields when adding search results.

2006-04-07  Robby Stephenson  <robby@periapsis.org>

	* Added OS check (linux only) for enabling cd-text support.

2006-04-06  Robby Stephenson  <robby@periapsis.org>

	* Updated Spanish, thanks to Alejandro Hamann and Quique.
	* Fixed bug with writing temporary files, even when using app data dir.

2006-04-03  Robby Stephenson  <robby@periapsis.org>

	* Improved PubMed fetcher to grab URL links.

2006-04-02  Robby Stephenson  <robby@periapsis.org>

	* Changed grouping list to be sorted alphabetically.
	* Fixed OpenOffice.org plugin build for OOo SDK 2.0.2.
	* Released Tellico 1.1.4.

2006-03-29  Robby Stephenson  <robby@periapsis.org>

	* Added referrer to IBS fetcher so images get downloaded.

2006-03-27  Robby Stephenson  <robby@periapsis.org>

	* Changed XSL templates to output valid HTML 4.01 Strict, patch from Karl Ove Hufthammer.

2006-03-25  Robby Stephenson  <robby@periapsis.org>

	* Added button for installing new templates.

2006-03-24  Robby Stephenson  <robby@periapsis.org>

	* Added context menu item in table widget for clearing table.

2006-03-23  Robby Stephenson  <robby@periapsis.org>

	* Added template preview button in configuration dialog.
	* Added field for relative folder path to file catalog listing.
	* Fixed bug with incorrectly setting document modified when loading images.
	* Fixed bug with loading loans for entries with non-consecutive ids.
	* Fixed bug that prevented XSLT files with spaces or other non-encoded characters from being opened.
	* Fixed bug that caused crashes when changing grouping options
	for some fields.

2006-03-15  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug that prevented files saved with versions < 0.8 from
	being opened.

2006-03-12  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.1.3.

2006-03-10  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with comic book template not showing up in a couple of
	places in the GUI.
	* Updated MARC2MODS3 stylesheet to MODS 3.1 from LoC.
	* Added preset z39.50 server list.

2006-03-09  Robby Stephenson  <robby@periapsis.org>

	* Added isbndb.com fetcher.
	* Fixed z39.50 search to use proper encoding for search terms.

2006-03-07  Robby Stephenson  <robby@periapsis.org>

	* Changed ISO 5426 converter to grab diaeresis instead of umlaut.

2006-03-05  Robby Stephenson  <robby@periapsis.org>

	* Added patch from Karl Ove Hufthammer, for lang-specific sorting.
	* Released Tellico 1.1.2.

2006-03-04  Robby Stephenson  <robby@periapsis.org>

	* Fixed file save permissions to remember group.
	* Fixed backup file permissions.

2006-03-02  Robby Stephenson  <robby@periapsis.org>

	* Fixed mess with shared pointers holding shared pointers holding
	shared pointers...
	* Fixed button size in HTML export.

2006-02-28  Robby Stephenson  <robby@periapsis.org>

	* Updated fr.po, thanks to Mathias Monnerville.
	* Fixed GCfilms importer to read running time correctly.
	* Use IMDb url for updating if available.

2006-02-27  Robby Stephenson  <robby@periapsis.org>

	* Added pt_BR, thanks to Claudio Felix.

2006-02-23  Robby Stephenson  <robby@periapsis.org>

	* Added dialog for importing new data sources.

 2006-02-22  Robby Stephenson  <robby@periapsis.org>

	* Fixed HTML export to always use relative links.
	* Fixed Fancy template column widths, patch from Karl Ove Hufthammer.

2006-02-20  Robby Stephenson  <robby@periapsis.org>

	* Add Ant Movie Catalog file importer.

2006-02-19  Robby Stephenson  <robby@periapsis.org>

	* Allow data sources to overwrite current data when updating.

2006-02-18  Robby Stephenson  <robby@periapsis.org>

	* Added dialog to choose from multiple CDDB lookup responses.
	* Fields can have default values.
	* Changed default IMDB server to akas.imdb.com.

2006-02-18  Robby Stephenson  <robby@periapsis.org>

	* Fixed cleanup when oowriter is closed.
	* Fixed character encoding for IMDB searches.
	* Released Tellico 1.1.1.
	* Branched Tellico 1.1.x.

2006-02-17  Robby Stephenson  <robby@periapsis.org>

	* Fixed image linking in HTML export.
	* Updated admin/ and Makefile.am for recent KDE updates.
	* Changed installation directory of .desktop file to use xdg_appsdir.

2006-02-14  Robby Stephenson  <robby@periapsis.org>

	* Fixed templates to scale images down to max of 150x200.

2006-02-08  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with Video template not showing nationality.
	* Added ISO 5426 and ISO 6937 character set converters, adapted from MARC4J;

2006-02-07  Robby Stephenson  <robby@periapsis.org>

	* Dual-licensed the documentation under the GFDL and the FreeBSD
	Documentation License.
	* Released Tellico 1.1.

2006-02-04  Robby Stephenson  <robby@periapsis.org>

	* Added track length to CDDB lookup result.

2006-02-01  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with not deleting some temporary files.

2006-01-29  Robby Stephenson  <robby@periapsis.org>

	* Updated bibtex-translation.xml, thanks to Norbert Nemec.
	* Updated es.po, thanks to Alejandro Hamann.

2006-01-25  Robby Stephenson  <robby@periapsis.org>

	* Relaxed MODS importer to look for publisher, isbn, or lccn to
	determine the entry is a book. Previously, a typeOfResource="text"
	was required.
	* Allowed z39.50 source to ask for MODS directly.
	* Added message box for stderr output from scripts.
	* Added simple GRS-1 importer for z39.50 fetcher.

2006-01-24  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with potential data los for saving image files after
	changing config option.
	* Released Tellico 1.1pre3.

2006-01-22  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.1pre2.
	* Improved entry views with some graphics, a la amaroK.

2006-01-21  Robby Stephenson  <robby@periapsis.org>

	* Added drag-n-drop from Mozilla Firefox to image widget.
	* Changed default behavior to include images in data file, and
	added a config option.
	* Added a message box warning about performance when the user
	first opens a file with more than 100 images.

2006-01-20  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with parsing arguments to external data source scripts.

2006-01-19  Robby Stephenson  <robby@periapsis.org>

	* AnimneNfo.com source added by default, and IBS.it added if
	Italian is in the user's language list.
	* Alexandria exporter includes publishing year now.

2006-01-17  Robby Stephenson  <robby@periapsis.org>

	* Alexandria importer includes publishing year now.

2006-01-15  Robby Stephenson  <robby@periapsis.org>

	* Changed file saving to be smart about which images need written
	to cache. Should improve save-time.
	* Fixed bug with undo/redo not correctly reverting to old values.

2006-01-14  Robby Stephenson  <robby@periapsis.org>

	* Added Russian translation, from Artur Kalimullin.

2006-01-12  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.1pre1.
	* Added/updated SRU fetcher.

2006-01-11  Robby Stephenson  <robby@periapsis.org>

	* Added Internet Bookshop (ibs.it)  book source.

2006-01-10  Robby Stephenson  <robby@periapsis.org>

	* Added AnimeNfo.com search source.

2006-01-09  Robby Stephenson  <robby@periapsis.org>

	* Fixed Debian bug #346414 in hu.po.

2006-01-08  Robby Stephenson  <robby@periapsis.org>

	* Changed image loader to read and write images inside the Tellico
	shared directory to speed up loading, etc.

2005-12-06  Robby Stephenson  <robby@periapsis.org>

	* Merged OpenOffice.org interop. Requires SDK for compilation.

2006-01-05  Robby Stephenson  <robby@periapsis.org>

	* Added Yahoo! Album Search source.
	* Added Tri-Column video report template.

2005-12-15  Robby Stephenson  <robby@periapsis.org>

	* Expand external app fetcher to include any of the fetch keys.

2005-12-08  Robby Stephenson  <robby@periapsis.org>

	* Increased max table columns to 10.

2005-12-07  Robby Stephenson  <robby@periapsis.org>

	* Updated Amazon fetcher to allow selecting keywords or not.

2005-12-05  Robby Stephenson  <robby@periapsis.org>

	* Changed bibtex behavior to not add braces around capital letters.

2005-11-29  Robby Stephenson  <robby@periapsis.org>

	* Moved no-capitalization list to config dialog.

2005-11-28  Robby Stephenson  <robby@periapsis.org>

	* Updated Hungarian, from Csaba Zakarias.

2005-11-17  Robby Stephenson  <robby@periapsis.org>

	* Added separate UPC searching for Amazon.

2005-11-16  Robby Stephenson  <robby@periapsis.org>

	* Added CD-Text reading to FreeDBImporter, plus option to disable
	compilation in case of platform issues.
	* Move to Amazon ECS version 4.

2005-11-15  Robby Stephenson  <robby@periapsis.org>

	* Added IMDB rating field to fetcher.

2005-11-13  Robby Stephenson  <robby@periapsis.org>

	* Bumped minimum KDE version to 3.2 and minimum QT version to 3.2.

2005-11-10  Robby Stephenson  <robby@periapsis.org>

	* Custom data source fields are now configurable.

2005-11-07  Robby Stephenson  <robby@periapsis.org>

	* Made size of IMDb cast list configurable. 
	* Broke out cite actions into submenu, and added copying bibtex to clipboard.

2005-11-03  Robby Stephenson  <robby@periapsis.org>

	* Bumped XML syntax version to 9 to include file catalog and
	changing default music collection track field to 3 columns.

2005-11-01  Robby Stephenson  <robby@periapsis.org>

	* Fixed compilation on GNU/kFreeBSD, Debian bug #336949, patch
	from Aurelien Jarno.

2005-10-29  Robby Stephenson  <robby@periapsis.org>

	* Improved table fields to show column titles.
	* Changed buttons to a right-click popup.

2005-10-27  Robby Stephenson  <robby@periapsis.org>

	* Improved audio file metadata importer to include track length as
	an additional column in the track field.

2005-10-26  Robby Stephenson  <robby@periapsis.org>

	* The audio file importer now checks for track numbers in the file
	name, patch from Andras Mantia. 

2005-10-19  Robby Stephenson  <robby@periapsis.org>

	* Added a string store to reduce memory consumption.

2005-10-17  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.0.3.

2005-10-15  Robby Stephenson  <robby@periapsis.org>

	* Added buttons for inserting and removing rows from a table.

2005-10-13  Robby Stephenson  <robby@periapsis.org>

	* Enabled auto-updating for certain entries and data sources.

2005-10-12  Robby Stephenson  <robby@periapsis.org>

	* Updated it.po, from Lorenzo Novaro.

2005-10-11  Robby Stephenson  <robby@periapsis.org>

	* New and modified entries now show labels indicating so.

2005-10-08  Robby Stephenson  <robby@periapsis.org>

	* Improved status bar.

2005-10-07  Robby Stephenson  <robby@periapsis.org>

	* Updated CalendarHandler to compile with TDEPIM 3.5.

2005-10-06  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with bibtex macro names always being imported in lowercase.

2005-10-03  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with initialization, patch from Marco Clemencic.

2005-10-02  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.0.2.
	* Updated IMDB fetcher.

2005-09-25  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with auto-detecting MARC encoding for z39.50 import.

2005-09-22  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with CSV importer not properly parsing some non-CSV files.
	* Fixed bug with entry selection in icon view.
	* Added GCfilms exporter;

2005-09-21  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with showing invalid loan due date.
	* Added GCfilms importer.
	* Added IMDB link when fetching info from IMDB.
	* limited number of cast results form IMDB to 20;

2005-09-20  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.0.1.

2005-09-19  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with loading utf-8 encoded bibtex files.

2005-09-18  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with variable icon sizes in config dialog.

2005-09-16  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug for merging field properties, which mostly showed up
	as double-colons in music collection tracks.
	* Fixed crashing bug with modifying filters and cancelling.

2005-09-11  Robby Stephenson  <robby@periapsis.org>

	* Added Norwegian Nynorsk translation from Karl Ove Hufthammer.

2005-09-10  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug in audio file metadata import that was overwriting
	track listings incorrectly.
	* Fixed crashing bug for selecting groups and entries in group view.

2005-09-09  Robby Stephenson  <robby@periapsis.org>

	* Released Tellico 1.0.

2005-09-05  Robby Stephenson  <robby@periapsis.org>

	* Added Polish translaion from Marek Janukowicz.

2005-08-22  Robby Stephenson  <robby@periapsis.org>

	* Fixed bug with external application fetcher not reading path
	entries correctly.
	* Updated Spanish translation, thanks to Brian Hughes.

2005-08-21  Robby Stephenson  <robby@periapsis.org>

	* Updated Swedish, thanks to Peter Landgren.
	* Added patch from Nix to dynamically resize table columns.

2005-08-20  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 1.0pre2.

2005-08-14  Robby Stephenson  <robby@periapsis.org>

	* Changed audio file metadata to ignore case when doing album
	comparisons.
	* Changed collection loader to better compensate for old rating
	fields.
	* Changed AddEntry command to act on multiple entries.

2005-08-11  Robby Stephenson  <robby@periapsis.org>

	* Updated Dutch translation, thanks to Fred Marchee.
	* Updated Fininsh translation, thanks to Teuvo Eloranta.

2005-08-06  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 1.0pre1.

2005-08-04  Robby Stephenson  <robby@periapsis.org>

        * When exporting HTML, copy any relative images, etc.

2005-08-01  Robby Stephenson  <robby@periapsis.org>

        * Strip HTML tags from paragraph export to PilotDB.

2005-07-30  Robby Stephenson  <robby@periapsis.org>

        * Make the amazon importer default to medium images instead of none.

2005-07-28  Robby Stephenson  <robby@periapsis.org>

        * Make the 'Fancy' template default.

2005-07-01  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.8.

2005-06-30  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with CSV import parsing.

2005-06-28  Robby Stephenson  <robby@periapsis.org>

        * Added license exception for linking to OpenSSL.

2005-06-25  Robby Stephenson  <robby@periapsis.org>

        * Added a status message timeout for main window and fetch dialog.

2005-06-23  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug for fields with empty categories.

2005-06-22  Robby Stephenson  <robby@periapsis.org>

        * Added initial Catalan translation from David Majà Martínez.

2005-06-20  Robby Stephenson  <robby@periapsis.org>

        * Added fetcher for reading output from an external application.
        * Fixed bug with wrong icon size for entry action.

2005-06-17  Robby Stephenson  <robby@periapsis.org>

        * Added video game collection type.

2005-06-12  Robby Stephenson  <robby@periapsis.org>

        * Added capability for recursively reading all CDDB cache files,
        based on patch from Marco Hofmann.

2005-06-08  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with file extension defaulting to .bc.

2005-06-02  Robby Stephenson  <robby@periapsis.org>

        * Changed Table field to allow up to 5 columns. Deprecated Table2 type.

2005-06-01  Robby Stephenson  <robby@periapsis.org>

        * Added Rating field type.

2005-05-31  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with grouping by checkbox fields.

2005-05-30  Robby Stephenson  <robby@periapsis.org>

        * Updated Norwegian translation.
        * Added Unimarc support to z39.50 importer.

2005-05-25  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.7.

2005-05-25  Robby Stephenson  <robby@periapsis.org>

        * Changed bibtex exporter to put crossref'd entries at the
        end. Only one level of crossref is allowed.

2005-05-19  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with changing between rating and normal choice field.

2005-05-18  Robby Stephenson  <robby@periapsis.org>

        * Updated Dutch translation, thanks to Fred Marchee.

2005-05-13  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with clearing table fields.
        * Added ONIX export, borrowing format from Alexandria.

2005-05-10  Robby Stephenson  <robby@periapsis.org>

        * Changed contact email to tellico-users mailing list.

2005-04-27  Robby Stephenson  <robby@periapsis.org>

        * Fixed corner case xml element naming for new fields.
        * Fixed typo on allowed and description in fields editor.

2005-04-10  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with having fields named after xml elements, like
        entry or field.

2005-04-09  Robby Stephenson  <robby@periapsis.org>

        * Added a PubMed search source, thanks to an  XSL stylesheet from
        Michaël Zugaro.

2005-04-08  Robby Stephenson  <robby@periapsis.org>

        * Added some accelerators, thanks to patch from Felix Berger.

2005-04-07  Robby Stephenson  <robby@periapsis.org>

        * Added Undo/Redo framework.

2005-04-03  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.6.

2005-03-29  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with adding multiple entries from fetch dialog not
        added additional images.
        * Added Portuguese translation, thanks to Ligia Moreira.

2005-03-23  Robby Stephenson  <robby@periapsis.org>

        * Changed internet search dialog to clear results when running a
        new search.
        * Changed selection so that hidden items are not selected.

2005-03-16  Robby Stephenson  <robby@periapsis.org>

        * Added shortcuts for entry grouping and filter.

2005-03-08  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.5.

2005-03-02  Robby Stephenson  <robby@periapsis.org>

        * Updated German translation, thanks to Gerrit Albrecht.

2005-03-01  Robby Stephenson  <robby@periapsis.org>

        * Fixed crash for some amazon searches.
        * Fixed character encoding for Japanese amazon searches.

2005-02-27  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.4

2005-02-25  Robby Stephenson  <robby@periapsis.org>

        * Added a configure param to disable cddb even if kcddb headers found.

2005-02-24  Robby Stephenson  <robby@periapsis.org>

        * Updated bibtex translation map, fixing some bugs.
        * Fixed bug with Amazon search character encoding.
        * Changed Bibtex handler to convert {MIT} to MIT, importing and exporting.

2005-02-23  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with grouping being enabled for paragraphs.

2005-02-17  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with exporting empty groups in HTML.
        * Added capability for adding loan due notice to KOrganizer calendar.

2005-02-14  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with RIS importer messing up entry types.

2005-02-10  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13.3.

2005-02-08  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug in configure script for disabling amazon, thanks to
        Markus Brueffer.
        * Fixed bug with spin boxes not enabling Apply button in Config Dialog.
        * Fixed bug with audio file metadata import for compilations.

2005-02-05  Robby Stephenson  <robby@periapsis.org>

        * Update some bibtex character translations.
        * Released Tellico 0.13.2.

2005-02-03  Robby Stephenson  <robby@periapsis.org>

        * Updated IMDb fetcher.
        * Updated bibtex import and export to recognize {X} constructions.
        * Fixed bug with locale encoding for HTML export.
        * Changed statusbar to show tooltips for menu items.

2005-02-02  Robby Stephenson  <robby@periapsis.org>

        * Added France and Canada locales to Amazon.com sources.

2005-02-01  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with importing RIS with no final space.
        * Fixed Debian bug #290467 for gcc 4.0 compilation, thanks to Regis Boudin.

2005-01-28  Robby Stephenson  <robby@periapsis.org>

        * Removed find dialog since the filter works so much better.

2005-01-27  Robby Stephenson  <robby@periapsis.org>

        * Removed option for toggling entry count show in group view.
        * Added check-out for lending items with view.

2005-01-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed Debian bug #292165 with bibtex export of umlauts.

2005-01-21  Robby Stephenson  <robby@periapsis.org>

        * Updated Swedish translation, thanks to Peter Landgren.

2005-01-20  Robby Stephenson  <robby@periapsis.org>

        * Added saved filters with view.
        * Changed IMDb cast page to decode HTML entities, thanks to Rafa Kortes.

2005-01-12  Robby Stephenson  <robby@periapsis.org>

        * Changed double click in the Internet Search dialog to add the entry.

2005-01-11  Robby Stephenson  <robby@periapsis.org>

        * Added collection report dialog.

2005-01-06  Robby Stephenson  <robby@periapsis.org>

        * Improved file loading efficiency somewhat.

2005-01-05  Robby Stephenson  <robby@periapsis.org>

        * Changed image loading to be on-demand for local zip files.

2004-12-19  Robby Stephenson  <robby@periapsis.org>

        * Added DCOP interface for exporting files.
        * Added vertical line between columns in list view.
        * Translated xsl entry template names.

2004-12-18  Robby Stephenson  <robby@periapsis.org>

        * Added DCOP interface for importing files.

2004-12-17  Robby Stephenson  <robby@periapsis.org>

        * Branched to 0.13.x.
        * Updated audio file importer to use "(Various)" for multi-artist albums.

2004-12-11  Robby Stephenson  <robby@periapsis.org>

        * Fixed a bug in PilotDB exporting, I think.
        * Added PilotDB export support for Date fields.
        * Released Tellico 0.13.1.

2004-12-10  Robby Stephenson  <robby@periapsis.org>

        * Fixed some date formatting.

2004-12-09  Robby Stephenson  <robby@periapsis.org>

        * Fixed auto bibtex key generation for empty keys.

2004-12-08  Robby Stephenson  <robby@periapsis.org>

        * Fixed Entry View to react to changes in the color palette.

2004-12-06  Robby Stephenson  <robby@periapsis.org>

        * Increased maz z39.50 port to 999999.
        * Fixed some KMAX, KMIN template issues with casts.
        * Added column shading for detailed view, per KDE bug 59791.

2004-12-03  Robby Stephenson  <robby@periapsis.org>

        * Updated Finnish translation, thanks to Tuevo Eloranta.
        * Updated Norwegian translation, thanks to Leif Mathis Gaup.
        * Fixed *BSD compile, with patch from Markus Brüffer.

2004-12-01  Robby Stephenson  <robby@periapsis.org>

        * Enabled relative URLs in URL fields.
        * Disabled running executables in URL fields.
        * Released Tellico 0.13.

2004-11-30  Robby Stephenson  <robby@periapsis.org>

        * Removed all the KStaticDeleter references. Don't get fancy.
        * Updated title sorts to work for articles ending with an
        apostrophe.
        * Updated audio file metadata importer to recognize albums with
        multiple artists and change track list accordingly.
        * Fixed CSV importer to properly find pre-existing, non-default fields.

2004-11-25  Robby Stephenson  <robby@periapsis.org>

        * Added stars for up to a 10 rating.
        * Added checkmark in entry templates for bool fields.

2004-11-20  Robby Stephenson  <robby@periapsis.org>

        * Added Spanish tips translation from ventolera.

2004-11-19  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13pre3.

2004-11-18  Robby Stephenson  <robby@periapsis.org>

        * Added command-line options for loading bibtex, MODS, and RIS files.

2004-11-17  Robby Stephenson  <robby@periapsis.org>

        * Updated Amazon fetcher to work with more than 10 ISBN.
        * Updated z39.50 fetcher to work with more than 10 ISBN.
        * Added language lookup table to mods2tellico.xsl.
        * Updated lyxpipe cite to auto-generate bibtex key if necessary.
        * Added "load ISBN list from file" to search dialog.

2004-11-14  Robby Stephenson  <robby@periapsis.org>

        * Released Tellico 0.13pre2.

2004-11-12  Robby Stephenson  <robby@periapsis.org>

        * Improved printing speed.
        * Added user and password config for z39.50.
        * Added address field to default bibliography.

2004-11-10  Robby Stephenson  <robby@periapsis.org>

        * Updated French translation, thanks to Regis Boudin.
        * Fixed layout bug in config dialog.

2004-11-09  Robby Stephenson  <robby@periapsis.org>

        * Added fix similar to kde bug 86188 for including linux/cdrom.h.
        * Changed latex cite to separate multiple cites with ", " instead
        of "," to better match pybliographer.

2004-11-08  Robby Stephenson  <robby@periapsis.org>

        * Added host config to IMDB.
        * Added image download option to Amazon and IMDB.
        * Updated kde-common/admin/cvs.sh to allow other automake versions.
        * Released Tellico 0.13pre1.

2004-11-07  Robby Stephenson  <robby@periapsis.org>

        * Added character set config to z39.50.
        * Changed main document to tellico.xml.

2004-10-31  Robby Stephenson  <robby@periapsis.org>

        * Updated initial minimum width to 600 pixels.
        * Added group selection entry to collection menu.
        * Updated Find Dialog to remove FromBeginning (didn't make sense)

2004-10-23  Robby Stephenson  <robby@periapsis.org>

        * Updated HTML export and printing stylesheets a bit.

2004-10-18  Robby Stephenson  <robby@periapsis.org>

        * Added patch to compile on g++ 2.95 from Markus Brueffer.

2004-10-11  Robby Stephenson  <robby@periapsis.org>

        * Added patch from wwp to fix saving file on quit.

2004-10-02  Robby Stephenson  <robby@periapsis.org>

        * Added confirm message box when deleting an entry.

2004-09-23  Robby Stephenson  <robby@periapsis.org>

        * Changed default file textension to .tc.

2004-09-15  Robby Stephenson  <robby@periapsis.org>

        * Added Unrated certification to default video collection.

2004-09-14  Robby Stephenson  <robby@periapsis.org>

        * Renamed Bookcase to Tellico
        * Added IMDB fetcher.
        * Incremented DTD version to 7, changed root element to tellico.
        * Changed zip file to use maindoc.xml as do the KOffice files.

2004-09-10  Robby Stephenson  <robby@periapsis.org>

        * Added new icons from Virginie Quesnay.

2004-09-09  Robby Stephenson  <robby@periapsis.org>

        * Updated French translation, thanks to Regis Boudin.
        * Removed libcdda (cdparanoia) dependency, using cd-discid code
        instead.
        * Added rating widget in entry editor, using stars.

2004-09-07  Robby Stephenson  <robby@periapsis.org>

        * Really fixed gcc 2.95 compilation.
        * Added RIS importer.

2004-09-02  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.11.

2004-09-01  Robby Stephenson  <robby@periapsis.org>

        * Added FreeDB importer.

2004-08-27  Robby Stephenson  <robby@periapsis.org>

        * Fixed compile on gcc 2.95.

2004-08-26  Robby Stephenson  <robby@periapsis.org>

        * Added Alexandria importer.
        * Added Alexandria exporter.

2004-08-25  Robby Stephenson  <robby@periapsis.org>

        * Updated Norwegian translation, thanks to Leif Mathis Gaup.
        * Read album covers from .directory files in audio file importer.

2004-08-24  Robby Stephenson  <robby@periapsis.org>

        * Added support for reading audio file meta-data.

2004-08-22  Robby Stephenson  <robby@periapsis.org>

        * Updated paragraph fields to remember line-breaks.
        * Released Bookcase 0.10.

2004-08-20  Robby Stephenson  <robby@periapsis.org>

        * Added HTML formatting to paragraphs in entry templates.
        * Updated German translation, thanks to Gerrit M. Albrecht.

2004-08-18  Robby Stephenson  <robby@periapsis.org>

        * Added Latin1Literal class to speed up string comparisons.
        * Added MODS import menu item.

2004-08-10  Robby Stephenson  <robby@periapsis.org>

        * Added "export selected entries only" option.

2004-08-09  Robby Stephenson  <robby@periapsis.org>

        * Fixed UI file location.
        * Released Bookcase 0.10pre2.

2004-08-08  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.10pre1.
        * Added entry icon to fetch dialog button.

2004-08-03  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug for exporting HTML for entries with multiple titles.
        * Changed HTML export to put entry files in separate directory.
        * Added link to parent collection file for entry templates.

2004-08-01  Robby Stephenson  <robby@periapsis.org>

        * Updated French translation, thanks to Rui Nibau.
        * Changed to show a spinbox for single number values;

2004-07-30  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with capitalization of words split by dash or comma,
        and ending with apostrophes.

2004-07-13  Robby Stephenson  <robby@periapsis.org>

        * Fixed bugs with enabling apply/ok buttons in fields dialog for
        extended properties, and disappearing groups when renaming fields.

2004-07-02  Robby Stephenson  <robby@periapsis.org>

        * Added collection and group view in stack.

2004-06-26  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with copying selected entries.

2004-06-21  Robby Stephenson  <robby@periapsis.org>

        * Fixed gcc 3.4 compilation bug in src/translators/btparse/err.h

2004-06-07  Robby Stephenson  <robby@periapsis.org>

        * Update Norwegian translation, thanks to Leif Mathis Gaup.

2004-05-27  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.9.3.
        * Updated italian translation, thanks to FaUsT.

2004-05-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug for exporting when no fields can be grouped.

2004-05-24  Robby Stephenson  <robby@periapsis.org>

        * Restructured ISBN code to get rid of some old cruft.
        * Added patch from Regis Boudin to add French ISBN formatting and
        remove old copyright restricted ISBN code.

2004-05-22  Robby Stephenson  <robby@periapsis.org>

        * Added entry group templates.

2004-05-19  Robby Stephenson  <robby@periapsis.org>

        * Changed focus to move to next entry when one is deleted.
        * Changed document loader to allow i18n attribute indicate translation.
        * Fixed bug with empty group names.

2004-05-17  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.9.2.

2004-05-15  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with xslt import with libxml < 2.6.
        * Fixed bug with losing extended properties when cloning fields/

2004-05-10  Robby Stephenson  <robby@periapsis.org>

        * Added Amazon fetcher.
        * Added SRU Fetcher.

2004-05-07  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with XSLT importer.
        * Added MODS XSLT importer file.

2004-05-06  Robby Stephenson  <robby@periapsis.org>

        * Branched 0.9.x

2004-05-02  Robby Stephenson  <robby@periapsis.org>

        * Changed Fields Dialog to close when creating a new collection or opening one.
        * Removed GCJ/java checks from configure.
        * Released Bookcase 0.9.1

2004-04-30  Robby Stephenson  <robby@periapsis.org>

        * Fixed i18n extraction for UI and gettext extensions.
        * Removed Japanese translation because of encoding errors.
        * Updated CSV import to know about current fields when appending or merging

2004-04-29  Robby Stephenson  <robby@periapsis.org>

        * Updated German translation from Gerrit Albrecht.

2004-04-27  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with lyxpipe using LYXSRV insted of LYXCMD.
        * Changed quick filter to wait 200 ms before updating the filter.

2004-04-21  Robby Stephenson  <robby@periapsis.org>

        * Added wait cursor for file saving.
        * Fixed bug with created a double collection when failing to load the initial file.
        * Make sure column view updates when an image is cleared.

2004-04-18  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.9.

2004-04-16  Robby Stephenson  <robby@periapsis.org>

        * Improved visibilty of image size in Fancy.xsl.
        * Updated Italian translation, thanks to FaUsT.
        * Updated Finnish translation, thanks to Teuvo.
        * Added hidden pref for pixmap size in detailed view.
        * Changed HTML exporter to use titles as filenames.

2004-04-13  Robby Stephenson  <robby@periapsis.org>

        * Added hidden preference for pilotdb export charset encoding.

2004-04-09  Robby Stephenson  <robby@periapsis.org>

        * Improved bibtex export to detect duplicates keys and add 'a'b,
        'b', etc.
        * Released Bookcase 0.9pre1

2004-03-26  Robby Stephenson  <robby@periapsis.org>

        * Updated printing and HTML export to include images.
        * Updated Detailed View to show images, too.

2004-03-25  Robby Stephenson  <robby@periapsis.org>

        * Updated Italian translation, thanks to FaUsT.
        * Changed toolbar icon for New Entry to collection icon on top of
        empty mime type.

2004-03-24  Robby Stephenson  <robby@periapsis.org>

        * Added menu item in group view for filtering on groups.
        * Added config options for image sizes in printout.

2004-03-22  Robby Stephenson  <robby@periapsis.org>

        * Fixed another bug with HTML export character encoding.
        * Added config panel for bibtex quotation style and lyxpipe location

2004-03-20  Robby Stephenson  <robby@periapsis.org>

        * Fixed Paragraph fields to properly signal modified in the Entry Editor.
        * Fixed crashing bug for fields with nothing but whitespace in the datafile.
        * Updated printing stylesheet so that images can be included.

2004-03-19  Robby Stephenson  <robby@periapsis.org>

        * Changed document opening so that if the first field has the name
        of "_default", all the default fields will be added.

2004-03-17  Robby Stephenson  <robby@periapsis.org>

        * Changed Dependent fields to allow grouping.
        * Changed Fields Dialog to allow changing the field types, in some
        limited cases.

2004-03-15  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug in PilotDB export with images.
        * Fixed bug with "other" delimiter freezing the app.

2004-03-13  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with trying to reopen Untitled after converting to a bibliography.
        * Added support for lyxpipe and citing entries in bibliography.

2004-03-12  Robby Stephenson  <robby@periapsis.org>

        * Changed to be more aggressive in creating URL fields on Bibtex import.

2004-03-10  Robby Stephenson  <robby@periapsis.org>

        * Added Compact and Fancy entry templates.
        * Released Bookcase 0.8.5.

2004-03-07  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug in Video template for when there's no Cast template.
        * Fixed bug with detecting old versions of gcc and vector::at.

2004-03-05  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with filter dialog layout and KDE 3.2.

2004-03-04  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with corrupt zip files when more than one entry
        references the same image.

2004-02-28  Robby Stephenson  <robby@periapsis.org>

        * Fixed the gcc 2.95 compile bug for sure.

2004-02-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug in Data::Entry::field().
        * Fixed XSLTHandler to work for URLs, so XSLT files can reference
        other files.

2004-02-22  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with HTML entities in XSLT stylesheet params.

2004-02-20  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with duplicate menu items in KDE 3.2.x.
        * Fixed bug to properly reorder categories when reordering fields.
        * Released Bookcase 0.8.4.

2004-02-19  Robby Stephenson  <robby@periapsis.org>

        * Fixed auto-capitalize and auto-format to take affect immediately.

2004-02-18  Robby Stephenson  <robby@periapsis.org>

        * Added Czech translation, thanks to Robert Kratky.

2004-02-17  Robby Stephenson  <robby@periapsis.org>

        * Fixed compilation issues for gcc 2.95 and FreeBSD.
        * Changed the Config Dialog to use a semi-colon to separated the articles, prefixes, and suffixes instead of a comma, for consistency. They're still saved in the config file with a comma, though, so old options should be fine.

2004-02-14  Robby Stephenson  <robby@periapsis.org>

        * Fixed problem when trying to reopen last file and getting error.
        * Added drag & drop support for the image widget.

2004-02-13  Robby Stephenson  <robby@periapsis.org>

        * Updated Estonian translation, from Toomas Nigola.
        * Changed to remember sorting config in group view.

2004-02-12  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug when renaming a single-category field.

2004-02-11  Robby Stephenson  <robby@periapsis.org>

        * Changed Entry Editor to redo page layout when deleting fields.
        * Added merge functionality when importing collections.
        * Fixed bug with exporting HTML in non-utf8.

2004-02-09  Robby Stephenson  <robby@periapsis.org>

        * Updated Spanish translation, thanks to Quique.
        * Added sorting by group count.

2004-02-07  Robby Stephenson  <robby@periapsis.org>

        * Added workaround for layout bug in Keramik style.

2004-02-04  Robby Stephenson  <robby@periapsis.org>

        * Fixed saving visible columns yet again.
        * Changed XSLT parser to prevent all network calls.
        * Fixed crashing bug when deleting a field.
        * Fixed compilation bug when using libxml > 2.6.0 but libxslt < 1.1.
        * Released Bookcase 0.8.3.

2004-02-04  Robby Stephenson  <robby@periapsis.org>

        * Fixed file truncation for file with some Unicode characters.
        * Released Bookcase 0.8.2.

2004-02-03  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.8.1.

2004-02-02  Robby Stephenson  <robby@periapsis.org>

        * Added Album entry template.
        * Added Finnish translation, thanks to Teuvo Eloranta.
        * Added --with-xml-catalog configure option.

2004-01-30  Robby Stephenson  <robby@periapsis.org>

        * Fixed compile bug with src/Makefile.am and libxslt.
        * Fixed bug with $datadir param in Default entry template.
        * Added Video entry template.
        * Added EAN to ISBN conversion for 978 and 979 codes. Patch from Martijn Pieters.

2004-01-27  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with Select All not working.
        * Fixed some compilation issues.
        * Updated French translation from Rui Nibau.

2004-01-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed DTD for new collections.
        * Updated some accel keys.
        * Changed Requires to KDE 3.1 or higher since KZip is used.
        * Released Bookcase 0.8.

2004-01-23  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.8pre1

2004-01-22  Robby Stephenson  <robby@periapsis.org>

        * Added Finnish translation from Teuvo Eloranta.
        * Added "Export to XML" option since file format is Zip now.
        * Switched to new XML parser in libxml2 > 2.6.0

2004-01-13  Robby Stephenson  <robby@periapsis.org>

        * Added new Collection menu.

2004-01-09  Robby Stephenson  <robby@periapsis.org>

        * Changed entry method for bibtex string macros. Triple-clicking on list view items is stupid.

2004-01-08  Robby Stephenson  <robby@periapsis.org>

        * Added zip file format for collections with images.

2004-01-01  Robby Stephenson  <robby@periapsis.org>

        * Added cut, copy, and paste functions.
        * Added new entry and copy entry functions.
        * Added find previous, select all, and deselection functions.

2003-12-31  Robby Stephenson  <robby@periapsis.org>

        * Changed double clicking an entry to show the editor.
        * Moved entry edit widget to dialog box.

2003-12-13  Robby Stephenson  <robby@periapsis.org>

        * Updated French translation, thanks to RNB.

2003-12-11  Robby Stephenson  <robby@periapsis.org>

        * Added image fields.
        * Changed auto-completion to account for fields with multiple values.

2003-12-07  Robby Stephenson  <robby@periapsis.org>

        * Updated Norwegian translation, thanks to Leif Mathis Gaup.


2003-11-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug in remembering visible columns for custom fields.
        * Added some speed-ups in loading time.
        * Released Bookcase 0.7.2

2003-11-24  Robby Stephenson  <robby@periapsis.org>

        * Fixed another ISBN format bug for non-english publishers.

2003-11-23  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with auto-capitalization when global setting was turned off.
        * Fixed bug with not saving options for empty collections.
        * Fixed bug with reordering visible fields.

2003-11-21  Robby Stephenson  <robby@periapsis.org>

        * Added Pilot-DB export option.
        * Fixed bug to update status line after deleting entries.

2003-11-12  Robby Stephenson  <robby@periapsis.org>

        * Added Derived field type for concatenating values from other fields.
        * Added default collections for trading cards, coins, stamps, comic books, and wines.

2003-11-11  Robby Stephenson  <robby@periapsis.org>

        * Updated German tranlation, thanks to Gerrit Albrecht.
        * Added Swedish translation, thanks to Karolina Lindqvist.
        * Fixed bug with adding 2-column table.
        * Cut the 0.7.x branch.
        * Added Derived field type.

2003-11-09  Robby Stephenson  <robby@periapsis.org>

        * Fixed charset encoding bug.
        * Fixed compile for GCC 2.96.
        * Changed bibtex and CSV export to default to locale encoding.
        * Fixed bug with field editor not updating title.
        * Released Bookcase 0.7.1.

2003-11-08  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.7.

2003-11-05  Robby Stephenson  <robby@periapsis.org>

        * Fixed the tips file translation issue.
        * Released Bookcase 0.7pre2.

2003-11-03  Robby Stephenson  <robby@periapsis.org>

        * Fixed ISBN formatting bug for non-english language publishers.
        * Released Bookcase 0.7pre1.

2003-10-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed documentation compile error for KDE 3.2.
        * Added CSV importer.
        * Changed Bibtexml importer and exporter to use internal classes rather than XSL stylesheets.

2003-10-24  Robby Stephenson  <robby@periapsis.org>

        * Added string macro editor for Bibtex collections.
        * Printing now only prints visible entries by default.

2003-10-21  Robby Stephenson  <robby@periapsis.org>

        * Added new group for all attributes formatted as names, so Editors and Authors can be grouped together.

2003-10-10  Robby Stephenson  <robby@periapsis.org>

        * Changed printing to print columns as shown in the view, and group by the current grouping.
        * Removed old options for printing fields selection.

2003-10-04  Robby Stephenson  <robby@periapsis.org>

        * Added capability to reorder fields in field editor.

2003-10-03  Robby Stephenson  <robby@periapsis.org>

        * Imported btparse library code to use for importing Bibtex files. It has a lot of warnings, but none should be fatal.

2003-09-23  Robby Stephenson  <robby@periapsis.org>

        * Added "Bibtex Field" to default Bibtex collections fields to aid in exporting to Bibtex and Bibtexml.
        * Bumped document syntax to 4.
        * Changed "attribute" elements in document file to "field".
        * Changed all unit elements to "entry" rather than the unit name.
        * Changed Boolean values to save as "true" instead of an implicit value.
        * Added CSV exporter.

2003-09-12  Robby Stephenson  <robby@periapsis.org>

        * Added 2-column Table field type.

2003-09-09  Robby Stephenson  <robby@periapsis.org>

        * Changed boolean values to show title in group view.

2003-09-03  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug when deleting multiple books from detailed listview.

2003-08-31  Robby Stephenson  <robby@periapsis.org>

        * Changed field completion to be case-insensitive.
        * Fixed bug with saving listview columns.

2003-08-16  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with reopening last saved file.

2003-08-12  Robby Stephenson  <robby@periapsis.org>

        * Added French translation from RNB.

2003-08-08  Robby Stephenson  <robby@periapsis.org>

        * Added menu item for configuring toolbars.
        * Added menu item for configuring shortcut keys.

2003-07-31  Robby Stephenson  <robby@periapsis.org>

        * Added Table field type.

2003-07-30  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug in saving visible columns.
        * Improved loading time.

2003-07-29  Robby Stephenson  <robby@periapsis.org>

        * Implemented adding file extension (.bc) when using File->Save As and an extension filter is shown.
        * Added status bar text showing number of selected books when more than 1 is selected.

2003-07-24  Robby Stephenson  <robby@periapsis.org>

        * Added menu comands for showing/hiding the group view and editor.

2003-07-23  Robby Stephenson  <robby@periapsis.org>

        * Added "--nofile" command line option for bypassing the "Open last file" config setting.
        * Added "Tip of the Day" dialog.
        * Changed default for showing unit count to true.
        * Changed Year field type to generic Number.
        * Improved sorting to sort numerically for Number fields.
        * Added Default button to Field Editor dialog.
        * Added additional format option to never capitalize or format.
        * Fixed last open file option to no longer be over-written when Bookcase is exited with an empty document.
        * Cut the 0.6.x branch.

2003-07-22  Robby Stephenson  <robby@periapsis.org>

        * Fixed crashing bug in "Edit Fields" dialog.

2003-07-21  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.6.5

2003-07-09  Robby Stephenson  <robby@periapsis.org>

        * Added Estonian translation from Toomas Nigola.

2003-07-07  Robby Stephenson  <robby@periapsis.org>

        * Updated German translation from Ulf-Diether Ehlert.

2003-07-01  Robby Stephenson  <robby@periapsis.org>

        * Fixed translation bug with category names.
        * Added Bulgarian translation from Boyan Ivanov.

2003-06-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed sorting bug for empty fields.
        * Released Bookcase 0.6.4

2003-06-19  Robby Stephenson  <robby@periapsis.org>

        * Changed focus to first tab when adding new book.
        * Disabled multiple value option for title field in field editor.
        * Fixed bug with completion object not being updated when a field is changed to all auto-completion.
        * Fixed drawing bug with toolbar label background.

2003-06-17  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with surname matching too much with periods in regexp.
        * Added Japanese translation from Linux Magazine.
        * Added Dutch translation from Liese De Vos.

2003-05-30  Robby Stephenson  <robby@periapsis.org>

        * Fix crashing bug when opening the filter dialog on KDE 3.0.

2003-05-27  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.6.3

2003-05-26  Robby Stephenson  <robby@periapsis.org>

        * Added feature where the column view remembers the previous sorted column, so that items with the same sort key are subsequently sorted by previous column.

2003-05-25  Robby Stephenson  <robby@periapsis.org>

        * Add Spanish translation, thanks to Quique.
        * Updated Norwegian translation, thanks to Leif Mathis.
        * Fix bug with collapse/expand all not working in group view.
        * Fix bug with "Find" not properly traversing the collection.
        * Fix bug with sorted column not being saved between document loads.
        * Fix bug with changed category not being reflected in edit widget.
        * Fix bug with name prefixes not being limited to word boundaries.

2003-05-11  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase 0.6.2

2003-05-10  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with custom fields not showing up in column popup menu.
        * Fixed crashing when selecting a different book after modifying the current one and not saving it.
        * Fixed icon bug for column view.
        * Prettied-up some of layout code.

2003-05-09  Robby Stephenson  <robby@periapsis.org>

        * Added Norwegian translation from Leif Mathis Gaup.
        * Fixed printing bug for books with multiple groups.

2003-05-06  Robby Stephenson  <robby@periapsis.org>

        * Changed initial file opening so that if a new empty file was the last viewed, then no recent file is opened at next startup.
        * Fixed bug with initial collection not updating edit widgets.

2003-05-05  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.6.1
        * Fixed automake 1.7 error with configure.in.in
        * Fixed UIC variable usage, primarily for *BSD platforms
        * Fixed double encoding bug on bibtexml inport
        * Fixed wrong namespace on bibtexml export
        * Changed to use TDEAcceleratorManager for keyboard accels on tabs
        * Fixed bug with the group view icon not getting changed back to the folder

2003-05-03  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with editing multiple books and getting asked every time if I'm sure.
        * Changed modified field names in the "Edit Fields" dialog to be colored, an din italic font instead of having an asterisk in front.

2003-05-02  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.6
        * Changed Bibtex export to use the Locale character encoding instead of UTF-8

2003-04-22  Robby Stephenson  <robby@periapsis.org>

        * Added a URL attribute type
        * Changed articles, surname prefixes, and suffixes to be case-insensitive so the config value no longer has to include both capitalized and lower-case values
        * Broke out the attribute format flag for cleaner code

2003-04-13  Robby Stephenson  <robby@periapsis.org>

        * Added multiple selection, batch editing

2003-04-12  Robby Stephenson  <robby@periapsis.org>

        * Added RegExp Editor button to find dialog
        * Added Quick and Advanced filtering in the detailed list view

2003-04-10  Robby Stephenson  <robby@periapsis.org>

        * Added new "person" icon for grouping when the group is a name

2003-04-09  Robby Stephenson  <robby@periapsis.org>

        * Convert from KTabCtrl to QTabWidget, which has more documentation and is actively developed

2003-04-08  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with column order not retained on save

2003-04-05  Robby Stephenson  <robby@periapsis.org>

        * Fixed bug with validating multiple copyright years

2003-03-25  Robby Stephenson  <robby@periapsis.org>

        * Added surname prefixes like 'de' and 'von'

2003-03-23  Robby Stephenson  <robby@periapsis.org>

        * Fixed debug mistake.
        * Released Bookcase version 0.5.2a

2003-03-22  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.5.2

2003-03-21  Robby Stephenson  <robby@periapsis.org>

        * Added German translation from Gerrit M. Albrecht
        * Fixed bugs with empty suffix and article list
        * Fixed some i18n issues

2003-03-18  Robby Stephenson  <robby@periapsis.org>

        * Added Hungarian translation from Marcel Hilzinger

2003-03-15  Robby Stephenson  <robby@periapsis.org>

        * Fixed types and compile problems. Thanks, Dre!
        * Released Bookcase version 0.5.1

2003-03-14  Robby Stephenson  <robby@periapsis.org>

        * Put the book count in color.
        * Took out general export function for now.
        * Released Bookcase version 0.5

2003-03-07  Robby Stephenson  <robby@periapsis.org>

        * Added a new printing page in the configuration dialog
        * Added a checkmark pixmap for the boolean fields
        * Added a header menu to be able to select which fields to show in
        the detailed list view

2003-03-02  Robby Stephenson  <robby@periapsis.org>

        * Fixed character encoding bug for latin2

2003-01-25  Robby Stephenson  <robby@periapsis.org>

        * Fixed focus bug

2003-01-19  Robby Stephenson  <robby@periapsis.org>

        * Changed FORMAT_VERSION to 2
        * Changed document format so that attributes which allow multiple
        entries are saved in multiple XML elements
        * Changed "keywords" attribute to "keyword"
        * Added check for document format version so that incompatible versions
        are not loaded. Older versions will be properly loaded, but once saved,
        previous versions of Bookcase will not load the new files properly.
        * Changed "Language" and "Copyright Year" to allow multiple entries.

2002-12-12  Robby Stephenson  <robby@periapsis.org>

        * Added namespaces to document file

2002-12-11  Robby Stephenson  <robby@periapsis.org>

        * Added import from Bibtexml using XSLT

2002-12-08  Robby Stephenson  <robby@periapsis.org>

        * Added export to Bibtex using XSLT
        * Added export to Bibtexml using XSLT

2002-12-03  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.4.1
        * Added a Romanian translation from Iulian Ursache <iulianu@cs.tuiasi.ro>

2002-11-29  Robby Stephenson  <robby@periapsis.org>

        * Fixed compile problems with gcc 2.95

2002-11-24  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.4
        * Printing improvements in XSLT layout

2002-11-10  Robby Stephenson  <robby@periapsis.org>

        * Added an Italian translation from FaUsT <faust@inventati.org>

2002-11-05  Robby Stephenson  <robby@periapsis.org>

        * Added a new toolbar for changing the grouping of the units
        * Changed the bookcase.spec file to add proper files

2002-10-20  Robby Stephenson  <robby@periapsis.org>

        * Released Bookcase version 0.3

2002-08-27  Robby Stephenson  <robby@periapsis.org>

        * Added two new XSLT files
        * Added printing support using TDEHTML
        * Added RPM spec file to automake

2002-02-21  Robby Stephenson  <robby@radiojodi.com>

        * Released Bookcase version 0.2

2002-02-20  Robby Stephenson  <robby@radiojodi.com>

        * Added BCColumnView::slotShowUnit() so to ensure that the proper listview in the stack is shown.
        * Added BCAttribute::capitalize for auto capitalization of names and titles.

2002-02-08  Robby Stephenson  <robby@radiojodi.com>

        * Changed selection behavior so the two listviews do not sync now. Clicking in one clears the other.

2002-02-03  Robby Stephenson  <robby@radiojodi.com>

        * Added article and suffix list to options in config dialog.

2002-01-11  Robby Stephenson  <robby@radiojodi.com>

        * BCListView is now BCColumnView and can flip between different collections. Woo-hoo! Now multiple collections behave properly. Also started adding configuration options.

2002-01-10  Robby Stephenson  <robby@radiojodi.com>

        * bctabcontrol.{h,cpp} Need KTabCtl::showTab to be public, so subclassed it.

2002-01-10  Robby Stephenson  <robby@radiojodi.com>

        * configdialog.{h,cpp} Added beginnings of configuration dialog.

2001-12-06  Robby Stephenson  <robby@radiojodi.com>

        * bcgroupview.cpp, bcattribute.cpp Fixed the bug for formatting names with suffixes like Jr.

2001-11-05  Robby Stephenson  <robby@radiojodi.com>

        * bookcase.h Removed the File->Close() action item.

2001-11-05  Robby Stephenson  <robby@radiojodi.com>

        * bcgroupview.cpp Fixed the bug where clicking the collapse or expand menu item on a BCUnitItem caused the pixmap to change to a folder.

2001-11-04  Robby Stephenson  <robby@radiojodi.com>

        * Released Bookcase version 0.1