summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: b4951747ffece0b5ee74aa20569d5e60211be39c (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
2018-06-18 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11.2.

2018-06-05 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #140, No window text with Qt 5.11

2018-06-05 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix cmake build errors with Qt 5.11, fix some cmake warnings

2018-03-03 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #134, Bibletime crashes when clicking on "full syntax" 

2018-03-03 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #132, Mag not always working with Hebrew / Strong 

2018-02-03 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #119, Use recommended env var to get windows shared program data path.

2018-01-15 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #131, Add Qt translation file path so the Bookshelf Wizard buttons are translated.

2018-01-01 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix application icon directory location to match the standard (freedesktop.org)

2017-11-05 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #124, Cannot install works

2017-09-29 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11.1.

2017-09-28 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #52, Some greek dictionary modules don't work in magnifier

2017-06-02 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #102, Problem with ctrl-L shortcut

2017-05-31 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #105, Problem with Save - Yes/No dialog and editing a Personal commentary

2017-02-14 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #95, Images don't display

2017-02-09 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #12 Cannot read apocryphal books

2017-02-07 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #37 Bibletime does not display paragraphs correctly

2017-02-02 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #94 Crash when closing module display window with Qt 5.8

2017-01-26 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #92 Qt "More Info..." tab is blank

2017-01-26 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #91 Cannot change to second tab in Tabbed view

2017-01-23 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #90 BibleTime does not start on Windows 7

2016-12-22 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11.0.

2016-11-23 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #80 BibleTime does not start on Windows when user name is non latin1 unicode chars

2016-09-02 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #70 Fix crash using bookmarks with Qt 5.7

2016-08-10 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11 RC 2.

2016-07-04 Gary Holmlund <gary.holmlund@gmail.com>
    * bug #64 Fix indexing which affects searching for strong's numbers in modules with multiple strong's numbers per word.

2016-05-14 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11 RC 1.

2016-04-23 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.11 beta 1.

2016-01-20 Gary Holmlund <gary.holmlund@gmail.com>
    * Implement QWebEngine usage for Qt 5.6

2015-12-24 Gary Holmlund <gary.holmlund@gmail.com>
    * Implemented new bookshelf manager

2015-12-14 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #23 Tiny fonts on Windows

2015-11-15 Jaak Ristioja <jaak@ristioja.ee>
    * Require Qt 5 or later

2015-11-14 Jaak Ristioja <jaak@ristioja.ee>
    * Require C++11 or later

2015-02-15 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #26 Screen contents do not autoadjust when window size is adjusted

2010-08-21 Martin Gruner <mgruner@crosswire.org>
    * Added new Lithuanian language translations. Updated toolchain to work with homebrew on OS X.

2013-12-23 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed some bugs in the install progress dialog, removed support for
      forced install thread termination which was error-prone.

2013-12-22 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed some settings not being properly loaded on startup.

2013-12-18 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.10 RC 1.

2013-12-11 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.10 beta 1.

2013-12-10 Jaak Ristioja <jaak@ristioja.ee>
    * Bumped CMake version requirement to 2.8.9.
    * Changed source code archive format from .tar.bz2 to .tar.xz.

2013-07-04 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug 27, Control Panel version was wrong on Windows

2013-05-19 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix multi-arch path issue in FindCLucene.cmake

2013-03-02 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed search analysis save dialog filters.
    * Fixed search analysis save asking for overwrite confirmation twice.
    * Optimized and enhanced search analysis to output proper XHTML.

2013-01-19 Greg Hellings <greg.hellings@gmail.com>
    * Added support for HTTP, HTTPS, SFTP transports in BibleTime

2013-01-15 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed widget ending up disabled after removing install source.

2012-12-16 Gary Holmlund <gary.holmlund@gmail.com>
    * More Qt5 updates needed by Qt5 rc2 version

2012-11-03 Gary Holmlund <gary.holmlund@gmail.com>
    * Add Find widget at bottom of MDI area

2012-09-10 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug 14 - Headers displayed as plain text in some modules

2012-08-25 Gary Holmlund <gary.holmlund@gmail.com>
    * Add support for Qt5

2012-07-18 Gary Holmlund <gary.holmlund@gmail.com>
    * Mag Window uses current module if no default cross reference is set

2012-03-30 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix crash when closing window with tab.

2012-03-10 Jaak Ristioja <jaak@ristioja.ee>
    * Implemented saving of font family and size in HTML commentary editor.
    * Fixed a bug in the HTML commentary editor which resulted in text
      formatting from the cursor to be applied to the whole selection.

2012-02-25 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug 3483206 where duplicate works menus appear on ubuntu with its Global Menus

2012-02-12 Gary Holmlund <gary.holmlund@gmail.com>
    * Allow comboxboxes on config dialog desk page to resize.
      Idea from Timothy Whitehead

2011-12-02 Jaak Ristioja <jaak@ristioja.ee>
    * Added Portugese translation by Mário Castanheira.

2011-11-23 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a bug where the book names language was not correctly set.
    * Fixed compatibility with Qt earlier than 4.7.

2011-11-21 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed the dialog buttons of the Tip of the Day dialog not being
      translated. Thanks to Novák Géza for reporting this.

2011-11-14 Jaak Ristioja <jaak@ristioja.ee>
    * Completely substituted the old profile system with a BtConfig-based one.

2011-11-12 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug 3425828 where the Mag window does not work with
      new versions of Qt. (Qt 4.7.4 + QWebKit 2.2 or later)

2011-11-08 Jaak Ristioja <jaak@ristioja.ee>
    * Merged the the new configuration based on the work of Patrick Zimmermann.

2011-11-07 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.9 RC 1.

2011-11-02 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a bug with bookshelf items grouping initialization.

2011-10-23 Gregory Hellings <greg.hellings@gmail.com>
    * Fixed compilation against CLucene 2.

2011-10-05 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.9 beta 2.

2011-09-24 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed missing texts in configuration window "Desk" page (2.9-beta1 only).

2011-09-19 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.9 beta 1.

2011-09-18 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bookshelf manager "install sources" combo to update after
      installing the list of sources.

2011-09-02 Jaak Ristioja <jaak@ristioja.ee>
    * Made BibleTime display splash screens at "random".
    * Added splash screen by Laurent Valentin Jospin.

2011-08-28 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed unable to remove works.

2011-08-18 Gary Holmlund <gary.holmlund@gmail.com>
    *  Add close buttons to tabbed works windows.

2011-08-07 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug 3162615 where titles with unicode chars
    * within Bibles did not display correctly.

2011-06-21 Jaak Ristioja <jaak@ristioja.ee>
    * Hovering over works in the bookshelf views shows tooltips.
    * Hovering over works in the bookshelf dock shows info in the mag view.

2011-05-28 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a cosmetic color bug in the font settings preview widget

2011-05-16 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix compile error on Fedora 15.

2011-05-15 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix crash when printing from Works pane of search dialog.

2011-02-28 Patrick Sebastian Zimmermann <patrick@zakweb.de>
    * Fix restoring from fullscreen to a maximized window.

2011-02-07 Gary Holmlund <gary.holmlund@gmail.com>
    * Fixed Personal Commentary. Text could be saved to wrong reference.

2011-02-07 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed an assert-crash caused by not catching indexing failures properly.

2011-01-16 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix crash when using Bookshelf Manager with Xiphos source

2011-01-15 Gary Holmlund <gary.holmlund@gmail.com>
    * Add toolbar icons to toggle visibility of docking windows

2011-01-15 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed category detection for modules.

2011-01-01 Gary Holmlund <gary.holmlund@gmail.com>
    * Switch off footnotes in display options, feature request 2892157

2010-12-31 Gary Holmlund <gary.holmlund@gmail.com>
    * Bible windows can have parallel commentaries

2010-11-25 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix main window toolbar key changer to save a modified entry in Personal Commentary

2010-11-19 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a crash triggered by an assertion in legacy code.
    * Fixed a crash caused by indirectly referencing unconstructed fields from
      the constructor of BtBibleKeyWidget.

2010-11-12 Jaak Ristioja <jaak@ristioja.ee>
    * Temporary workaround for bug 2954856 causing wrong HTML code for headings.

2010-10-31 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug in display of footnotes in mag window

2010-10-29 Jaak Ristioja <jaak@ristioja.ee>
    * Made the "Remove modules" confirmation dialog a bit prettier.
    * Released 2.8 RC 1

2010-10-19 Jaak Ristioja <jaak@ristioja.ee>
    * Made BibleTime handle missing default template gracefully.

2010-10-15 Jaak Ristioja <jaak@ristioja.ee>
    * Released 2.8 beta

2010-10-04 Jaak Ristioja <jaak@ristioja.ee>
    * Enhanced bookshelf manager remove works page.
    * Touches to configuration dialogs.

2010-09-25 Gary Holmlund <gary.holmlund@gmail.com>
    * Implemented the Tip Of The Day dialog

2010-09-25 Jaak Ristioja <jaak@ristioja.ee>
    * Removed "Close" button from bookshelf manager dialog to save screen space.
    * Redesigned and refactored the bookshelf manager install page.

2010-09-16 Jaak Ristioja <jaak@ristioja.ee>
    * Removed confusing "Use grouping from bookshelf dock" feature.
    * Implemented saving of grouping setting for:
      * the page for removing works in the Bookshelf Manager.
      * the installation confirmation dialog in the Bookshelf Manager,
      * the search module chooser dialog,
      * the main window "Open works" action in main menu and main toolbar.

2010-09-15 Jaak Ristioja <jaak@ristioja.ee>
    * Integrated the wonderful BtBookshelfWidget into the install page of the
      bookshelf manager.

2010-09-14 Jaak Ristioja <jaak@ristioja.ee>
    * In case no works are installed, the bookshelf dock now provides a label
      and "Install works..." button to guide the user to install new modules.
    * Made the install page confirmation dialog also show the versions of the
      modules to be installed / upgraded.

2010-08-28 Jaak Ristioja <jaak@ristioja.ee>
    * Removed support for configuration migration from KDE3.

2010-08-27 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed creation of bibletimerc into current working directory when exiting
      BibleTime before the directory cache is initialized (e.g when using the
      command-line --help switch).

2010-08-21 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix refactoring hang/crash issue introduced 2010-07-20

2010-08-21 Martin Gruner <mgruner@crosswire.org>
    * Improved directory usage on MacOS.
      New:
        BibleTime config:
        ~/Library/Application Support/BibleTime
        Sword data and config:
        ~/Library/Application Support/Sword

2010-08-08 Gary Holmlund <gary.holmlund@gmail.com>
    * Save the "grouping" setting of the Bookshelf

2010-08-08 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix Windows startup crash

2010-08-07 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a bug that caused some users home directories to be deleted.

2010-07-22 Jaak Ristioja <jaak@ristioja.ee>
    * Enhanced parsing of command-line arguments, also fixing a bug which caused
      --help and friends still create a GUI before exiting.

2010-07-20 Jaak Ristioja <jaak@ristioja.ee>
    * Enhanced module indexing dialog.
    * Fixed a crash when cancelling module indexing when invoked using search.

2010-07-11 Martin Gruner <mgruner@crosswire.org>
    * Released 2.7.2
    * fix version number

2010-07-06 Martin Gruner <mgruner@crosswire.org>
    * Released 2.7.1

2010-06-14 Martin Gruner <mgruner@crosswire.org>
    * Tweaked the cmake stuff to generate a valid standalone .dmg image on Mac OS

2010-06-04 Gary Holmlund <gary.holmlund@gmail.com>
    * Add select all and copy to the Mag window and the Search dialog results area.
    * Fix the functionality of select all in all windows

2010-05-29 Gary Holmlund <gary.holmlund@gmail.com>
    * Add sorting of bookmarks, see bookmark right context menu "Sort folder bookmarks" and "Sort all bookmarks"

2010-05-29 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix crash opening first window in manual arrangement mode.

2010-05-27 Gary Holmlund <gary.holmlund@gmail.com>
    * Add editing of bookmark title, see bookmark right context menu "Edit bookmark"

2010-05-25 Martin Gruner <mgruner@crosswire.org>
    * Changed BibleTime to require QT 4.5, but no boost any more.

2010-05-19 Martin Gruner <mgruner@crosswire.org>
    * Released 2.7

2010-04-29 Martin Gruner <mgruner@crosswire.org>
    * Released 2.7.beta1

2010-04-10 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix bug #2969498       Resize bug in magnification area

2010-03-27 Gary Holmlund <gary.holmlund@gmail.com>
    * Fix main window view menu so that shortcuts can be assigned to them.
    * Modified retranslateUi to work correctly with the shortcut editor

2010-03-11 Gary Holmlund <gary.holmlund@gmail.com>
    * Add option to show toolbar on main window instead of text windows

2010-02-24 Martin Gruner <mgruner@crosswire.org>
    * Released 2.6

2010-02-22 Martin Gruner <mgruner@crosswire.org>
    * Released 2.6.rc2

2010-02-22 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed an issue causing data loss when closing the main window, because
      open sub-windows were not properly queried for unsaved changes. Thanks
      Martin!

2010-02-20 Jaak Ristioja <jaak@ristioja.ee>
    * Refactored the module unlocking GUI to provide more info on failures and
      made opening a locked module also initiate the unlocking procedure.

2010-02-17 Martin Gruner <mgruner@crosswire.org>
    * Released 2.6.rc1

2010-02-11 Martin Gruner <mgruner@crosswire.org>
    * Released 2.6.beta2 after regression bugfix

2010-02-10 Martin Gruner <mgruner@crosswire.org>
    * Released 2.6.beta1

2009-02-06 Martin Gruner <mgruner@crosswire.org>
    * Re-added (configurable) removal of orphaned indices, code relocated

2010-02-04 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a bug that some display/filter settings were not applied on startup.

2010-01-26 Martin Gruner <mgruner@crosswire.org>
    * Fixed bug 2907136: Bug in red letters (ESV)

2010-01-18 Gary Holmlund <gary.holmlund@gmail.com>
    * Add tabbed window arrangement mode
    * Fix problems with manual arrangement mode

2009-12-31 Jaak Ristioja <jaak@ristioja.ee>
    * Implemented a menu item and tool button for opening installed works.

2009-12-30 Gary Holmlund <gary.holmlund@gmail.com>
    * Fixed bug ID: 1337338 "lexicon display window accepts illegal keys by drag&drop"

2009-12-22 Jaak Ristioja <jaak@ristioja.ee>
    * Refactored a couple of other dialogs to use the new bookshelf model. This
      means they now also have search and grouping fields.

2009-12-21 Jaak Ristioja <jaak@ristioja.ee>
    * Refactored search dialog module chooser dialog.

2009-12-20 Martin Gruner <mgruner@crosswire.org>
    * Release 2.5

2009-12-19 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed tree nodes checking

2009-12-18 Jaak Ristioja <jaak@ristioja.ee>
    * Refactored about dialog

2009-12-09 Martin Gruner <mgruner@crosswire.org>
    * Release 2.5.rc1

2009-12-11 Martin Gruner <mgruner@crosswire.org>
    * Improved rendering debugging

2009-12-09 Martin Gruner <mgruner@crosswire.org>
    * Release 2.5.beta1

2009-12-06  Gary Holmlund
    * Don't display min/max buttons in auto arrangement modes

2009-12-03 Eeli Kaikkonen
    * Added: View->Text windows menu to switch text window
      toolbars on/off.

2009-12-02 Kang Sun
    * Fixed bug ID 2901627 and hopefully ID 2901633.
    * Fixed potential bug in CReadWindow::setDisplayWidget.
    * Some code clean-up.
    * Added self to about dialog.

2009-12-01  Gary Holmlund
    * Fix bugs in cascade, vertical tile, and horizontal tile

2009-11-29 Gary Holmlund
    * Add new window arrangement modes, Auto-Tile, and Tile

2009-11-20 Thomas Abthorpe <tabthorpe@FreeBSD.org>
    * Link Italian Handook to the build

2009-11-29 Gary Holmlund
    * Fix bug ID 2905233, CTRL+W does not close child windows

2009-11-28 Martin Gruner <mgruner@crosswire.org>
    * Fixed lexicon cache file validation.

2009-11-24 Kang Sun <k486@digizip.com>
    * Fixed automatic bookmark saving.  Bug ID: 1602826.

2009-11-24 Martin Gruner <mgruner@crosswire.org>
    * Fixed an error with displaying pre-chapter and pre-book material.
    * Fixed heading display in OSIS modules like ESV.

2009-11-23 Eeli Kaikkonen
    * Added: text window header widget to Bible/commentary and dictionary windows
    * Fixed: a layout problem, module chooser buttons were in different order than
      modules when layout was RTL
    * Added: names for text window toolbars (for toolbar RMB menu)
    * Added: a quick and uncomplete fix for missing --help command line option

2009-11-22 Gary Holmlund
    * Fix bug ID 2898954, Fullscreen mode returns to wrong window state

2009-11-21 Gary Holmlund
    * Improve window size and position when opening them in manual arrangement mode.

2009-11-21 Gary Holmlund
    * Implement --debug option for Windows (Outputs to file)

2009-11-20 Martin Gruner <mgruner@crosswire.org>
    * Changed build system to generate compiled ui catalogs at build time.

2009-11-19 Gary Holmlund
    * Fix debug verbosity

2009-11-19 Jaak Ristioja <jaak@ristioja.ee>
    * Made the remove page of the bookshelf manager prettier.

2009-11-18 Martin Gruner <mgruner@crosswire.org>
    * Release 2.4

2009-11-16 Gary Holmlund
    * Fix window redraw errors in manual arrangement mode - ID: 2898356

2009-11-16 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed vertical tiling.

2009-11-14 Kang Sun
    * Fixed highlighting of search results with ? wildcard.

2009-11-14 Gary Holmlund
    * Fix bug "Print->Reference wih text opens save dialog
    * Fix Search dialog to close when BibleTime closes

2009-11-14 Martin Gruner <mgruner@crosswire.org>
    * Bug-A-Thon II
    * Improve search dialog robustness (fix crash when entering a keyword only)
    * Fixed a bug where strongs parsing of search results did not work when searching in
        more than one module.
    * Fixed a bug where searching for more than one Strongs number from the read window
        did not work correctly.
    * Fixed a bug with rendering of single entries in Commentaries where the generated
        HTML and JavaScript was broken (links firing several times, for example).

2009-11-12 Gary Holmlund
    * Fix defect: Cannot exit fullscreen mode - ID: 2895205

2009-11-11 Martin Gruner <mgruner@crosswire.org>
    * Include patch by kbs that fixes a memory leak.
    * Improved support for alternative versifications.
    * Release 2.4.rc1

2009-11-06 Eeli Kaikkonen
    * Added "get list of install sources from server" functionality.

2009-11-05 Gary Holmlund
    * Fix crash when canceling bookshelf install

2009-11-04 Martin Gruner <mgruner@crosswire.org>
    * Release 2.4.beta1

2009-11-1 Gary Holmlund
    * Fix bug id 2890011 - Crash when making book/chapter/verse change

2009-10-24 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed a crash on module installation/uninstall.
    * Fixed the wrong icon for lexicons.
    * Fixed some (not all) memory leaks.
    * Reimplemented showing locked icons for the bookshelf dock.

2009-10-20 Martin Gruner <mgruner@crosswire.org>
    * Fixed bug: Apply display filters correctly when restoring profiles, like on startup.
    * Refactoring: switched qDebug("text") to more current qDebug() << "text".

2009-10-19 Martin Gruner <mgruner@crosswire.org>
    * Improved TEI filter (shows crossrefs correctly now).
    * Fixed some text formatting settings in the display templates.
    * Improved generated HTML a bit.
    * Refactoring: Turned CToolClass into a namespace. Removed unused #includes of tool.h.

2009-10-18 Martin Gruner <mgruner@crosswire.org>
    * Added first version of TEI -> HTML filter.
       BibleTime can now open TEI modules, though rendering has to be improved.

2009-10-13 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed new bookshelf model category sorting.
    * Fixed a CSwordModuleInfo bug, which had unknown effects.
    * Reimplemented saving of bookshelf model grouping state.

2009-10-13 Martin Gruner <mgruner@crosswire.org>
    * Fixed nasty bug with incorrect footnote display in combination with
       crossReferences in the same verse.

2009-10-10 Martin Gruner <mgruner@crosswire.org>
    * Fixed bug #2849728: Lucene Text Fields search not working. Search now
       correctly includes data from EntryAttributes as well as data from EntryAttributes
       of entries with verse == 0.

2009-10-09 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed compilation for Qt 4.4

2009-10-09 Martin Gruner <mgruner@crosswire.org>
    * Bug-a-thon
    * Split CMakeLists.txt into pieces
    * Reformat entire codebase with astyle

2009-10-06 Martin Gruner <mgruner@crosswire.org>
    * Release 2.3

2009-09-30 Martin Gruner <mgruner@crosswire.org>
    * Release 2.3.rc1

2009-09-29 Jaak Ristioja <jaak@ristioja.ee>
    * Added a case-insensitive module filter to the bookshelf dock widget.

2009-09-26 Martin Gruner <mgruner@crosswire.org>
    * Improved DBus interface for easier detection of BibleTime service
        as requested by Teus Benshop.

2009-09-25 Martin Gruner <mgruner@crosswire.org>
    * Release 2.3.beta1

2009-09-20 Thomas Abthorpe <tabthorpe@FreeBSD.org>
    * Link Spanish Howto to the build

2009-09-19 Jaak Ristioja <jaak@ristioja.ee>
    * Added a new bookshelf models implemented on top of the Qt Model/View
        framework.
    * Rewrote the bookshelf dock widget in the main window.


2009-09-18 Gary Holmlund
    * Fix bug id 2807600 - Limit movability of toolbar components
    * Fix bug id 2832540 - Personal note relocated

2009-09-14 Martin Gruner <mgruner@crosswire.org>
    * Fixed a nasty bug which prevented non-KJV-verses to be shown in modules with
        differing versification systems

2009-09-07 Martin Gruner <mgruner@crosswire.org>
    * Fixed a nasty bug causing a small memory leak and preventing the bookname
        language from being updated instantly in the bible key choosers after
        a language change.

2009-09-05 Gary Holmlund
    * Added new feature called "Change location". It is a shortcut (Ctrl-L) that
      changes the focus to the toolbar field for the bible reference or book
      location. This is like the Ctrl-L feature of FireFox.
    * Fixed the "Search with works of this window" shortcut so it appears in the
      shortcut editor. Moved its shortcut key from Ctrl-L to Ctrl-N

2009-09-01 Martin Gruner <mgruner@crosswire.org>
    * Fixed bug causing wrong behaviour on verse number click

2009-08-27 Thomas Abthorpe <tabthorpe@FreeBSD.org>
    * Link Danish Howto to the build

2009-08-26 Martin Gruner <mgruner@crosswire.org>
    * Add Patch by Kang Sun to avoid compiler warnings
    * Release 2.2

2009-08-19 Martin Gruner <mgruner@crosswire.org>
    * Release 2.2.rc1

2009-08-17 Jaak Ristioja <jaak@ristioja.ee>
    * Made the verse key chooser dropdown buttons appear on hover for better toolbar layout
    * Fixed template display problems on dark color schemes.

2009-08-15 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed mouse cursor vanishing problem when using the verse key chooser scroll buttons

2009-08-12 Martin Gruner <mgruner@crosswire.org>
    * Release 2.2.beta1

2009-08-09 Jaak Ristioja <jaak@ristioja.ee>
    * Fixed install manager performance issue on installing many works at once

2009-08-03 Gary Holmlund
    * Fix the Forward/backward in history toolbar buttons to work with shortcuts

2009-07-25 Gary Holmlund
    * Add shortcut page to config settings dialog
    * Rework of how actions are setup, many shortcuts had not been working

2009-07-12 Martin Gruner <mgruner@crosswire.org>
    * Release 2.1

2009-07-05 Martin Gruner <mgruner@crosswire.org>
    * Release 2.1.rc1

2009-06-28 Martin Gruner <mgruner@crosswire.org>
    * Release 2.1.beta1

2009-06-27 Thomas Abthorpe
    * Add Brazilian Portuguese Handbook translation to the build

2009-06-19 Gary Holmlund
    * Config Dialog does not open for first time starting of BibleTime

2009-06-08 Martin Gruner <mgruner@crosswire.org>
    * Require Sword 1.6.0, obsolete support code removed
    * Require CMake 2.6.0
    * Re-enabled -Werror for debug builds

2009-06-06 Gary Holmlund
    * Config and Bookshelf Manager dialogs will remember their last size and position
    * Fix warning coming from document_magnifier.svg

2009-06-06 Martin Gruner <mgruner@crosswire.org>
    * Release 2.0.1

2009-06-02 Martin Gruner <mgruner@crosswire.org>
    * Fix bug #2799800: Display broken when verse numbers are turned off

2009-05-30 Gary Holmlund
    * Fix defect, the main window icon was missing - defect # 2798758
    * Removed debug code writing a out.txt file in the current directory without warning

2009-05-28 Martin Gruner <mgruner@crosswire.org>
    * release 2.0

2009-05-20 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.rc1

2009-05-16 Gary Holmlund
        * Fix problem causing Mag window to update when it should not.

2009-05-16 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.beta3, hopefully the last beta

2009-05-11 Martin Gruner <mgruner@crosswire.org>
    * Added detection of curl and icu, which is optional, but may be required by Sword for linking

2009-05-08 Martin Gruner <mgruner@crosswire.org>
    * Rewrote Sword library detection code for compiling in a hopefully platform-independent way

2009-04-26 Gary Holmlund
    * Change Mag window to use language specific font type and size.

2009-04-29 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.beta2

2009-04-26 Gary Holmlund
    * Fix clicking of links in the Mag Window.

2009-04-25 Gary Holmlund
    * Fix drag/drop onto the display window.

2009-04-25 Martin Gruner <mgruner@crosswire.org>
    * include bugfix from Fabio Correa: fix cmake syntax for "make test" generation

2009-04-24 Thomas Abthorpe
    * Add Hungarian Handbook translation to the build

2009-04-21 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.beta1

2009-04-21 Martin Gruner <mgruner@crosswire.org>
    * Applied cmake patch from Greg Hellings with slight modifications
    * Applied translation patches from Jaak Ristioja
    * Applied patch from Jaak Ristioja which makes generated config.h obsolete
    * Applied patch from Jaak Ristioja which simplifies .moc file generation

2009-04-09 Gary Holmlund
    * Add translatable text for several dialogs
      These words need transating:
        Ok, Open, Save, Cancel, Close, Discard, Apply, Reset, Restore Defaults,
        Help, Save All, Yes, Yes To All, No, No To All

2009-03-25 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.alpha3

2009-03-23 Martin Gruner <mgruner@crosswire.org>
    * revived contributor data in about dialog

2009-03-22 Thomas Abthorpe
    * Add Czech translation to the build

2009-03-20 Gary Holmlund
    * Use docking windows instead of splitters for the left side windows. The
      docking windows can be moved by dragging from their title bar. They can
      be moved to the left, right, top, or bottom of the main window. They can
      be dropped above, below, or on top of other docking windows. If dropped
      on top of another docking window, tabs are automatically created. They
      can be resized by dragging from their edges. The location of the docking
      windows can be saved by saving a session. The default session ensures that
      they look the same as the last session. Each docking window has a menu
      under "View" to toggle its visibility.

2009-03-20 Martin Gruner <mgruner@crosswire.org>
    * release 2.0.alpha2

2009-03-12 Gary Holmlund
    * Use default browser instead of just konqueror or firefox. This should work
      much better for non-linux platforms

2009-03-12 Gary Holmlund
    * New Help > About dialog with BibleTime, Sword, Qt, and License tabs.

2009-03-10 Martin Gruner <mgruner@crosswire.org>
    * Slightly improved clucene integration robustness with exception handling.

2009-03-07 Gary, Eeli, Greg, Martin
    * many platform-compatibility enhancements
    * release 2.0.alpha1

2009-02-22 Gary
    * Completed the port to QT. KDE is no longer required. (Hooray!)

2009-02-07 Gary, Eeli, Martin
    * several bugfixes
    * releasing 1.7 final

2009-02-03 Gary, Eeli, Martin
    * tons of bugfixes
    * threading disabled in Bookshelf Manager because of non-threadsafe ftp library in Sword
    * beginnings of port to QTWebKit by Gary (code disabled by default)
    * release 1.7rc1

2008-11-05 Martin Gruner <mgruner@crosswire.org>
    * more const modifier fixes in various sources to improve standards conformity

2008-09-12 Martin Gruner <mgruner@crosswire.org>
    * Bugfixes to the cmake build framework (with MacOS contributions by Greg Hellings)
    * const modifier fixes in various sources to improve standards conformity by Eeli

2008-08-27 Martin Gruner <mgruner@crosswire.org>
    * Released 1.7.beta1 for distributions to package
    * several bugfixes

2008-05 * MAJOR CHANGES FOR 1.7 *
    * The code is in svn instead of cvs
    * Port to KDE4/QT4, reduced KDE dependency to a minimum
    * Command line options have changed (--help is out of date)
    * Configuration files have been moved to ~/.bibletime/
    * New build system: cmake
    * i18n of UI strings is now handled by QT
        * tr() function in the source code, .ts files for translations
    * UI strings have been changed radically
    * Massive code cleanups and internal refactoring
        * New classes, rewritten and renamed classes, removed classes
        * Better directory structure
        * Cleaned up #includes
    * New bookshelf manager
    * New external communications interface DBUS (instead of DCOP)
    * Bookshelf improvements
        * Separation of works and bookmarks on two tabs
        * Different work grouping types supported
        * Hide/Unhide feature to select which modules should be displayed
    * Corrections and enhancements to session management
    * Search dialog now has a history for the modules to search in
    * Bugfixes to backend filters and display templates
    * Disabled features
        * Key binding configuration (maybe this will re-appear in a later release)
        * Search analysis (should re-appear soon)
        * Startup tips (probably not coming back)
        * Drag and Drop in the main window Bookshelf (should re-appear)
        * "About" dialogs in Help menu ("About BibleTime" is probably needed back)
    * Eeli Kaikkonen and Martin Gruner are responsible for most of the work
        with the help of Jeremy Erickson and some other contributors,
        Joachim Ansorg has retired from coding

2007-11-01 Martin Gruner <mgruner@crosswire.org>
    * Released 1.6.5 with several important bugfixes

2007-04-18 Joachim Ansorg <info@bibletime.info>
  * Released version 1.6.4

2007-04-02 Joachim Ansorg <info@bibletime.info>
  * Updated list of contributors

2007-03-23 Joachim Ansorg <info@bibletime.info>
  * Printing now uses the windows's display settings (verse-numbers)

2007-03-22 Joachim Ansorg <info@bibletime.info>
  * Applied a patch by Eeli Kaikkonen to have a delay before the mag content appears
  * Added Eeli Kaikkonen to the list of contributors

2007-03-22 Joachim Ansorg <info@bibletime.info>
  * Fixed the osis filter to work with the new NETfree module

2007-03-14 Joachim Ansorg <info@bibletime.info>
  * Added our own thmlplain filter to fix a CLucene indexing bug

2007-02-25 David Blue <thedeveloper@users.sourceforge.net>
  * Added CSS to templates to display Lord in small-caps when tagged that
  way in the module. Fixes Bug #1660413.

2007-02-19 Joachim Ansorg <info@bibletime.ifno>
  * Added Chunshek Chan to the contributors

2007-02-03 Martin Gruner <mgruner@crosswire.org>
  * more fixes to the make system
  * released 1.6.3b

2006-01-28 Joachim Ansorg <info@bibletime.info>
  * fixes to the make system
  * released 1.6.3a

2007-01-27 Martin Gruner <mgruner@crosswire.org>
  * fixed searching in unicode texts which I broke on 2006-12-05; please accept my apologies.
  * released 1.6.3

2007-01-27 Martin Gruner <mgruner@crosswire.org>
  * fixed session loading code to handle main window properties correctly
    * fixed hotkey configuration for books

2007-01-14 Martin Gruner <mgruner@crosswire.org>
  * another search fix, set max lucene field size to 1 MiB. BibleTime should not truncate long entries any more.

2006-12-27 Joachim Ansorg <info@bibletime.info>
  * Added Jeremy Erickson to the contributors
  * Changed copyright to 1999-2007

2006-12-26 Joachim Ansorg <info@bibletime.info>
  * Fixed some Makefile.am issues
  * Added some contributors to the about dialog

2006-12-14 Martin Gruner <mgruner@crosswire.org>
  * fixed handbook typo
  * fixed required clucene version to 0.9.16

2006-12-07 Martin Gruner <mgruner@crosswire.org>
  * packaged BibleTime 1.6.2

2006-12-07 Daniel Glassey <dglassey@crosswire.org>
  * add --enable-howto to be able to disable building bible study howto
    (required by Debian :/)

2006-12-05 Martin Gruner <mgruner@crosswire.org>
  * BibleTime will now index, search and display pre-chapter and pre-book
  headings; small cleanups
  * searching should work as expected now with regard to headings

2006-12-02 Martin Gruner <mgruner@crosswire.org>
  * allow automake 1.10

2006-11-30 Joachim Ansorg <info@bibletime.info>
  * Fix for missing text if GBF red letter words were used

2006-11-27 Joachim Ansorg <info@bibletime.info>
  * The tree state is restored if a change in the Sword setup forces a reload at runtime.

2006-11-25 Martin Gruner <mgruner@crosswire.org>
  * Fixed 2 tooltips which were swapped
  * removed old leftover code that caused problems with --enable-final

2006-11-24 Joachim Ansorg <info@bibletime.info>
  * Updated contributors in the about dialog

2006-11-01 Martin Gruner <mgruner@crosswire.org>
  * Reverted Analyzer Change of 1.6.1 to use StandardAnalyzer again, but
  without stop words. Whitespace Analyzer did not correctly strip punctuation,
  so that hits were missing. Sorry. Search should work as expected now.
  * Added ability to display Book and Chapter headings

2006-10-25 Martin Gruner <mgruner@crosswire.org>
  * Fixed crash on module uninstallation
  * released BibleTime 1.6.1

2006-10-21 Martin Gruner <mgruner@crosswire.org>
  * Fixed KJV 2006 display, stripping NT transcription footnotes correctly
  again
  * Changed Search to use WhitespaceAnalyzer instead of StandardAnalyzer. Now
  the default stop words of StandardAnalyzer are ignored.
  * Fixed search result highlighting for queries with "*" - do not highlight
  across word boundaries any more
  * Fixed fullscreen toggeling

2006-10-10 Martin Gruner <mgruner@crosswire.org>
  * small clucene.m4 bugfix for nonstandard sword installations

2006-09-22 Joachim Ansorg <info@bibletime.info>
  * Release of BibleTime 1.6

2006-09-12 Martin Gruner <mgruner@crosswire.org>
  * Fixed personal commentary display bug

2006-08-25 Martin Gruner <mgruner@crosswire.org>
  * Changed location of bibletime.desktop to /usr/share/applications

2006-08-23 Martin Gruner <mgruner@crosswire.org>
  * released BibleTime 1.6rc1

2006-08-21 Martin Gruner <mgruner@crosswire.org>
  * Fixed Keychooser Hotkeys to cross testament boundary

2006-08-20 Joachim Ansorg <info@bibletime.info>
  * Fixed the shrinking to zero of the left mainwindow's left part
  * Fixed crossrefs in the clucene index
  * Improved the layout of the searchdialog options
  * Modules which require a more recent Sword are not loaded

2006-08-20 Martin Gruner <mgruner@crosswire.org>
  * Added documentation for "Find text in read window"

2006-08-07 Martin Gruner <mgruner@crosswire.org>
  * verse keychooser bugfix and cleanups

2006-08-01 David Blue <thedeveloper@users.sourceforge.net>
  * Matched the High Contrast Template to the High Contrast Black Text
    colours in kde

2006-07-25 David Blue <thedeveloper@users.sourceforge.net>
  * Fixed display of crossrefs in all templates

2006-06-20 Martin Gruner <mgruner@crosswire.org>
  * major patch to the printing system: printing works dynamically and
  respects the display and filter settings, instead of loading the default
  settings at program startup time
  * Joachim, why does printing not work with headings and scriprefs and other
  markup elements? Besides, it always shows verse numbers, even if they are
  turned off
  * Please test printing

2006-06-17 Martin Gruner <mgruner@crosswire.org>
  * Released BibleTime 1.6beta3

2006-06-15 Martin Gruner <mgruner@crosswire.org>
  * BibleTime now unlocks immediately
  * The module icon reflects this immediately
  * unlock status reflects correct/incorrect key now, instead of empty/set
  (possibly false) key
  * Sword config setting and text retrieval prevention from locked modules are
  not implemented yet, not as important (and I dunno how to do it right now)
  * fixed display profile bug with maximized state; you may need to delete old
  sessions
  * removed workaround code for lucene 0.9.10

2006-06-09 Martin Gruner <mgruner@crosswire.org>
  * patched clucene.m4 to support and require clucene 0.9.12

2006-05-23 Martin Gruner <mgruner@crosswire.org>
  * Applied more patches by Mark Zealey

2006-05-22 Martin Gruner <mgruner@crosswire.org>
  * Applied keychooser patch by Mark Zealey, BibleTime now uses an entirely
  different and improved key chooser for Bibles and Commentaries.

2006-05-18 Martin Gruner <mgruner@crosswire.org>
  * First patch after a month!
  * Fixed UI issue in Bookshelf Manager which ended up in wrong place after
  cancelling index download

2006-04-26 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.6beta2

2006-04-19 Martin Gruner <mgruner@crosswire.org>
  * Updated INSTALL.in

2006-04-09 Joachim Ansorg <info@bibletime.info>
  * Fixed popup menu in the commentary window

2006-04-06 Martin Gruner <mgruner@crosswire.org>
  * Fixed all delayed popup menus to show up immediately

2006-03-30 Martin Gruner <mgruner@crosswire.org>
  * Fixed "make messages" to include autogenerated .cpp and .h files (from .ui
  files) by running "make" first before extracting the messages
  * small enhancement to the crazy template

2006-03-30 Joachim Ansorg <info@bibletime.info>
  * Fix: Support robinson codes in the new KJV2006 module

2006-03-25 Joachim Ansorg <info@bibletime.info>
  * Support special x-p milestone in the new KJV2006 module.
  * Support multiple lemmas and morphs per word in the KJV006 module
  * Fix: OSIS filter fix for seg elements
  * Fix: Display templates did not show headings in bold if a font was set for the module language

2006-03-24 Gabriel Beddingfield <gabriel@teuton.org>
  * Added isWritable() check (and error message) before saving in CPlainWriteWindow.

2006-03-24 Martin Gruner <mgruner@crosswire.org>
  * Added DCOP call reloadModules()

2006-03-21 Martin Gruner <mgruner@crosswire.org>
  * Fixed a ThML crossref parsing bug

2006-03-18 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.6beta1

2006-03-04 Martin Gruner <mgruner@crosswire.org>
  * added an CSwordModule::unlockKeyIsValid() function

2006-02-25  Joachim and Martin: BibleTime Bug Squashing Party I
  * Disabled sorting for the "manage indices" columns
  * Added "automatically delete orphaned indices when BibleTime starts" option
  * Fixed display window toolbar problems, now there are 2 toolbars
  * Added support for "n" attribute in footnotes
  * Fixes to the display templates

2006-02-22 Martin Gruner <mgruner@crosswire.org>
  * Orphaned and defect indices are now automatically deleted

2006-02-15 Joachim Ansorg <info@bibletime.info>
  * Fix: Modules without indexes created an empty index directory.
  * Fix: Module indexes are completely removed now

2006-02-14 Martin Gruner <mgruner@crosswire.org>
  * Extended index logic to allow for additional indexes per module in future

2006-02-14 Joachim Ansorg <info@bibletime.info>
  * Search window: The result count in the module list are sortable now
  * The "Strong's search" items in the context menus of display windows are disabled now if there's no number to search for

2006-02-10 Joachim Ansorg <info@bibletime.info>
  * Several smaller fixes to the searchdialog gui
  * Moved searchdialog classes into several namespaces (Search::*)
  * Added the icon for the "Search Strong's Number" option
  * Bumped version number to 1.5.95, i.e. a 1.6pre version
  * Sometime the wrong text was shows for notes

2006-02-01 Lee Carpenter <lcarpenter@users.sourceforge.net>
  * Applied Jim Campbell's updates to the Strong's search feature.

2006-01-26 Lee Carpenter <lcarpenter@users.sourceforge.net>
  * Added an index size field to the 'Manage search indices' page.

2006-01-22 Lee Carpenter <lcarpenter@users.sourceforge.net>
  * Added a page to the Bookshelf Manager to add/delete search indices.

2006-01-19 Lee Carpenter <lcarpenter@users.sourceforge.net>
  * Applied Jim Campbell's patches to add Strong's highlighting in search results.

2006-01-18 Lee Carpenter <lcarpenter@users.sourceforge.net>
  * Converted search dialog to use Designer .ui templates for layout.

2006-01-02 Martin Gruner <mgruner@crosswire.org>
  * Search dialog UI cleanups
  * Added index version tracking

2005-12-30 Martin Gruner <mgruner@crosswire.org>
  * Simplified Search Dialog, code cleanups
  * Added index creation progress dialog

2005-11-13 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.5.3
  * Patch: Applied patches by Jeremy Erickson to compile with KDE 3.0-3.3.

2005-11-09 Martin Gruner <mg.pub@gmx.net>
  * Added support for OSIS tables

2005-11-06 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Changed popup title in commentary windows to "Commentary window" instead of
      "Lexicon window"
  * Patch: Applied patch by Jeremy Erickson to CMDIArea to compile with Qt 3.2

2005-10-24 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Allow download of locked modules

2005-10-16 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.5.2

2005-10-15 Joachim Ansorg <info@bibletime.info>
  * New feature: Remember open groups in the bookshelf on next startup
  * New feature: Remember selected item of the bookshelf on next startup

2005-10-11 Joachim Ansorg <info@bibletime.info>
  * New feature: Added new method called getModulesOfType to our DCOP interface.

2005-10-07 Joachim Ansorg <info@bibletime.info>
  * New feature: The display windows now have a search dialog to search in the displayed text
    (also activated by CTRL+F)
  * Bugfix: Changed key accel of "Search open works" to CTRL + O,
    because the standard action used CTRL + F, which we use in the new feature above.
    Changed the settings in hdbk-reference as well.
  * Bugfix: Hopefully the last fix for the parsing. We have to work around a Sword parsing problem.

2005-10-05 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Enter in a keychooser did not change the display under special circuamstance
  * Buffix: Newlines entered in the plain text editor were not displayed in the HTML editor or the read display window
  * Bugfix: One more parsing fix

2005-10-03 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Fix for bookshelf manager where the "Install works" button was always greyed out
  * Bugfix: Another fix to reference parsing
  * Feature: Refs in ThML modules (e.g. TSK) are now splitted if it doesn't alter content

2005-10-01 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Fix for the key parsing where only a partial reference was given

2005-09-25 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Crash on FedoraCore4 if the settings dialog has been closed

2005-09-16 Joachim Ansorg <info@bibletime.info>
  * Bugfix: ThML modules like the ISV crashed BibleTime if the default Bible couldn't be found

2005-09-12 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.5.1
  * BibleTime-i18n package 1.5.1

2005-09-10 Joachim Ansorg <info@bibletime.info>
  * New feature: DCOP interface to control BibleTime. The available commands are avilable by calling "dcop bibletime BibleTimeInterface". To read the DCOP documentation please have a look at the file bibletime/bibletimeinterface.h
  * Bugfix: The bookshelf manager didn't work with KDE systems which were configured to use a double click
  * Bugfix: A trailing slash in the hostname prevented the bookshelf manager to connect to that remote host

2005-08-24 Joachim Ansorg <info@bibletime.info>
  * Bugfix: More Drag&Drop fixes
  * Bugfix: Some compilers complained about a missing namespace declaration in the backend code

2005-08-24 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Copyright infos for a module is now displayed as correctly enocoded text
  * Bugfix: Larger fontsize for the display styles "Default" and "Green"

2005-08-18 Joachim Ansorg <info@bibletime.info>
  * Bugfix: Bookmark drag&drop should work now

2005-08-01 Joachim Ansorg <info@bibletime.info>
  * New feature: Display templates can now be stored in $KDEDIR/share/apps/bibletime/display-templates/ and
    $HOME/.kde/share/apps/bibletime/display-templates/

2005-07-16 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.5
  * Handbook update by Martin
  * Hotkeys reviewed

2005-06-17 Joachim Ansorg <info@bibletime.info>
  * BibleTime 1.5rc2
  * Most of the bugs reported for rc1 are fixed
  * Major handbook update
  * Display windows scroll now to the right position after they opened and
    after a resize

2005-06-10 Joachim Ansorg <info@bibletime.info>
  * API doc updates (BibleTime.DoxyFile)
  * Fixed code to compile with GCC 3.3.6, 3.4.4 and 4.0

2005-06-06 Joachim Ansorg <info@bibletime.info>
  * Added the missing "Delete session" menu item
  * The sessions items are now disabled if no sub-menu items are present

2005-05-29 Joachim Ansorg <jansorg@bibletime.info>
  * Releases BibleTime 1.5rc1
    -Tons of bugfixes, new features and improvements

2004-07-17 Daniel Glassey <danglassey@ntlworld.com>
  * Added English and German man files courtesy of Erik Schanze

2004-07-16 Martin Gruner <mg.pub@gmx.net>
  * Added invocation of KDE's graphical regular expression editor.
    -invoke simply by selecting "regular expression" as search type.

2004-01-29 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * BibleTime 1.4.1 release
    -Bugfixes, especially in the Sword setup dialog part
    -Changed default icons to crystalsvg
    -Updated GUI translations

2003-12-28 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * BibleTime 1.4 release
    -New SwordSetup Dialog to setup Sword's configuration, to install modules from remote or local sources and to uninstall modules.
    -Bugfixes

2003-08-28 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Released BibleTime 1.3. Major changes are:
    -Redesign of the main index; bookmarks are seperated into an own folder, modules are sorted by type and language;
     better menu structure
    -Better bookmark file format, bookmarks are saved now in XML. Old bookmarks can still be imported.
    -Improved Drag&Drop to work with multiple items, e.g. twenty search result items
    -Redesign of the search dialog; it's easier to use now and better to navigate
    -Better support for GenBooks (Generic Books)
    -Improved support for writing commentaries. There's a plain text editor and a WYSIWYG editor now.
    -BibleTime 1.3 requires Sword 1.5.6 now
    -Many, many bugs and memory leaks fixed
    -Updates to all translations, including new languages
  We're sorry for the long time it took to prepare the 1.3 release! We hope to improve release cycles with the next
  releases.

2003-03-10 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Fixed BibleTime to work in all places with the new SWBuffer class. Should be now more bug free.

2003-02-28 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Released 1.3rc1 which uses a Sword snapshot. We're in message freeze now - translators can finally start.
  * Fixed BT to use Sword's new filter stuff

2003-01-19 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Fixed BT_BASICFILTER::ProcessRWPRefs, made simpled and more bug free

2003-01-18 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Removed install instructions from CResMgr and the actions XML file
  * Fixed missing insertion of KAction objects into our KAccel object

2003-01-17 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Removed installation instructions, the webpage and README/INSTALL files are good enough

2003-01-16 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Bugfixes:
    -Loading of profiles switched of auto-cascading and auto-tiling
    -Debugged CMDIArea, was old, buggy code. Should work now more robust.
  * Code cleanups for CDisplayWindow

2003-01-14 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Last fixes for beta4:
    -Changes everything to use CResMgr instead of ugly #defined
    -Added support for new Red letter words strip filter
    -Everything is now in CResMgr
    -Many small bugfixes

2003-01-11 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Searchdialog search result page highlights searched text
  * Default color of strongs and morph codes changed to Qt::darkBlue

2003-01-07 Joachim Ansorg <junkmail@joachim.ansorgs.de>
  * Major speed improvements for displaying lexicons together

2003-01-04 Martin Gruner <mg.pub@gmx.net>
  * Release 1.3beta3 release
  * Changes in comparision with 1.2.x:
    - New main index with better module grouping (using language and type), better bookmark format (XML),
      import for old bookmarks from 1.2.2
    - Drag&Drop works now with multiple items (e.g. 200 search result items)
    - Many more changes we don't remember

2002-06-02 Martin Gruner <mg.pub@gmx.net>
    * Moved the english docs to bibletime/docs, and the pot file to bibletime/pot.
      Created a new package bibletime-i18n-de for German docs, with the folders docs/ and po/.
      Revised gen_am.sh file to suit the new arrangement, and it does at least run and create all the
      necessary Makefile.am files for English and German.

2002-05-03  Martin <mg.pub@gmx.net>

    * Ported to KDE3: BibleTime 1.2. No new features. Text rendering works much better now
        (right-to-left), as well as font / charset handling -- thanks to Trolltech.

2002-10-04 Martin Gruner
    * Differences between 1.0 and 1.1:
        - Improved interface:
            o Better optionsdialog: Better structure, more powerful settings
            o Better menu structure: The documentation is now accessible from the Help menu, ...
            o Keyaccelerators for each display window type
            o much more
        - General Book Support (GBS): Books like "Josephus" are supported now.
            Operations like bookmarking, printing, copying or saving work just like with
            Bibles, commentaries or lexicons.
        - Crossreference support
            Crossreferences work now. For example you can click now on a strong number to open the
            module for it which displayes the chosen number. The same for Bibles, morph tags etc.
            Tooltips work for the links, too.
        - Improved Unicode support
            Unicode encoded modules are now supported in a better way. Choosing the font and
            the displaying of the text works better. RTL support and better rendering is still
            missing.
        - Profile management. Profiles capture the current state of the working area
            (opened display windows, scrollbar positions, set keys ...). Profiles can be loaded to
            restore the old state and can be saved to store the current state for later. Automatically
            restoring the windows after startup is possible, too.
        - Better crash management. BibleTime tries now to save settings if a crash occured. Although we
            implemented this, we don't know how to make BibleTime crash ;) It's just for your safety.
        - Speed improvements. Printing is almost two times faster now. Searching in modules is also faster,
            but this was improved in the Sword library by the Sword developers.
        - Improved display windows. Independent display settings for each window (footnotes, strongs ...)
        - Fullscreen mode of the main application window
        - Improved commentary editor: Ask if the text should be saved if the window or BibleTime should be closed
            if the changed text was not saved before.

2001-11-24 Fred Saalbach <saalbach@sybercom.net>
    * Moved documentation to bibletime-docs - includes .po files, handbook, etc.
    * This will reduce the size of the main program and allow more flexibility
      for the creation of RPM's.
    * Compile time for the main program will also be reduced.

2001-09-22 Fred Saalbach <saalbach@sybercom.net>
    * Fixed problem with sgml tag <graphic> by replacing it with the <InLineMediaObject> in the english handbook.
    * This only is a problem with systems running kde 2 and document
    * text descripter  "-//KDE//DTD DocBook V3.1-Based Variant V1.0//EN"
    * kdb2html finishes without errors now.

2001-08-30 Joachim Ansorg <jansorg@gmx.de>
    * Added $(DESTDIR) to Makefile.am files
    * Solved compilation errors

2001-08-17 Joachim Ansorg <jansorg@gmx.de>
    * Optimizations to CSwordBibleModuleInfo
    * Fixed bug in CBibleKeyChooser
    * New structure in the optionsdialog
    * Key accelerators for each display window type
    * Fullscreen button

2001-07-28 Joachim Ansorg <jansorg@gmx.de>
    * The new configure options are cached now (sword lib,includes, distribution name and version, RPM prefix and group)

2001-07-27 Joachim Ansorg <jansorg@gmx.de>
    * Added history box in the HTML dialog widget if history browsing is enabled

2001-07-16 Joachim Ansorg <jansorg@gmx.de>
    * Implemented better configure script. We have now options to link to a static Sword library!
    * Added rudimentary support for version checking

2001-06-20 Joachim Ansorg <jansorg@gmx.de>
    * Release BibleTime 1.0!
    We're really glad we got it out now! Enjoy!
    Sorry for the large delay!

2001-03-08 Joachim Ansorg <jansorg@gmx.de>
    * Released BibleTime 1.0beta1.

2001-02-17 Joachim Ansorg <jansorg@gmx.de>
    * Added QTextEdit, QTextView, and QRichText classes from Qt3 (ported by David Faure)
    * Removed the Qt2 classes QTextView, QTextBrowser and the class KTextEdit

2001-02-13 Joachim Ansorg <jansorg@gmx.de>
    * Changed the direction of the spin boxes
        and of the scrollbutton in the presenters
    * Updated QWorkspace to the one of Qt 2.2.4

2001-02-07 Joachim Ansorg <jansorg@gmx.de>
    * Fixed bugs in the groupmanager, searchdialog and presenters

2001-02-04 Joachim Ansorg <jansorg@gmx.de>
    * Added new features:
            RMB menus in the presenters and in the searchdialog

2001-02-03 Joachim Ansorg <jansorg@gmx.de>
    * Added Makefile system to create and install the handbook
    * Fred added his really nice handbook in .docbook format
    * Improved printing dialog: Now the styles are saved and restored correctly, needs some tweaking
    *    Fixed some bugs in the printing system, removed the range specifiers of the printing dialog

2001-02-02 Joachim Ansorg <jansorg@gmx.de>
    * Fixed some bug in CTipWindow
    * Fixed some bugs in our copy of QTextView
    * Fixed some bug in CStyleEditorDialog
    * Fixed some bug in the printing system
    * Improved CBiblePresenter and CPrinterDialog

2001-01-30 Joachim Ansorg <jansorg@gmx.de>
    * Updated ToDo

2001-01-27 Joachim Ansorg <jansorg@gmx.de>
    * Fixed the graphical search analysis, it should now work 99%

2001-01-21 Joachim Ansorg <jansorg@gmx.de>
    * Improved the style editor

2001-01-19 Joachim Ansorg <jansorg@gmx.de>
    * Improved the search anaylsis a little bit

2001-01-18 Joachim Ansorg <jansorg@gmx.de>
    * Fixed some bugs in the searchdialog
    * The bug with indexed modules and first search is now fixed,
      it was an error in Sword
    * Fixed some nasty bugs in the Sword backend
    * Marking searched words in the key text for multiple words works now 100%
    * The last book is now shown in the graphical search analysis

2001-01-18 Joachim Ansorg <jansorg@gmx.de>
    * Changed icon names and updated icon directories
    * Included all icons we need
    * Improved the BibleTime icons

2001-01-01 Joachim Ansorg <jansorg@gmx.de>

    A BLESSED NEW YEAR!

    -Added the command line option --debug to enable debug messages
2000-12-29 Joachim Ansorg <jansorg@gmx.de>
    *Changed behaviour if a book, chapter or verse was changed in the Bible-keychooser


2000-12-29 Joachim Ansorg <jansorg@gmx.de>
    * Changed iconname so it will be found

2000-12-26 Joachim Ansorg <jansorg@gmx.de>
    * Improved printing support (correct handling of singals ...)

2000-12-22 Joachim Ansorg <jansorg@gmx.de>
    * Fixed a bug in CGroupmanager: BibleTime does now start without installed modules!

2000-12-19 Joachim Ansorg <jansorg@gmx.de>
    * Some work on the oresenters and keychoosers
    * Fixed a small bug in cprintitemlist.cpp

2000-12-16 Joachim Ansorg <jansorg@gmx.de>
    * Fixed the crash in ctipwindow.cpp

2000-12-08 Joachim Ansorg <jansorg@gmx.de>
    * Fixed some printing bugs
    * Added QWorkspace of Qt 2.2.2 to our sources, so everybody has the fixed QWorkspace version

2000-12-05 Jochim Ansorg <jansorg@gmx.de>~
    * Drag& Drop on presenters works again
    * Finished "context sensitive" presenter refreshing

2000-12-04 Jochim Ansorg <jansorg@gmx.de>
    * Fixed this nasty "Default verse color" bug (was a wrong placed readEntry instead of readColorEntry in bibletime.cpp)
    * Fixed unifont support, it works no with non-ISO-8859-1 languages and fonts

2000-12-03 Jochim Ansorg <jansorg@gmx.de>
    * Changed the latin1() calls of QString to (const char*) ... local8Bit()
    * Changed QTextView a little bit: Do not set contents pos to 0,0 in QTexView::setText(), the result is a fester displaying of the texts
    * Changed the optionsdialog to display the language name and not the abbrevation

2000-11-28    Joachim Ansorg <jansorg@gmx.de>
    *  You can now switch between different book translations on runtime!
    * Improved "context sensitive" presenter refresh (e.g. if footnotes are enabled only presenters with modules having them will be refreshed)
    * Fixed some memory leaks.

2000-11-04    Joachim Ansorg <jansorg@gmx.de>
    * Solved some bugs
    * Updated ceditwidget.cpp so saving HTML is correct, loading is still incomplete
    * Made te frontend a shared lib and moved sources which should be there into frontend
        libfrontend is now called libbibletime_frontend.la.
    * Made --enable-shared the default options (changed to configure.in.in)

2000-10-30    Joachim Ansorg <jansorg@gmx.de>
    * Added sources and headers of QTextView, QTextBrowser and QRichText
    * Added signal wordHighlighted in QTextView

2000-10-29    Joachim Ansorg <jansorg@gmx.de>
    * Removed the toggle toolbar/footnotes/strongs bugs
    * Removed the bug Troy found (deletion of the searchresult)

2000-10-24    Joachim Ansorg <jansorg@gmx.de>
    * Removed the old backend and introduced a new, better faster
        backend with a new backend
    * Fixed some GUI bugs (ported from 0.3)
    * Fixed some backend bugs, removed CSwordVerseKey operators
    * Added portuguese translation of 0.3's messages, but it's still
        useable for 1.0CVS

--Lots of time passed by

2000-07-24     Joachim Ansorg <jansorg@gmx.de>
    *Released 0.3! A really long time! We hope you like it!

---Changelog will be continued after final 0.3

1999-12-30     Joachim Ansorg <Jockel123@gmx.de>
    *We should be now ready for 0.22 ;-)

1999-12-26     Joachim Ansorg <Jockel123@gmx.de>
    *Removed the commented out #includes
    *Updated AUTHORS file

1999-12-25     Joachim Ansorg <Jockel123@gmx.de>
    *make now use of getFontList (in global.h) to get the fonts
    *Added some ASSERT
    *Check it objects are zero in fontmanagement dialog

1999-12-24     Joachim Ansorg <Jockel123@gmx.de>
    *BibleTime 0.21 - I hope it's a nice Christmas present  ;-)

1999-12-23     Joachim Ansorg <Jockel123@gmx.de>
    *Changed some icons in CEditWidget to newer names

1999-12-22     Birger Langkjer <birger.langkjer@image.dk>
    *Updated danish translation
    *Added bibletime/optionsdialog/Makefile.in because this prevented me from compiling the first time.

1999-12-21     Joachim Ansorg <Jockel123@gmx.de>
    *The searchresult tab is now disabled if the list is empty
    *The moduletree-tabs are disable if the correspondig trees are empty

1999-12-20     Joachim Ansorg <Jockel123@gmx.de>
    *The fontmanagement dialog is now grayed out if there's no entry in the list

1999-12-20     Birger Langkjer <birger.langkjer@image.dk>
    *Updated danish translation

1999-12-19     Joachim Ansorg <Jockel123@gmx.de>
    *Fontmanagementdialog uses now a XFonts list, not the list provided by KDE. This solves the problems on
    systems without KFontManager
    *Added files global.h and global.cpp which should contain global functions
    *Fixed some typos in the german translation

1999-12-18     Joachim Ansorg <Jockel123@gmx.de>
    *Added Apply-Button in the optionsdialog

1999-12-17     Joachim Ansorg <Jockel123@gmx.de>
    *Tried to fix the charset problem in ktipoftheday.cpp
    *Updated AUTHORS list

1999-12-16     Joachim Ansorg <Jockel123@gmx.de>
    *Updated Michal's Czech translation

1999-12-15     Joachim Ansorg <Jockel123@gmx.de>
    *Added Czech language file: Thanks to Michal Rovnan� <Michal.Rovnanik@seznam.cz>

1999-12-12     Joachim Ansorg <Jockel123@gmx.de>
    *Removed function CNotesEditor::isTextSelected()
    *Added possibility to select type of highlighting of text for the notes editor
    *Added load and save of current highlighting type

1999-12-04     Joachim Ansorg <Jockel123@gmx.de>
    *Convrted the bmp images to jpg
    *Bibletime uses now kimgio everywhere
    *Added danish translation

1999-11-27     Joachim Ansorg <Jockel123@gmx.de>
    *Removed unused images
    *BibleTime 0.2

1999-11-26     Joachim Ansorg <Jockel123@gmx.de>
    *Finished the whole german handbook
    *Removed the own filters (plainhtml, rwphtml and gbfhtml),use (newer) filters of SWORD version
    *You can now select the entries in the bookmark-manager with the upper and lower keys and activate them with RETURN

1999-11-25     Joachim Ansorg <Jockel123@gmx.de>
    *Updated ToDo and Readme
    *Caption of mainwindow now contains the current chapter and verse

1999-11-24     Joachim Ansorg <Jockel123@gmx.de>
    *Made some labels in the printer-optionsdialog bigger to fit french translation
    *ResizeEvent in SearchScopeDialog

1999-11-20     Joachim Ansorg <Jockel123@gmx.de>
  *Startuplogo is now a PNG, this makes the distribution smaller
    *To make this work make use of kimgio

1999-11-18     Joachim Ansorg <Jockel123@gmx.de>
    *Finished my part on german handbook

1999-11-16     Joachim Ansorg <Jockel123@gmx.de>
    *Worked on translation of handbook to german
    *Translated some tips in german tipdatabase

1999-11-14     Joachim Ansorg <Jockel123@gmx.de>
    *The searchbuttons and the three radiobuttons are now resized

1999-11-12     Joachim Ansorg <Jockel123@gmx.de>
    *Fixed Bug: Now you can paste into the loojupline

1999-11-10     Joachim Ansorg <Jockel123@gmx.de>
    *Fixed bug in CDocBrowser on non KDE 1.1.2 systems

1999-11-07 Joachim Ansorg <Jockel123@gmx.de>
    *Tidied up kwrite - removed lots of commented code

1999-11-03     Joachim Ansorg <Jockel123@gmx.de>
    *Updated authors list
    *Thorsten added the new printer dialog - it works now

1999-11-03     Joachim Ansorg <Jockel123@gmx.de>
    *Added optimized paint function committed in the KDevelop mailing list by Vladimir Dvorak
     Thanks Vladimir!
    *Readded the nl.po file - it was lost by some reason

1999-11-01     Joachim Ansorg <Jockel123@gmx.de>
    *Updated handbook - Jeff's work is really great!
    *You can now use more than 31 tips in a tipdatabase

1999-10-23     Joachim Ansorg <Jockel123@gmx.de>
    *Renamed members in BibleTimeView: tTabView to treeTabView and sTabView to browserTabView
     We need this because sTabView and tTabView are confusing
    *Changed CChartWidget to resize the different graphs to the height of the window
    *Changed topPanner to leftPanner in BibleTimeView - this is a better name
    *Updated API documentation
    *Fixed BUG: Now the recentText part in BibleTimeView is saved correctly again
    *Noticed that KDE 1.1.2 has the calcScrollBars bug solved, no we use only our own function in KDE version before 1.1.2

1999-10-21     Joachim Ansorg <Jockel123@gmx.de>
    *Bugfix: Key acelelerators are now saved after changing and restored on new startup
    *Updated API documentation
    *Updated ktipofday.cpp and ktipofday.h from KDevelop to compile with GCC 2.95

1999-10-19     Joachim Ansorg <Jockel123@gmx.de>
    *Fixed a bug in CDocBrowser: If you lookup some text, the module wasn't highlighted
    *Added own submenu for the lookup part in CDocBrowser

1999-10-18     Joachim Ansorg <Jockel123@gmx.de>
    *BibleTime needs now the upcoming SWORD 1.45

1999-10-17     Joachim Ansorg <Jockel123@gmx.de>
    *Fixed bug: standard accelerators are now really disabled

1999-10-16     Joachim Ansorg <Jockel123@gmx.de>
    *Added Jeff to AUTHORS
    *Updated german translation

1999-10-15     Joachim Ansorg <Jockel123@gmx.de>
    *Solved a bug in the linkmanager: If you open the dialog and click OK the existing items were deleted
    *Added a script to put all i18n() things into the translation template. It called make-messages.sh. It's on the topdir.
    *Commented out the first lines of BibleTimeMgr to get BibleTime to compile without modifications of SWORD.
     Please uncomment these lines to make use of the PLAINFootnotes option filter. Make the declarations in the header
     file to protected on which the compiler complains about.

1999-10-14     Joachim Ansorg <Jockel123@gmx.de>
    *Implemented context sensitive enabling and disabling of the edit menu entries
    *Updated KWrite sourcen to the newest one shipped with KDevelop
    *Added Class CKNewAccel - provides disabling and enabling of accels by reeourceentry like ID_FILE_PRINT

1999-10-13     Joachim Ansorg <Jockel123@gmx.de>
    *Added refreshing of the list in CDocBrowser
    *BibleTime does not load an empty HTML file
     (e.g. when you load a file via a HREf module and the server is unknown -> KFM returns an empty file)
    *Improved a little bit the internet support

1999-10-12     Joachim Ansorg <Jockel123@gmx.de>
    *Implemented functions in linkmanager. Implemented the link management in CDocBrowser::showURL.
     Needs some work: We have to decide if the file is local or remote and downloda it first
      or we put a new option in the dialog.

1999-10-10     Joachim Ansorg <Jockel123@gmx.de>
    *Added new german index.sgml
    *Updated icons. You can now recpgnize what the icons mean
    *Added BibleTimeDoc::slotMoveToPreviousVerse() and BibleTimeDoc::slotMoveToNextVerse()
     Changed BibleTimeApp uses these functions to jump to the previous / next verse
     Added needed pixmaps and keyaccels

1999-10-09     Joachim Ansorg <Jockel123@gmx.de>
    *Worked on the handbook
    *Added Quickhelp for the widgets in the link management dialog.

1999-10-08     Joachim Ansorg <Jockel123@gmx.de>
    *Added some text to the handbook
    *Removed the german index.sgml file, because it makes no senss.
     We will add this if the english one is ready to translate it into german.
    *Cleaned up KListView::addChildItem()
    *Finished dialog of the link manager, needs implementation of functions to work

1999-10-05     Joachim Ansorg <Jockel123@gmx.de>
    *Added -lz to bibletime/Makefile.am to avoid compilation problems on RedHat 5.2 systems
    *Added some needed icons and changed iconnames in the sourcecode
    *Solved some spelling errors in the CBugReportDlg    and changed some kdevelop to bibletime in the class
    *Now you can't print by pressing STRG+P if printing is disabled

1999-10-03     Joachim Ansorg <Jockel123@gmx.de>
    *Changed CForeignFontOptions: The fonts are now saved in function saveSettings(), not after changing the font
    *Changed OptionsDialog:    The different options are displayed in a tree.
    *Removed old OptionsDialog
    *Created new subdirectory optionsdialog. We will need it for later development

1999-10-01     Joachim Ansorg <Jockel123@gmx.de>
    *Changed some QColor (QRGB ...) to (QColor) (QRGB ...) to solve compilation problems on Debian.

1999-09-29    Joachim Ansorg <Jockel123@gmx.de>
    *font auto-switching works now
    *Changed the line to edit the fontname to a combobox

1999-09-29    Joachim Ansorg <Jockel123@gmx.de>
    *Implemented more features of font-auto-switching, needs still work

1999-09-28    Joachim Ansorg <Jockel123@gmx.de>
    *Implemented simple switching between fonts - will work on it
    *Implemented signal BibleTimeDoc::sigSetBibleFont(const QString)
     Implemented slot BibleTimeView::slotSetBibleFont(const QString)
     These signal and the slot will be used in the near future for switching of fonts.
    *Connected the signal and the slot in BibleTimeApp::initView

1999-09-25    Joachim Ansorg <Jockel123@gmx.de>
    *On print the printerdialog is shown before the QT-dilaog. But printing
     doesn't work at the moment.
     We have to implement the slot slotPrint() of CPrinterDialog to make it work.
    *Changes in cnoteseditor.cpp the #define BUTTON_BAR_HEIGHT to an abosolut value.
     Solves a problem with the height of the editor.
  *Updated the startuplogo. It's now much more nice as the previous version.
  *Integrated the startuplogo in the aboutdialog. It's now displayed in the upper left corner of the box.
  *The class KStartupLogo looks now for the size of the startuplogo and resize the widget in the right way if the size have changed.
  *CDocBrowserColor: Made some hardcoded texts to i18n("")

1999-09-19    Joachim Ansorg <Jockel123@gmx.de>
    *Reorganized the icons:
     There are now two directories: pics and toolbar. pics contains the directory mini/
     which contains the mini icons. Mini icons are named with a trailing mini-.
     The directory toolbar contains the icons which are only used in the toolbar.
     This should be the new standard we use.

1999-09-19    Joachim Ansorg <Jockel123@gmx.de>
    *Changed names and install paths of some icon
    *Added some needed icons we forgot
    *Added function BibleTimeApp::slotHelpContents(): calls the online help
    *Solved: Changes of the key accelerators doesn't change the
     accels in the menus
    *rendered Footnotes are now displayed in dark red, too
  *Cleaned up DCocBrowser

1999-09-18    Joachim Ansorg <Jockel123@gmx.de>
    *Optimized a little bit the paintText function of CChartWidget

1999-09-17    Joachim Ansorg <Jockel123@gmx.de>
    *Changed a little bit the GBFHTML filter:
     Anotations are now displayed in dark red
    *Decided to use use the PLAINHTML filter as standard
     If no filter is specified in the .conf file of the module we use
     now the PLAINHTML filter. Perhaps we need to change this

1999-09-16    Joachim Ansorg <Jockel123@gmx.de>
    *Fixed this stupid bug related to the crash while searching the web bible

1999-09-14    Joachim Ansorg <Jockel123@gmx.de>
    *Change the GBFHTML filter a little bit
     It displays now the word explained in a footnote formatted as bold

1999-09-14    Joachim Ansorg <Jockel123@gmx.de>
    *Updated program version to 0.2

1999-09-12    Joachim Ansorg <Jockel123@gmx.de>
    *Added some tips to the tipdatabase
    *Added class KStartupLogo to display a picture on startup

1999-09-10    Joachim Ansorg <Jockel123@gmx.de>
    *Rewrite of the Searchanalysis, it's now up to 63 times faster
    *Text in the CChartWidget is now painted rotated (90)

1999-09-05    Joachim Ansorg <Jockel123@gmx.de>
    *Added analysis of searchresults -> needs still some work
    *updated de.po translation errors
    *updated homepage

1999-09-04    Joachim Ansorg <Jockel123@gmx.de>
    *created sub folders: gfx and printing
    *Added CPrinterDialog of KHexedit 0.81 -> isn't used at the moment

1999-09-02    Joachim Ansorg <Jockel123@gmx.de>
    *Added classes for searchanalysis and a ChartWidget
  *Updated configure.in - it checks now for headers and the SWORD lib in two steps

1999-08-30    Joachim Ansorg <Jockel123@gmx.de>
    *Changed and corrected some GUI errors

1999-08-29    Joachim Ansorg <Jockel123@gmx.de>
    *Decided to update this Changelog frequently
    *Changed the notesEditor to a non-tabbar look
    *New class CNotesEditor

1999-08-27    Joachim Ansorg <Jockel123@gmx.de>
    *First public release of BibleTime: Version 0.1