[bt-devel] Release of BibleTime 0.25 ?

Joachim Ansorg bt-devel@crosswire.org
Sat, 30 Sep 2000 14:18:19 +0000


Hi Troy!

> Got it!!!  Wooo hooo!  Thanks for the hint Joachim.  My KDEDIR was still
> /usr instead of /usr/lib/kde2 (where redhat puts the kde2 preview).

> Hey, your stuff looks cool, but I can't figure it all out.  How do you
> open 2 presenters at the same time?  How do you time windows?  The only
> button on the toolbar I have it the printer, should I have more?

Yes, you should have more toolbar buttons.
I found out that the core dump and the missing buttons are probably cased by 
wrong permissions.
Do a "chmod a+r+X /usr/lib/kde2/" or change the permissions in a way so you 
can read all files logged in as non-root.
Then remove BibleTimes config files in your home directory.
if you use $KDEHOME to have different directories for KDE1 and KDE2 do:
	rm -R $KDEHOME/share/apps/bibletime/
otherwise do this:
	rm -R $HOME/.kde/share/apps/bibletime/
	

Please make sure you did a "make install" in the source directory of 
BibleTime and that you do no use the --prefix option of configure.
You can edit the toolbar with the entry in the options menu.

Presenters are created by left clicking on the modules in the tree (the
groupmanager).
If the module isn't already opened in a presenter a new one will be created.
Or: Choose "New presenter" in the RMB menu in the groupmanager.
Hint: Read the handbook of 0.3.

> Had to comment out a few lines to get things compiled and running (see
> end of message).  One thing caused a compiler error and the other caused
> a core dump.

Which compiler, which BibleTime and which Qt/KDE do you use?
Are you sure you are using latest CVS?
Do a cvs update.

> Anyway, I have KJV, WEB, and BBE texts installed.  I did a search of all
> three modules (at the same time, cool!) and they seem to all go from
> 0-100 (or near there), but I'm judging by your output that I see in the
> shell from where I executed bibletime.

For example the problem does occur in the follwoing situation:
	-a bible module
	-_no_ search index
	-multiple words
	-case insensitive 
While searching you can watch the progress bars and the terminal.

> Let me know how to make it break and I'll look into it!  I'm going to go
> play with your new stuff now!
>
> 		:)
>
> 			-Troy.
>
>
> Index: bibletime/ktextedit.cpp
> ===================================================================
> RCS file: /cvs/bibletime/bibletime-2/bibletime/ktextedit.cpp,v
> retrieving revision 1.4
> diff -u -r1.4 ktextedit.cpp
> --- bibletime/ktextedit.cpp   2000/09/26 22:07:45 1.4
> +++ bibletime/ktextedit.cpp   2000/09/30 03:08:16
> @@ -1543,7 +1543,8 @@
>
>  bool KTextEdit::event( QEvent * e )
>  {
> -    if ( e->type() == QEvent::AccelOverride ) {
> +//    if ( e->type() == QEvent::AccelOverride ) {
> +    if ( false ) {
>          QKeyEvent* ke = (QKeyEvent*) e;
>          switch ( ke->key() ) {
>          case Key_Home:
> Index: bibletime/main.cpp
> ===================================================================
> RCS file: /cvs/bibletime/bibletime-2/bibletime/main.cpp,v
> retrieving revision 1.58
> diff -u -r1.58 main.cpp
> --- bibletime/main.cpp   2000/09/29 15:26:18 1.58
> +++ bibletime/main.cpp   2000/09/30 03:08:16
> @@ -117,7 +117,7 @@
>           { //The tip of the day
>                KConfigGroupSaver groupSaver(config, "Daily tip");
>                if (config->readBoolEntry("TipsOnStart", true)) {
> -                   bibletime->slotHelpTipOfDay();
> +                   //bibletime->slotHelpTipOfDay();
>                }
>           }