forked from bibletime/bibletime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1963 lines (1459 loc) · 78.4 KB
/
ChangeLog
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
2022-05-14 Jaak Ristioja <[email protected]>
* Released 3.0.3.
2021-12-12 Gary Holmlund <[email protected]>
* Fix bug #357 - Toolbar buttons cannot be activated using keyboard
2021-10-05 Gary Holmlund <[email protected]>
* Fix bug #346 - macOS build does not provide version metadata
2021-08-30 Jaak Ristioja <[email protected]>
* Released 3.0.2.
2021-08-09 Gary Holmlund <[email protected]>
* Fix bug #334 - Copy text disabled on Bible Time 3.0.1 with Qt less than 5.13
2021-07-30 Jaak Ristioja <[email protected]>
* Released 3.0.1.
2021-07-29 Gary Holmlund <[email protected]>
* Fix bug #331 - Scrolling the QML view with Page Up and Page Down keys
past content yields strange results
2021-07-12 Gary Holmlund <[email protected]>
* Fix bug #303 - Saves chapter as" does not save chapter right-clicked on
2021-06-18 Gary Holmlund <[email protected]>
* Fix bug #319 - BIBdraft does not display any text (ThML issue)
2021-05-16 Gary Holmlund <[email protected]>
* Fix bug #316 - Mag viewer made unusable in BT version 3
2021-05-10 Gary Holmlund <[email protected]>
* Fix bug #317 - Drag'n'Drop broken in BT 3.0 in mag view and search dialog
2021-13-30 Gary Holmlund <[email protected]>
* Fix bug #306 - Change sample text in settings dialog
2021-02-18 Gary Holmlund <[email protected]>
* Fix bug #299 - The preview on Settings dialog displays text as red
2021-12-30 Gary Holmlund <[email protected]>
* Fix bug #287 - Scrolling is exceedingly slow
2020-11-05 Gary Holmlund <[email protected]>
* Fix bug #283 - Clicking on verse number should make that verse the reference box
2020-10-28 Gary Holmlund <[email protected]>
* Fix bug #277 - Modules rearrange themselfs
2020-10-18 Gary Holmlund <[email protected]>
* Fix bug #279 - Highlighting of choosen text
2020-09-26 Gary Holmlund <[email protected]>
* Fix bug #268 - The parallel reading UI is broken in 3.0.0, when showing more than 4 versions
2020-08-06 Gary Holmlund <[email protected]>
* Fix bug #260 - BIbleTime 3.0 installs /usr/bin/DisplayView.qml
2020-08-02 Jaak Ristioja <[email protected]>
* Released 3.0.
2019-05-29 Gary Holmlund <[email protected]>
* Fix bug #252 - Choosing a text from the history returns the text lower in the page
2019-05-27 Gary Holmlund <[email protected]>
* Fix bug #243 and #244 - Issues with editing Personal Commentary
2019-05-15 Gary Holmlund <[email protected]>
* Fix bug #233 - Error selecting search results.
2020-05-09 Jaak Ristioja <[email protected]>
* Released 3.0 RC 1.
2020-04-30 Jaak Ristioa <[email protected]>
* Removed generated docs from tree, improved documentation generation logic,
enabled it by default in builds and added means to disable it with CMake.
2019-03-22 Gary Holmlund <[email protected]>
* Fix bug #223 - Double-clicking a verse number makes the bible scroll with mouse pointer movements
2019-03-21 Gary Holmlund <[email protected]>
* Fix bug #183 - Support for dark mode.
2019-01-14 Gary Holmlund <[email protected]>
* Fix bug #218 - Entering Bible reference in navigation toolbar returns text low in page
2019-01-03 Gary Holmlund <[email protected]>
* Fix bug #69 - Saving chapter as HTML or plain text in parallel
view only exports the first module
2019-12-22 Jaak Ristioja <[email protected]>
* Improved menus and added icons to text window headers.
* Released 3.0 beta 2.
2019-12-17 Jaak Ristioja <[email protected]>
* Improved menus of module chooser buttons, the button now displays the icon
of the selected module.
2019-12-14 Gary Holmlund <[email protected]>
* Fix bug #204 - Crossreference not working unless Settings/Configure has been done
2019-12-13 Gary Holmlund <[email protected]>
* Fix bug #209 Verse number drawn incorrectly with some display templates.
2019-12-12 Gary Holmlund <[email protected]>
* Fix bug #208 Unreadable text in about dialog with dark-colored system themes
2019-12-11 Jaak Ristioja <[email protected]>
* Released 3.0 beta 1.
2019-12-10 Gary Holmlund <[email protected]>
* Fix bug #3 Bookshelf doesn't remember if it's been expanded.
2019-12-08 Gary Holmlund <[email protected]>
* Fix bug #13 - BibleTime should remember the search scope.
2019-11-08 Gary Holmlund <[email protected]>
* Fix bug #194 - Problems with hebrew modules OSHB and OSMHB
2019-11-08 Gary Holmlund <[email protected]>
* Fix bug #200 - Place not being saved in Daily Devotional.
2019-11-06 Gary Holmlund <[email protected]>
* Fix bug #201 - Locked Bible not unlocking properly
2019-09-21 Gary Holmlund <[email protected]>
* Fix bug #189 - Allow selecting text for copying
2019-07-05 Gary Holmlund <[email protected]>
* Fix bug #186 - Problems creating scope with deuterocanonical books
2018-11-16 Gary Holmlund <[email protected]>
* Fix bug #77 - MAG Strongs does not work unless config settings have been saved.
2018-10-17 Gary Holmlund <[email protected]>
* Fix bug #138 - Search with quotes
2018-10-17 Gary Holmlund <[email protected]>
* Add name filter to the Install/Update/Remove works page.
2018-10-02 Gary Holmlund <[email protected]>
* Implement continuous scrolling of works windows.
* Implement auto scrolling of the active works window.
* New context menu "Copy/Copy..." that lets user choose first and last
reference to copy.
* Implement edit of Personal commentary from the "read" window.
2018-08-02 Gary Holmlund <[email protected]>
* Fix #137
* Update sources first time bookshelf wizard is used per session.
* add UI for deleting and creating search indexes.
2018-06-21 Gary Holmlund <[email protected]>
* Fix #149, BT for Windows does not start if "C:\ProgramData\Application Data" is missing.
2018-06-05 Gary Holmlund <[email protected]>
* Fix bug #140, No window text with Qt 5.11
2018-06-05 Gary Holmlund <[email protected]>
* Fix cmake build errors with Qt 5.11, fix some cmake warnings
2018-03-03 Gary Holmlund <[email protected]>
* Fix bug #134, Bibletime crashes when clicking on "full syntax"
2018-03-03 Gary Holmlund <[email protected]>
* Fix bug #132, Mag not always working with Hebrew / Strong
2018-02-03 Gary Holmlund <[email protected]>
* Fix bug #119, Use recommended env var to get windows shared program data path.
2018-01-15 Gary Holmlund <[email protected]>
* Fix bug #131, Add Qt translation file path so the Bookshelf Wizard buttons are translated.
2018-01-01 Gary Holmlund <[email protected]>
* Fix application icon directory location to match the standard (freedesktop.org)
2017-11-05 Gary Holmlund <[email protected]>
* Fix bug #124, Cannot install works
2017-09-28 Gary Holmlund <[email protected]>
* Fix bug #52, Some greek dictionary modules don't work in magnifier
2017-06-02 Gary Holmlund <[email protected]>
* Fix bug #102, Problem with ctrl-L shortcut
2017-05-31 Gary Holmlund <[email protected]>
* Fix bug #105, Problem with Save - Yes/No dialog and editing a Personal commentary
2017-02-14 Gary Holmlund <[email protected]>
* Fix bug #95, Images don't display
2017-02-09 Gary Holmlund <[email protected]>
* Fix bug #12 Cannot read apocryphal books
2017-02-07 Gary Holmlund <[email protected]>
* Fix bug #37 Bibletime does not display paragraphs correctly
2017-02-02 Gary Holmlund <[email protected]>
* Fix bug #94 Crash when closing module display window with Qt 5.8
2017-01-26 Gary Holmlund <[email protected]>
* bug #92 Qt "More Info..." tab is blank
2017-01-26 Gary Holmlund <[email protected]>
* bug #91 Cannot change to second tab in Tabbed view
2017-01-23 Gary Holmlund <[email protected]>
* bug #90 BibleTime does not start on Windows 7
2016-11-23 Gary Holmlund <[email protected]>
* bug #80 BibleTime does not start on Windows when user name is non latin1 unicode chars
2016-09-02 Gary Holmlund <[email protected]>
* bug #70 Fix crash using bookmarks with Qt 5.7
2016-07-04 Gary Holmlund <[email protected]>
* 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 <[email protected]>
* Released 2.11 RC 1.
2016-04-23 Jaak Ristioja <[email protected]>
* Released 2.11 beta 1.
2016-01-20 Gary Holmlund <[email protected]>
* Implement QWebEngine usage for Qt 5.6
2015-12-24 Gary Holmlund <[email protected]>
* Implemented new bookshelf manager
2015-12-14 Gary Holmlund <[email protected]>
* Fix bug #23 Tiny fonts on Windows
2015-11-15 Jaak Ristioja <[email protected]>
* Require Qt 5 or later
2015-11-14 Jaak Ristioja <[email protected]>
* Require C++11 or later
2015-02-15 Gary Holmlund <[email protected]>
* Fix bug #26 Screen contents do not autoadjust when window size is adjusted
2010-08-21 Martin Gruner <[email protected]>
* Added new Lithuanian language translations. Updated toolchain to work with homebrew on OS X.
2013-12-23 Jaak Ristioja <[email protected]>
* Fixed some bugs in the install progress dialog, removed support for
forced install thread termination which was error-prone.
2013-12-22 Jaak Ristioja <[email protected]>
* Fixed some settings not being properly loaded on startup.
2013-12-18 Jaak Ristioja <[email protected]>
* Released 2.10 RC 1.
2013-12-11 Jaak Ristioja <[email protected]>
* Released 2.10 beta 1.
2013-12-10 Jaak Ristioja <[email protected]>
* Bumped CMake version requirement to 2.8.9.
* Changed source code archive format from .tar.bz2 to .tar.xz.
2013-07-04 Gary Holmlund <[email protected]>
* Fix bug 27, Control Panel version was wrong on Windows
2013-05-19 Gary Holmlund <[email protected]>
* Fix multi-arch path issue in FindCLucene.cmake
2013-03-02 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Added support for HTTP, HTTPS, SFTP transports in BibleTime
2013-01-15 Jaak Ristioja <[email protected]>
* Fixed widget ending up disabled after removing install source.
2012-12-16 Gary Holmlund <[email protected]>
* More Qt5 updates needed by Qt5 rc2 version
2012-11-03 Gary Holmlund <[email protected]>
* Add Find widget at bottom of MDI area
2012-09-10 Gary Holmlund <[email protected]>
* Fix bug 14 - Headers displayed as plain text in some modules
2012-08-25 Gary Holmlund <[email protected]>
* Add support for Qt5
2012-07-18 Gary Holmlund <[email protected]>
* Mag Window uses current module if no default cross reference is set
2012-03-30 Gary Holmlund <[email protected]>
* Fix crash when closing window with tab.
2012-03-10 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fix bug 3483206 where duplicate works menus appear on ubuntu with its Global Menus
2012-02-12 Gary Holmlund <[email protected]>
* Allow comboxboxes on config dialog desk page to resize.
Idea from Timothy Whitehead
2011-12-02 Jaak Ristioja <[email protected]>
* Added Portugese translation by Mário Castanheira.
2011-11-23 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Completely substituted the old profile system with a BtConfig-based one.
2011-11-12 Gary Holmlund <[email protected]>
* 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 <[email protected]>
* Merged the the new configuration based on the work of Patrick Zimmermann.
2011-11-07 Jaak Ristioja <[email protected]>
* Released 2.9 RC 1.
2011-11-02 Jaak Ristioja <[email protected]>
* Fixed a bug with bookshelf items grouping initialization.
2011-10-23 Gregory Hellings <[email protected]>
* Fixed compilation against CLucene 2.
2011-10-05 Jaak Ristioja <[email protected]>
* Released 2.9 beta 2.
2011-09-24 Jaak Ristioja <[email protected]>
* Fixed missing texts in configuration window "Desk" page (2.9-beta1 only).
2011-09-19 Jaak Ristioja <[email protected]>
* Released 2.9 beta 1.
2011-09-18 Gary Holmlund <[email protected]>
* Fix bookshelf manager "install sources" combo to update after
installing the list of sources.
2011-09-02 Jaak Ristioja <[email protected]>
* Made BibleTime display splash screens at "random".
* Added splash screen by Laurent Valentin Jospin.
2011-08-28 Jaak Ristioja <[email protected]>
* Fixed unable to remove works.
2011-08-18 Gary Holmlund <[email protected]>
* Add close buttons to tabbed works windows.
2011-08-07 Gary Holmlund <[email protected]>
* Fix bug 3162615 where titles with unicode chars
* within Bibles did not display correctly.
2011-06-21 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fixed a cosmetic color bug in the font settings preview widget
2011-05-16 Gary Holmlund <[email protected]>
* Fix compile error on Fedora 15.
2011-05-15 Gary Holmlund <[email protected]>
* Fix crash when printing from Works pane of search dialog.
2011-02-28 Patrick Sebastian Zimmermann <[email protected]>
* Fix restoring from fullscreen to a maximized window.
2011-02-07 Gary Holmlund <[email protected]>
* Fixed Personal Commentary. Text could be saved to wrong reference.
2011-02-07 Jaak Ristioja <[email protected]>
* Fixed an assert-crash caused by not catching indexing failures properly.
2011-01-16 Gary Holmlund <[email protected]>
* Fix crash when using Bookshelf Manager with Xiphos source
2011-01-15 Gary Holmlund <[email protected]>
* Add toolbar icons to toggle visibility of docking windows
2011-01-15 Jaak Ristioja <[email protected]>
* Fixed category detection for modules.
2011-01-01 Gary Holmlund <[email protected]>
* Switch off footnotes in display options, feature request 2892157
2010-12-31 Gary Holmlund <[email protected]>
* Bible windows can have parallel commentaries
2010-11-25 Gary Holmlund <[email protected]>
* Fix main window toolbar key changer to save a modified entry in Personal Commentary
2010-11-19 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Temporary workaround for bug 2954856 causing wrong HTML code for headings.
2010-10-31 Gary Holmlund <[email protected]>
* Fix bug in display of footnotes in mag window
2010-10-29 Jaak Ristioja <[email protected]>
* Made the "Remove modules" confirmation dialog a bit prettier.
* Released 2.8 RC 1
2010-10-19 Jaak Ristioja <[email protected]>
* Made BibleTime handle missing default template gracefully.
2010-10-15 Jaak Ristioja <[email protected]>
* Released 2.8 beta
2010-10-04 Jaak Ristioja <[email protected]>
* Enhanced bookshelf manager remove works page.
* Touches to configuration dialogs.
2010-09-25 Gary Holmlund <[email protected]>
* Implemented the Tip Of The Day dialog
2010-09-25 Jaak Ristioja <[email protected]>
* Removed "Close" button from bookshelf manager dialog to save screen space.
* Redesigned and refactored the bookshelf manager install page.
2010-09-16 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Integrated the wonderful BtBookshelfWidget into the install page of the
bookshelf manager.
2010-09-14 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Removed support for configuration migration from KDE3.
2010-08-27 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fix refactoring hang/crash issue introduced 2010-07-20
2010-08-21 Martin Gruner <[email protected]>
* 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 <[email protected]>
* Save the "grouping" setting of the Bookshelf
2010-08-08 Gary Holmlund <[email protected]>
* Fix Windows startup crash
2010-08-07 Jaak Ristioja <[email protected]>
* Fixed a bug that caused some users home directories to be deleted.
2010-07-22 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Enhanced module indexing dialog.
* Fixed a crash when cancelling module indexing when invoked using search.
2010-07-11 Martin Gruner <[email protected]>
* Released 2.7.2
* fix version number
2010-07-06 Martin Gruner <[email protected]>
* Released 2.7.1
2010-06-14 Martin Gruner <[email protected]>
* Tweaked the cmake stuff to generate a valid standalone .dmg image on Mac OS
2010-06-04 Gary Holmlund <[email protected]>
* 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 <[email protected]>
* Add sorting of bookmarks, see bookmark right context menu "Sort folder bookmarks" and "Sort all bookmarks"
2010-05-29 Gary Holmlund <[email protected]>
* Fix crash opening first window in manual arrangement mode.
2010-05-27 Gary Holmlund <[email protected]>
* Add editing of bookmark title, see bookmark right context menu "Edit bookmark"
2010-05-25 Martin Gruner <[email protected]>
* Changed BibleTime to require QT 4.5, but no boost any more.
2010-05-19 Martin Gruner <[email protected]>
* Released 2.7
2010-04-29 Martin Gruner <[email protected]>
* Released 2.7.beta1
2010-04-10 Gary Holmlund <[email protected]>
* Fix bug #2969498 Resize bug in magnification area
2010-03-27 Gary Holmlund <[email protected]>
* 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 <[email protected]>
* Add option to show toolbar on main window instead of text windows
2010-02-24 Martin Gruner <[email protected]>
* Released 2.6
2010-02-22 Martin Gruner <[email protected]>
* Released 2.6.rc2
2010-02-22 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Released 2.6.rc1
2010-02-11 Martin Gruner <[email protected]>
* Released 2.6.beta2 after regression bugfix
2010-02-10 Martin Gruner <[email protected]>
* Released 2.6.beta1
2009-02-06 Martin Gruner <[email protected]>
* Re-added (configurable) removal of orphaned indices, code relocated
2010-02-04 Jaak Ristioja <[email protected]>
* Fixed a bug that some display/filter settings were not applied on startup.
2010-01-26 Martin Gruner <[email protected]>
* Fixed bug 2907136: Bug in red letters (ESV)
2010-01-18 Gary Holmlund <[email protected]>
* Add tabbed window arrangement mode
* Fix problems with manual arrangement mode
2009-12-31 Jaak Ristioja <[email protected]>
* Implemented a menu item and tool button for opening installed works.
2009-12-30 Gary Holmlund <[email protected]>
* Fixed bug ID: 1337338 "lexicon display window accepts illegal keys by drag&drop"
2009-12-22 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Refactored search dialog module chooser dialog.
2009-12-20 Martin Gruner <[email protected]>
* Release 2.5
2009-12-19 Jaak Ristioja <[email protected]>
* Fixed tree nodes checking
2009-12-18 Jaak Ristioja <[email protected]>
* Refactored about dialog
2009-12-09 Martin Gruner <[email protected]>
* Release 2.5.rc1
2009-12-11 Martin Gruner <[email protected]>
* Improved rendering debugging
2009-12-09 Martin Gruner <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Fixed lexicon cache file validation.
2009-11-24 Kang Sun <[email protected]>
* Fixed automatic bookmark saving. Bug ID: 1602826.
2009-11-24 Martin Gruner <[email protected]>
* 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 <[email protected]>
* Changed build system to generate compiled ui catalogs at build time.
2009-11-19 Gary Holmlund
* Fix debug verbosity
2009-11-19 Jaak Ristioja <[email protected]>
* Made the remove page of the bookshelf manager prettier.
2009-11-18 Martin Gruner <[email protected]>
* Release 2.4
2009-11-16 Gary Holmlund
* Fix window redraw errors in manual arrangement mode - ID: 2898356
2009-11-16 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Added first version of TEI -> HTML filter.
BibleTime can now open TEI modules, though rendering has to be improved.
2009-10-13 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fixed nasty bug with incorrect footnote display in combination with
crossReferences in the same verse.
2009-10-10 Martin Gruner <[email protected]>
* 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 <[email protected]>
* Fixed compilation for Qt 4.4
2009-10-09 Martin Gruner <[email protected]>
* Bug-a-thon
* Split CMakeLists.txt into pieces
* Reformat entire codebase with astyle
2009-10-06 Martin Gruner <[email protected]>
* Release 2.3
2009-09-30 Martin Gruner <[email protected]>
* Release 2.3.rc1
2009-09-29 Jaak Ristioja <[email protected]>
* Added a case-insensitive module filter to the bookshelf dock widget.
2009-09-26 Martin Gruner <[email protected]>
* Improved DBus interface for easier detection of BibleTime service
as requested by Teus Benshop.
2009-09-25 Martin Gruner <[email protected]>
* Release 2.3.beta1
2009-09-20 Thomas Abthorpe <[email protected]>
* Link Spanish Howto to the build
2009-09-19 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fixed a nasty bug which prevented non-KJV-verses to be shown in modules with
differing versification systems
2009-09-07 Martin Gruner <[email protected]>
* 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 <[email protected]>
* Fixed bug causing wrong behaviour on verse number click
2009-08-27 Thomas Abthorpe <[email protected]>
* Link Danish Howto to the build
2009-08-26 Martin Gruner <[email protected]>
* Add Patch by Kang Sun to avoid compiler warnings
* Release 2.2
2009-08-19 Martin Gruner <[email protected]>
* Release 2.2.rc1
2009-08-17 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Fixed mouse cursor vanishing problem when using the verse key chooser scroll buttons
2009-08-12 Martin Gruner <[email protected]>
* Release 2.2.beta1
2009-08-09 Jaak Ristioja <[email protected]>
* 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 <[email protected]>
* Release 2.1
2009-07-05 Martin Gruner <[email protected]>
* Release 2.1.rc1
2009-06-28 Martin Gruner <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Release 2.0.1
2009-06-02 Martin Gruner <[email protected]>
* 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 <[email protected]>
* release 2.0
2009-05-20 Martin Gruner <[email protected]>
* 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 <[email protected]>
* release 2.0.beta3, hopefully the last beta
2009-05-11 Martin Gruner <[email protected]>
* Added detection of curl and icu, which is optional, but may be required by Sword for linking
2009-05-08 Martin Gruner <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* release 2.0.beta1
2009-04-21 Martin Gruner <[email protected]>
* 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 <[email protected]>
* release 2.0.alpha3
2009-03-23 Martin Gruner <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* more const modifier fixes in various sources to improve standards conformity
2008-09-12 Martin Gruner <[email protected]>
* 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 <[email protected]>
* 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)