openBibleViewer

Education Apps

Source i (link to git-repo or to original if based on someone elses unmodified work):

Add the source-code for this project on opencode.net

4
Become a Fan
6.1

Available as/for:
Description:
openBibleViewer is a bible study tool.

Features:
* reading ZenfaniaXML-Modules
* over 180 ZenfaniaXML-Modules available via the Moduledownloader
* reading BibleQuote-Modules
* over 200 BibleQuote-Modules available
* reading TheWord-Modules
* Search
* Sessions
* MDI-Interface
* Notes
* Marks
* Bookmarks
* Printing
* Export as Plain-Text and as Html
* Portable

Important: It could be that the newest version of openBibleViewer is not available for your distribution because openBibleViewer requires Qt 4.6.

Ratings & Comments

24 Comments

alvanx

Care to provide a package for Ubuntu 12.10? Thanks a lot! :-)

symbianflo

forgot to mention clucene2 it is allready on mdv official media it's no need to rebuild it for mandriva +1 from me, thx m8

symbianflo

I've made a build fron your src.rpm for Mandriva 2011.0 x86_64 Available on MRB. http://mrb.mandrivausers.ro/index.php?search_for=openBibleViewer&search_submit=Search

metaxy

Thank you. I cannot build the x86_64 package because OBS has some problems with it( http://forums.opensuse.org/english/other-forums/development/open-build-service-obs/466751-mandriva-2011-build-error.html).

symbianflo

sorry I do not have time enough to search all your build that fails on mdv , I'm packager for MRB (Mandriva Romania Backports) if you need something just ask it . Or post me the openbible error ( link) As I wrote you above , clucene2 libs are available on mdv medias it's no need to import them again.

metaxy

I meant that the reason why i cannot provide a package for mandriva using the opensuse build service is that opensuse build sevice seems to be broken concerning mandrivia 64bit. So i am thankfull for your package.

symbianflo

:D no way ...We must thank you for sharing with us your work ...great work, BTW, Ok I can maintain openbibleviewer for mandriva , if you want it just tell me . Or you can add my media for mandriva in the download section. I'll fix the ix86 package to, according to rpmlint.

symbianflo

oops sorry , I've saw it too late... Thx

symbianflo

[code]1 packages and 0 specfiles checked; 0 errors, 4 warnings.[code] The i686 rpm package also in upload on MRB

TheBassMan

I'm confused. I downloaded the most recent version, which is 7.0. First I installed the debian package, but when I opened openBibleViewer and checked the version, it shows version 6. So I downloaded the source version (7.0) and extracted it. It was auto extracted into a 6.0 subdirectory and the contents appear to be version 6.0. What's up?

metaxy

There was a problem building openBibleViewer 0.7 on Debian 6.0, so there was still only version 0.6 available. But it's fixed now. Also the source code is here: https://github.com/metaxy/openBibleViewer/tarball/0.7.0

TheBassMan

Thanks. I downloaded the source from the link you supplied, and version 7 installed without a hitch.

alvanx

0.6 looks very promising. If 0.7 comes with SWORD support (as indicated in the changelog on git), that will be great! One question: How can I install TheWord modules, in particular on Linux? The module installer only helps to install Zefania XMl texts. Small request, but how about an openSUSE 12.1 repo? Thanks and good work! :-)

metaxy

Jes, 0.7 will come with SWORD support, but you have it enable it on your own. Before compiling you have to enable it with cmake -DOBV_SWORD_SUPPORT=True .. Or use ccmake and change OBV_SWORD_SUPPORT to True. To add a TheWord module go Settings->Module->Add File and select the .ont or .ot or .nt file of the Module. It will be added to the list of modules. If you downloaded some modules from TheWord website, you have to install them. I encourage you to use the lastes version of openBibleViewer e.g the master branch or from here <http://download.opensuse.org/repositories/home:/metaxy:/unstable/> because there are some bug fixes for TheWord. I hope to release 0.7 before the end of the jear.

alvanx

Hi, Nice and simple, appealing app! It works pretty well considering its young age, but there is still a ways to go until it reaches feature parity with BibleTime (this is not to say you can't get there). But I especially like the modular interface. Also, it is the only Zefania App that I know that directly downloads modules. I was wondering if you had any specific plans in terms of the direction of the development. Are there by any chance plans to support SWORD at some point? I realize Zefania XMl is probably easier to support, but SWORD would just be one more step (and many of the Zefania modules don't work)... Also, I was wondering what kind of app BibleQuote is, and where I can get modules for that. Thanks! You are doing a good job! Alvanx

metaxy

Thanks for the good comment. Yes, BibleTime has a lot of very good features. And I am trying to implement some of them. To be honest, i copied some parts of code and idea for the module downloader from the bibleZ-Project <http://biblez.zefanjas.de/> Further I am currently rewriting some parts of the code, to make it easier to support more formats. Some days ago I implemented modest support for TheWord modules. Support for Sword would be no much harder, because of the well written Sword library. I hope I can implement it for 0.6 or 0.7. BibleQuote is a russian Bible Software with a lot of Books, Dictionarys and Bibles, around 4 GiB. <http://jesuschrist.ru/software/>.

alvanx

Sounds very promising! I'll check back frequently then. Could you use any help that a non-programmer (but theology student) could offer? Also, your website seems down. Alvanx

alvanx

I don't know if you know about this (and I don't know how good it is): http://code.google.com/p/dbst/ Toward the bottom, it says that the library "DSword" is there to help SWORD front-end developers out. Incidentally this software also uses Qt4. (Just thought it might be helpful.)

metaxy

Thanks, i will take a look at it. Right now it looks promising.

aodukha

Have you compiled sources for Windows with VC++ (+ qt 4.6)? It does not work out of box: I created VC++ 2008 project from .pro and see following: 1. "root path" issue: compiler can not find headers like #include "src/module/XXXX.h" I do not touch *.pro, just added path to "Additonal Include Dir" in VC++ solution 2. in src\ui\dialog\searchinfodialog.cpp replace return floor(number * pow(10, stellen) + 0.5) * pow(10, -stellen); with return floor(number * pow(10.0, stellen) + 0.5) * pow(10.0, -stellen); because compiler can not select righ variant of overlaoded pow 3. comment out last line in src\core\notes.cpp //#include "moc_notes.cpp" because code from moc_notes.cpp was compiled twice and it causes linking errors After this changes build process finished succesfully

metaxy

I never tried to compile with VC++ :) So i will commit your changes. But there is still the problem that you have to add the root path manually...

metaxy

Should be fixed in 0.4.1

mnurolcay

Hi, im getting this warning at qmake-qt4 stage then install fails: `--> qmake-qt4 -makefile WARNING: target.path is not defined: install target not created

metaxy

fixed in 0.4.1

Pling
0 Affiliates
Details
license
version 0.7.0
updated
added
downloads 24h 0
mediaviews 24h 0
pageviews 24h 0

Other Education Apps:

Fresh Memory
zavulon5
last update date: 10 years ago

Score 5.8

Programa PTC
confenalfam
last update date: 13 years ago

Score 4.0

gmbCrossword
mikaelu
last update date: 19 years ago

Score 5.0

Klassroom
bornio
last update date: 21 years ago

Score 5.0

ksociograma
edith
last update date: 16 years ago

Score 5.0

Fresh Memory Lite
zavulon6
last update date: 9 years ago

Score 5.0



System Tags