-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathChangeLog
5064 lines (3074 loc) · 148 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
2020-02-02 Greg Hellings <[email protected]>
* Remove NASB unique lexica handling
2019-05-10 Dominique Corbex <[email protected]>
* remove Waf
* remove Debian directory (Not needed anymore: CMake builds debs)
* update Italian translation (thanks to LAfricain)
2018-05-13 Dominique Corbex <[email protected]>
* CMake port
* move Help from Docbook to Mallard
2018-04-18 karl <[email protected]>
* 4.1.0 release.
hereafter, see "git log" for update progress.
2017-09-24 karl <[email protected]>
* 4.0.7 release.
2017-09-11 karl <[email protected]>
* #822 prefs option not to use alternating fg/bg in parallel displays.
* update appdata to get screenshots from github, not sourceforge.
* add -Wl,-z,muldefs to stop failures from recent dbus braindamage.
2017-09-03 karl <[email protected]>
* #524 fix use of fonts whose names end in digits.
(ex. Goudy Bookletter 1911.)
* #788 use saved status of detached sidebar.
* #739 click verse text before/after to cross chapters.
* #725 offer book/chapter-outlined journal.
2017-08-23 karl <[email protected]>
* #821 update ubuntu installation instructions.
* update french and trad.chinese translations.
* tweak TODO to ref github wiki.
2017-08-21 karl <[email protected]>
* #791 add full-screen of current bible on F11.
* make glosses default on.
2017-08-20 karl <[email protected]>
* added MinimumVersion support:
ignore modules that require support newer than Sword itself.
2017-08-20 karl <[email protected]>
* added -fno-delete-null-pointer-checks to stop stupid crash.
somebody please tell the gnu people that this is just plain wrong.
* 4.0.6a release, Windows only.
2017-08-10 karl <[email protected]>
* 4.0.6 release.
2017-08-10 karl <[email protected]>
* correct signal connect ordering so initial move works.
* fix #812 replace gtk_widget_set_size_request() with
gtk_window_set_default_size() because some freaks
want to build/run xiphos on truly midget screens (pocketCHIP).
2017-08-09 karl <[email protected]>
* remove HAVE_GTK_xxx in favor of GTK_CHECK_VERSION (thx @yetist).
* remove gtk version checks from wscript.
* French translation updates (domcox).
* fix webkit2 mis-display (thx @yetist).
* preserve biblesync passphrase properly.
2017-06-04 karl <[email protected]>
* fix return for wk2 search.
2017-06-25 karl <[email protected]>
* add Alt-L toggle lemma.
2017-05-25 Peter von Kaehne <[email protected]>
* remove all ImageMagick references.
2017-04-30 karl <[email protected]>
* add View Xiphos Releases to Help menu.
2017-04-28 Dominique Corbex <[email protected]>
* add Italian translation.
2017-04-23 karl <[email protected]>
* 4.0.5 release.
2017-04-23 karl <[email protected]>
* update win32 packaging.
* fix lack of collator in mod.mgr on first run.
* restore proper formatting of code in biblesync glue.
2017-02-06 karl <[email protected]>
* readaloud: speak verse# per showversenum (audible matches visible).
2016-08-25 karl <[email protected]>
* add Alt-T toggle transliteration.
2016-03-02 karl <[email protected]>
* add pixmaps/screenshots directory, using images from sourceforge.
* fix #749: annotation dialog tooltips.
2016-02-15 karl <[email protected]>
* move to github: import source, add .gitignore & others, change
some text files to *.md names, update refs sourceforge->github.
* delint a warning in parallel_view.cc.
* add language abbrevs from IBT modules.
* disable "match case" in searches when in clucene mode.
2016-01-13 karl <[email protected]>
* change module lang sort from strcmp/strcoll to ICU ucol_strcollUTF8.
2015-08-30 karl <[email protected]>
* 4.0.4 release.
2015-08-17 karl <[email protected]>
* change language_set to grow dynamically, no limit.
* improve abbrev support: use abbrev in parallel page, parallel
dialog/tab, main window non-Bible (comm/book/dict), bookmarks.
* fixed module installation messages' display, so they're not lost.
* update language abbreviations to eliminate more unknowns.
* added gtk3 maximization detection.
2015-08-06 karl <[email protected]>
* survivability fix: increase LANGSET_COUNT to 2000 (eBible repo).
* updated French translation.
* added Korean translation.
* 4.0.3 release.
2015-06-15 karl <[email protected]>
* fixed detached parallel "close" button visual overreach.
* updated Slovenian translation (marjan savli).
* add toolkit identifications to "about xiphos."
* generic, all-purpose makeDistro.sh; deleted makeDistro3.sh.
2015-04-15 karl <[email protected]>
* emergency fix mem alloc error in editor.
* 4.0.2 release.
2015-03-29 karl <[email protected]>
* 4.0.1 release.
2015-02-20 karl <[email protected]>
* consequent to use of cppcheck, made many updates for efficiency,
scope reduction, and waste elimination.
cppcheck complains about many functions "never used," but this
is generally false, they are simply callbacks in gtkbuilder files.
2015-02-02 karl <[email protected]>
* feat.req#204: merged webkit2 (webkit2gtk-4.0) changes.
2015-01-24 karl <[email protected]>
* bug#524: immediate cause fixed long ago, but uncovered a
different bug in url.cc: no verse list for non-bible module.
2014-12-26 karl <[email protected]>
* added support for Abbreviation conf directive:
module lists, parallel list, tab headings.
* added deletion of obsolete modules when installing what supercedes.
* added scanned deletion of obsolete modules on demand (i.e. audit).
* added OSISGlosses module support.
* additions to "about modules" display.
* added OSISMorphSegmentation module support.
2014-12-24 karl <[email protected]>
* 4.0.0 release.
2014-12-16 karl <[email protected]>
* fixed gtk3 prefs->parallel->module selector geometry & filling.
* fixed gtk3.14 failure to display prefs (gtk3 blows chunks).
* added Free{Sans,Serif} fonts to the win32 installer.
* gtkhtml: its very last vestiges are truly gone, gone, gone.
* av11n: navbar blanked for unavailable content.
* av11n: unavailable content in module pane results in
"This module has no content at this point."
* av11n: re-worked navbar filling, now takes all books offered by
sword, no conditional on whether 1:1 content exists.
* fixed "dump personal commentary" replacing "." with "..+".
* avoided NTFS glitch by not making settings backup file.
* fixed mod.mgr button bobble on expand/collapse of module tree
using a timer to reject too-soon calls (esp 1st-time user).
* add --chatty configure flag to enable GS_* trace printfs.
* changed all GS_* print macros to XI_*.
* countless accommodations to gtk3.14 peculiarities.
* fixed crash caused by null ptr in redisplay_to_realign().
* unavailable content in 1-verse parallel: "no content" message.
* save main window internal geometry on quit.
* added support for OSISXlit and OSISEnum.
* change default to on: grk accents, heb vowel points & cantillation.
2014-12-06 karl <[email protected]>
* feat.req#133 + bug#508: alternate versification.
=> creating test version 3.9.x for public review.
2014-12-05 karl <[email protected]>
* bug#513: avoid "set insensitive" on "X" of tab being destroyed.
2014-12-04 karl <[email protected]>
* put Feature=NoParagraphs to use.
2014-12-03 karl <[email protected]>
* preserve the old CipherKey string when updating a module.
2014-11-29 karl <[email protected]>
* feat.req#93: add default CSS for all displays.
caveat emptor. mis-use by the user will not be our fault.
2014-11-28 karl <[email protected]>
* add xiphos.appdata.xml for the sake of advertising.
* feat.req#110+111: manual updates.
2014-10-30 karl <[email protected]>
* update CSS to find AbsoluteDataPath and include CSS by reference.
* add verse list load from history.
2014-10-28 karl <[email protected]>
* clean up defunct bits in settings.h.
* module-specific CSS support, using conf directive
"PreferredCSSXHTML=style.css", naming a file in DataPath dir.
2014-10-26 karl <[email protected]>
* biblesync 1.1.0 interface: speakerkey is now a 1st-class param.
* add history pre-load from verse list.
2014-08-24 karl <[email protected]>
* 3.2.2 release.
2014-08-24 karl <[email protected]>
* (re-)add gui_generic_warning_modal() for wait-for-input warnings.
* some additional GTK3 de-lint.
2014-08-15 terry <[email protected]>
* adjusted initial size settings, don't cut off sidebar.
2014-08-09 terry <[email protected]>
* gtk3 de-lint.
2014-06-09 karl <[email protected]>
* fix f20 linty whine about printf-style args.
* de-clutter biblesync prefs page.
* statusbar feedback on BSP nav.
* statusbar feedback for alt-[SRM].
* remove doubled win32 name for BSP sender.
2014-06-06 karl <[email protected]>
* 3.2.1 release.
2014-06-04 karl <[email protected]>
* Fixed a lot of other BSP stuff over the last couple weeks, added
many features, uses new, separate prefs page, extricated into
independent library.
* Fixed long-standing (decade-plus?) error in inconsistent use of
option name "Cross-references". Wow.
2014-05-07 karl <[email protected]>
* Fix network failure scheme: Reset mode properly, tell user.
* Add ctrl-alt-shift-{O,P,S,A} to engage BibleSync:
off, personal, speaker, audience.
2014-05-05 karl <[email protected]>
* 3.2.0 release.
2014-04-28 karl <[email protected]>
* added initial BibleSync implementation.
2014-04-19 karl <[email protected]>
* generalize companion in .conf: Companion=This,That,TheOther.
arbitrary number of companions. the 1st opens in main window,
any others in detached windows. requested in 2008 by Wycliffe,
to support "fast" (per verse) and "slow" (broad sectional)
commentaries.
2014-04-15 karl <[email protected]>
* small formatting cleanup in settings.c.
* removed user permission query for gconf handlers (bug 507).
* removed middle-click on bookmark (bug 509).
* unconditionalized chdir(sword_path) from DEBUG (bug 510).
2014-04-14 karl <[email protected]>
* fix bad passage export structure failure-to-init and data bleed.
2014-04-10 karl <[email protected]>
* added crash-avoidance test for null list in display_verse_list.
2014-04-03 karl <[email protected]>
* added Alt-R for Red Words as well.
2014-03-01 karl <[email protected]>
* added Alt-S/Alt-M kbd shortcuts for Strong's/morphology toggle.
2014-01-12 karl <[email protected]>
* 3.1.6 release.
2014-01-12 karl <[email protected]>
* copyright update.
* deleted farsi *.chm.
2013-11-02 karl <[email protected]>
* fix "Display" -> "display" typo necessities for bible dialogs.
* correct export passage off-by-one chapter when including last verse.
2013-07-29 karl <[email protected]>
* updates for far-too-late-in-the-game updates to renderText() etc.
2013-04-05 terry <[email protected]>
* added webkit editor for studypad - requires gtk+3.0
2013-04-05 terry <[email protected]>
* added two buttons to the export dialog
<Refernce Last>
<Include Version>
* added file to store export dialog prefs and format
strings. .xiphos/export_copy.xml
2013-01-27 karl <[email protected]>
* update gtk2/gtk3 changes to avoid excess #if use.
2013-01-25 greg <[email protected]>
* Fixed many of the GTK3 deprecation warnings.
Table->grid and color->rgba conversions are still needed.
2013-01-25 greg <[email protected]>
* Removed SWORD deprecated method warnings.
2013-01-08 greg <[email protected]>
* Add support for the brand new SFTP functionality in SWORD's SVN.
2012-12-15 karl <[email protected]>
* delete dead/historic/useless KJV "¶" (¶) handling.
2012-11-03 karl <[email protected]>
* add dbus-daemon spawn for win32 (incomplete).
* change IRC nick startup to use version+OS.
* fix broken ubuntu gtk2 build by avoiding outdated gecko refs
and making sure webkit definitions remain (python indent sucks).
2012-10-07 karl <[email protected]>
* add use of getRenderHeader() so that we get prototype XHTML style.
2012-10-05 karl <[email protected]>
* strip out some more problematic unicode punctuation for Read Aloud.
2012-09-30 karl <[email protected]>
* code simplification: remove gtkhtml3, once and for all.
we have committed to XHTML filters in Sword. those filters
depend on <span>, which means that the gtkhtml3 backend is no
longer an option. the world must catch up and deploy webkit.
2012-09-29 karl <[email protected]>
* add "friendly" (month name) display in dict window for devotional.
* remove last of NO_SWORD_SET_RENDER_NOTE_NUMBERS from display.cc.
2012-09-26 karl <[email protected]>
* add save/restore of prefs, adv.search, and mod.mgr.
2012-09-23 karl <[email protected]>
* convert from HTMLHREF to XHTML filter sets.
2012-09-18 karl <[email protected]>
* added Greg's patch for HTTP & HTTPS install sources.
2012-08-20 karl <[email protected]>
* fix #3522395 chdir(sword-path) to stop inadvertent strrchr() use.
2012-08-22 karl <[email protected]>
* bind Alt-A to annotate verse, analogous to Alt-B for bookmark verse.
* change daily devotional date display to "friendly" (i.e. month name).
* adv.search: move "optimized" selection to top.
2012-08-20 karl <[email protected]>
* add <sup>strongs/morph</sup> giving smaller, less obtrusive font.
2012-08-15 karl <[email protected]>
* remove "old bookmarks"/"gnode" (dead) code.
2012-08-11 karl <[email protected]>
* add ability to open pers.comm and journals in non-editor windows.
2012-03-18 karl <[email protected]>
* add OSISVariants support.
2012-02-19 karl <[email protected]>
* 3.1.5 release.
2012-02-18 karl <[email protected]>
* remove wscript's svn version. temp-hack makeDistro.sh configuration.
* add code to handle *XHTML filters, and to restore post-process n=X
if Sword has not been updated.
2012-02-14 karl <[email protected]>
* big code simplification to avoid overuse of #ifdef USE_GTKBUILDER.
(UI_GET_ITEM & UI_SUFFIX in src/gui/utilities.h.)
* add per-module option so user can choose setRenderNoteNumbers().
2012-02-09 karl <[email protected]>
* fix a bunch of USE_GTKMOZEMBED -vs- USE_XIPHOS_HTML glitches.
* use setRenderNoteNumbers() from recent Sword update.
2012-02-06 karl <[email protected]>
* put "general" prefs at top of dialog.
* correct "Open" (was "Save As") in slib-editor.
2012-02-05 karl <[email protected]>
* correct horrific excess RenderText() usage during footnote naming.
2012-01-30 karl <[email protected]>
* put module name inside font spec of 1-verse Parallel View display.
* be much (yet trivially) smarter about saved x/y coordinates.
2012-01-15 karl <[email protected]>
* integrated mwtalbert's WIN32 image patch with modifications,
including disabling WIN32 users' access to resize preference.
2012-01-12 karl <[email protected]>
* patch around new webkit WIN32 lack of "file:" in <img src="...">.
* fix verse-per-line display glitch in webkit.
* substitute GTK_STOCK_ADD for image name, because that image
seems not to exist in all GTK installations.
2012-01-10 karl <[email protected]>
* missing verse anchor + current verse <hr> to commentary by chapter.
2011-12-19 karl <[email protected]>
* added Ctrl-[1-9] to select Nth tab.
* lengthened history from 25 to 40.
* apply proper font specs to adv.search display.
* vastly simplified font size references (one calculation, many refs).
* alter bible context boundary: vv.1,2 anchored at chapter beginning.
* eliminate context boundary when base font size is large.
* only bible texts get green current verse in full-chapter parallel.
2011-12-12 karl <[email protected]>
* Mark__T's splash fixes.
2011-11-26 karl <[email protected]>
* apply proper font to modules' About boxes, to correct for
different X servers' (e.g. "non-free" nVidia's) very peculiar
choices for default font interpretation.
* also for Previewer re-init during fore/background switch.
2011-11-19 karl <[email protected]>
* Mark__T's gtk pre-2.20 compatibility patch.
2011-10-20 karl <[email protected]>
* Mark__T's changes for tab "new" and "close" buttons.
2011-10-13 karl <[email protected]>
* fixed erroneous comm -vs- book display during font size change.
2011-10-02 karl <[email protected]>
* added (in|ex)clusion option for verse#s in copy/export.
2011-09-24 terry <[email protected]>
* Added scroll bars to adv search previewer for webkit build
2011-09-24 karl <[email protected]>
* darker green current verse.
* re-arrange prefs->options display order.
* feat.req #3168708 more tweaks to export format, mostly single-verse.
* add Ctrl-0 to force base font size to 0.
* make footnotes, xrefs, and headings default to On.
2011-09-24 terry <[email protected]>
* customization improvement: single line of verse# selectors.
2011-09-20 karl <[email protected]>
* fix #3411260 add gconf to wscript for explicit detection.
* tidy up passage export whitespace formatting; correct an html error.
* fix #3384710 bad sidebar search implicit AND construction.
* fix #3400041 correct startup previewer show-or-not.
* feat.req #3210164 verse number display customization.
2011-09-02 karl <[email protected]>
* avoid crash due to deleted module ref in <parallels> list.
* update export: re-work a lot of options stuff; eliminate dialog
sensitivity; make license query dialog happen once with
permanent modops memory so we never ask again.
2011-08-14 karl <[email protected]>
* do away with 1-verse context in full-chapter parallel window.
2011-08-03 karl <[email protected]>
* pass parallel texts and previewer through AnalyzeForImageSize.
* avoid "widowed" verse numbers by forcing connection to 1st word with .
2011-07-09 karl <[email protected]>
* several RtoL fixes: HTML_START and comm-by-chapter verse output order.
2011-06-30 terry <[email protected]>
* fixed studypad to honor 'settings.studypaddir'
2011-06-29 karl <[email protected]>
* resurrect functioning bookmark xml functions.
* eliminate dead "removed bookmarks" code.
* copyright update.
* tidy up "about xiphos" window.
* add content flush right after startup to avoid webkit black flash.
2011-06-27 Terry Biggs <[email protected]>
* add gtkbuilder files to install.
* resurrect gtkhtml3.
* fix #3166491 now able to open studypad, pers.comm., and journal.
* Fedora15 compatibility (warnings elimination).
2011-06-25 karl <[email protected]>
* add base font respect to parallel view tab and detached parallel window.
* silence a few warnings.
* fix #3302253 update manual, re: parallel view tab configuration.
* use correct highlight for found words in webkit.
* fix black adv.search results.
* dispose of as much "gdk font" stuff as possible.
* correct font selection order: module pref, language pref, conf pref.
* adjust macro readability in xiphos-html.h.
* stop black flash on tab change.
* ignore button-2 in webkit.
2011-06-20 Terry Biggs <[email protected]>
* fixed the double display in the chapter displays
* added scrollbars to webkit in the following files:
* src/gnome2/about_modules.c (gui_create_about_modules):
* src/gnome2/bibletext_dialog.c (gui_create_bibletext_dialog):
* src/gnome2/commentary_dialog.c (gui_create_commentary_dialog):
* src/gnome2/dictlex_dialog.c (gui_create_dictlex_dialog):
* src/gnome2/gbs_dialog.c (gui_create_gbs_dialog):
* committed work on gtkbuilder and webkit done by
Greg and Terry
2011-05-15 karl <[email protected]>
* fix #3302627 undo module cache damage to pers.comm. update.
2011-04-06 terry <[email protected]>
* EDIT: fix -> work on :)
* fix link handling - webkit
* fix popup menus - webkit
* fix printing - webkit
2010-11-06 karl <[email protected]>
* fix handling of real n="X" content for notes/xrefs.
2010-10-15 karl <[email protected]>
* 3.1.4 release.
2010-10-14 karl <[email protected]>
* commentary verse#s.
2010-10-03 karl <[email protected]>
* fix #3077109 sidebar search crash when no commentary available.
* fix #3077178 Crash on shutdown when paratab selected
* fix #3077179,3077180,3077181 stop empty module crashes
2010-08-21 karl <[email protected]>
* correct longstanding misspelling s/hight/height/g throughout.
includes some minor fallback for finding settings via old names.
2010-08-20 karl <[email protected]>
* restore detached parallel window existence+placement+geometry.
* make Strong's lemma:Gxyz references get highlighted in preview.
* provide for non-verse list key references in PL/J linkages.
2010-08-17 karl <[email protected]>
* move ReadAloud, resizing logic, and related functions to
src/gnome2/utilities.c.
2010-08-14 karl <[email protected]>
* be less sensitive about NASB for Heb/Grk lexicon choice ("NASBnew").
* fix string free bug in header note caching.
* clean up previewer.cc: use of HtmlOutput, restructure, fix comments.
* add Preferences color pair inversion, main/highlight text.
* more & better tooltips in Preferences.
2010-08-10 karl <[email protected]>
* keep note/xref count accurate => engine always generates headings.
displaying them is a later decision in display.cc.
2010-08-04 karl <[email protected]>
* fix 2 heinous "interrupted search" bugs in adv.search.
* reformat an ugly multi-?: conditional for readability.
* set optimized/lucene search as default.
2010-08-03 karl <[email protected]>
* add counting of footnote *n markers.
* for mozembed, replace <table> with <span> for verse highlight.
2010-07-27 karl <[email protected]>
* fix #3022383 mod.mgr crash by creating 2nd iterator/end pair.
* fix #3027370 check for regular file type in file discovery.
* fix #3022385 add debug assist for can't-happen display_mod null.
2010-06-01 karl <[email protected]>
* add Cult/Unorthodox category to modlists.
* also Glossaries, to separate them from the rest of the dictionaries.
2010-05-31 karl <[email protected]>
* add intro dialogs for lucene and attribute choices in Adv.Search.
2010-05-30 karl <[email protected]>
* fix #2849660 prevent crash by insisting on minimum pane sizes.
2010-05-27 karl <[email protected]>
* fix #2997121 xulrunner failure to jump to anchor.
2010-05-20 karl <[email protected]>
* create option for bible xrefs to use verse list or previewer.
2010-05-16 karl <[email protected]>
* make <img> work in gtkhtml3 parallel windows by connecting
"url_requested" signal.
2010-05-13 karl <[email protected]>
* generalize bookmark import (default still bibletime).
2010-05-07 karl <[email protected]>
* make newly-installed modules able to be indexed immediately.
2010-04-30 karl <[email protected]>
* make File menu New PL/J item sensitive to PL/J enable.
2010-04-19 karl <[email protected]>
* add prefs item: highlight user annotations, when marking *u?
2010-04-17 karl <[email protected]>
* add auto-unlock offer on locked module with no key.
* revamp a bunch of code consequent to this.
2010-04-12 karl <[email protected]>
* feat.req #2928849 support arbitrary # of parallel texts.
2010-04-08 karl <[email protected]>
* feat.req #1994953 Fine tune display settings - make doublespace
a per-module option, and step down previewer font size 1 notch.
* move Verse Per Line from main menu and prefs to context menu only.
2010-04-05 karl <[email protected]>
* made mod.mgr intro viewable on demand. also mod.mgr hotkeys.
* feat.req #2717893 item 1, add "new PL/J" menu to main File menu.
2010-04-03 karl <[email protected]>
* implemented usage side of per-language preferred font.
* implemented font picker for per-language preference.
* improved special locale selector so multis work (pt_PT + pt_BR).
2010-04-01 karl <[email protected]>
* removed all #ifdef SWORD_MULTIVERSE.
2010-03-26 karl <[email protected]>
* fix #2977026 Search export to html should set content type to UTF-8.
2010-03-24 karl <[email protected]>
* fix #2889661 replace keycode interpretation with keysyms.
* feat.req #2873363 Shortcut/hotkey for simple/sidebar searches.
* feat.req #2582195 start xiphos with a particular tabs file.
* invert defaults: paragraph style and previewer in sidebar.
2010-03-22 karl <[email protected]>
* 3.1.3 release.
2009-03-16 karl <[email protected]>
* feat.req #2791621 change tooltip on sync button for clearer meaning.
2009-03-15 karl <[email protected]>
* fix #2936311 provide direct sword:// as well as via verse list.
2009-03-14 karl <[email protected]>
* fix #2918463 xiphos crash due to zero-length settings: recreate.
* fix #2941684 correct read-aloud sense of smallcaps "LORD" (& "GOD").
2009-03-13 karl <[email protected]>
* introduce sync_windows() and stop_window_sync flag as a fix to
the problem of universal sync not working.
2009-03-12 karl <[email protected]>
* add #name capability for footnote-specific navigation
(e.g. sword://NETnote/Gen1:2#n13).
2010-01-02 matthew <[email protected]>
* make copy to clipboard smart for html
2010-01-02 dima <[email protected]>
* lots of waf fixes
2009-12-28 karl <[email protected]>
* fix #2922262 update dict pane when base font changes.
2009-12-24 karl <[email protected]>
* 3.1.2 release.
* updates to src/gnome2/Makefile.am: distribution tarball sanity.
2009-12-19 karl <[email protected]>
* change freenode webchat to use $USER (g_get_user_name()).
2009-12-14 karl <[email protected]>
* preferences locale list: display language names, not xx_YY.
* fixed <div align=(right|left)> problem.
2009-12-14 simon<[email protected]>
* fixed tab bug -- closing tab B focused tab A, but cur_passage_tab
got set to tab C!
2009-12-04 simon<[email protected]>
* fixed window title bug -- changing modules in the sidebar treeview
updated window title to _previous_ module, because
gui_change_window_title used tab settings prior to update
2009-12-04 matthew<[email protected]>
simon<[email protected]>
* new book icons for module list to better match colors
* improved rendering for icons
* rtol icons for module lists
2009-12-04 matthew<[email protected]>
* de-gnome menus and as many other functions as possible
* add option to waf to build without gnome
2009-12-02 matthew<[email protected]>
* removed display_mgr from backend
* delay starting search backend
2009-11-28 matthew<[email protected]>
* added code to use libgsf to archive files
* small improvements to Windows file finding
* module manager optimizations
2009-11-18 terry <[email protected]>
*added search results and verse lists to exporter
2009-11-12 karl <[email protected]>
* improve search word color marking slightly, so that wildcard-
matched roots get colored.
2009-11-10 terry <[email protected]>
* add bookmark exporter.
2009-11-04 karl <[email protected]>
* Ensure mod.mgr always has a proper icon.
2009-10-27 karl <[email protected]>
* Resurrect verse number color selector in preferences.
Also removed some defunct enums, unused for years.
2009-09-30 karl <[email protected]>
* add gui_init() calls to settings_init() to ensure that gnome/gtk
are ready if we should need any dialogs.
* add static status variable to gui_init() so it happens just once.
2009-09-21 matthew<[email protected]>
* change Windows to use ShellExecuteW instead of gnome_show_url
* new function xiphos_open_default to open anything on any platform
* change help menu to point to new location for chm files on Windows
* added linkbutton hook so that linkbuttons (in about dialogs) would
work on Windows
2009-09-21 karl <[email protected]>
* move gconf_setup() to gui_init() where it belongs.
2009-09-12 karl <[email protected]>
* feat.req #2813476 Interface localization (prefs->options)
2009-09-06 karl <[email protected]>
* correct re-appearing remote ftp source for delete-then-load-standard.
* fix #2825898 Search triggers show-up of markers in Preview
(by accurately detecting within/without html constructs).
* consequently removed <a></a> elimination code as well.
* corrected gtk store error for prayerlist (lacking -1 terminator).
* avoid widget destroy whine for null widget.
* fix #2813891 lose comm name from tab when un-Viewed.
* address #2798255 with a manual update.
* also mention Load Standard button for module manager.
* fix #2797805 added a word: Show/Hide _Attached_ Sidebar.
* feat.req.#2190241 add Enter key support for bookmarks,
annotations, mod.mgr remote sources.
* feat.req #2797789 Open pane for activated resource (sidebar.cc)
2009-09-05 karl <[email protected]>
* 2nd shot at CrossWire as default remote repo, requiring rather a
lot of other code re-factoring due to the interdependence of the
1st-time user's mod.mgr vis-a-vis existence of settings.xml data.
2009-09-03 karl <[email protected]>
* add intro dialog box to first-time mod.mgr usage.
* re-work the entire locale-setting mechanism.
* force CrossWire as default remote repo after load-standard.
2009-09-01 karl <[email protected]>
* fix #2841441 per verse annotation - localized reference
* implied a bunch of other stuff:
- convert <markedverses> to <osisrefmarkedverses> on init.
- move locale init inside backend ctor.
- localize *u refs for previewer, per bug report.
- parse in osisref form.
- dispose of bogus ".xiphos-2.0" dir rename (historic from
very old .gnomesword-2.0 needs).
2009-08-31 karl <[email protected]>
* remove devotionals from "lookup selection" menus.
* correct null key pointer in sword.cc debug message.
2009-08-21 karl <[email protected]>
* ensure a bit of whitespace between strong's elements when
they repeat. they can get bunched up on top of each other
too easily.
* fix another blocking nightmare: some modules (ABP) contain
bogus sequences like <seg><hi><seg><hi>word</hi></seg></hi></seg>.
this results in doubling, <i><i>word</i></i>. the block
renderer gets unhappy when it mis-analyzes termination by
finding the inner </i> as though it were the termination of
the outer <i>. so if we find we have an internal set of
<i></i>, we simply wipe them to spaces, and try again.
ugh.
* apply patch by andrew anderson, to respect showversenum in the
passage exporter. some additional mods beyond his basic patch.
2009-08-20 matthew <[email protected]>
* fix #2825281 Sidebar/Regular Expression search: not finding all matches
2009-08-17 karl <[email protected]>
* change main window title per actually-displayed modules.
(echoes tab module choice; borrows same code.)