Active Topics

 



Notices


Reply
Thread Tools
Posts: 111 | Thanked: 80 times | Joined on Oct 2009
#201
Nathan, I'm ready to import my code to garage.maemo.org. Is it fair to bring it into /src/trunk?

I'll just admit that I'm a little bit nervous; I feel pretty strongly that the app should be kept as simple as possible, and I'm worried that it will accumulate all the features and options that a typical open source project does. Hopefully we can work together to avoid this.
 
Posts: 111 | Thanked: 80 times | Joined on Oct 2009
#202
Originally Posted by ARJWright View Post
For Olive Tree, the reader is free; all of the modules are not.
ARJWright, I think that was Nathan's point; Olive Tree is obviously making their money off of the modules, so wouldn't they welcome another reader, which would allow them to sell more modules?
 
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#203
Originally Posted by ARJWright View Post
For Olive Tree, the reader is free; all of the modules are not.
Well some of the modules is free; I just downloaded directly from them the ASV for no cost. I just clicked the "free" tab at the top, and picked one.

The point I was trying to make was if their "reader" is free, and our "reader" is free. What are we really competing against? The only reason to be able to read another engines modules directly would be to get "commercial" Bibles on our platform. Otherwise this is a pointless work.

Once we have the ability to do that, the users still have to purchase them from somewhere. If it is <insert vendor> than, they are potentially making more money for actually doing no work.
.
Since I'm not in this arena and you have been for a long time; How can they really say "no" to an offer like that? What arguments are going against our idea?

Nathan
 
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#204
Originally Posted by joshn53 View Post
Does anyone on this thread have an actual N900 device? I'm curious because I compiled the Qt 4.6 alpha that was released, but the kinetic (finger) scrolling doesn't work on the simulator. I'm not sure if this is a problem with the simulator, or not - the demo videos from Trolltech seem to show finger scrolling. If anyone does, could I help you get Qt SDK running, to see if stuff works correctly?

I guess it's not that big a deal. I was just hoping to have a working version for the initial launch.
Nope, I'm not sure any of us has a n900 yet on this thread. Are you pulling the latest Qt 4.6 from git?

Nathan
 
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#205
Originally Posted by joshn53 View Post
Nathan, I'm ready to import my code to garage.maemo.org. Is it fair to bring it into /src/trunk?

I'll just admit that I'm a little bit nervous; I feel pretty strongly that the app should be kept as simple as possible, and I'm worried that it will accumulate all the features and options that a typical open source project does. Hopefully we can work together to avoid this.
Sure drop it into /src/trunk.

I'm not at all for complicating things, I hate diving into complicated code bases <g> -- but I guess it really depends on what features we want to offer.

What about maybe a "plugin" system. Qt I believe has all the hooks for making a working plugin system. That would allow a basic simple Bible program for release, with little comlication.

But then allow us/others to make enhancements for those who want it. So if person A want commentaries; he downloads the "commentaries" plugin which allows them to be viewed and handled. etc. If person B wants ability to take notes, it would be a plugin. If person C wanted maps; it would be a plugin.

We could technically make the "sword" engine a plugin. Then if we do decide to make a engine compatible with a third party format it is just another "plugin" that is added to the system.

Thoughts? That does "complicate" it a bit more initially, but it would make keeping things a bit more simple for those who actually want a simple reader w/o all the bells and whistles. ;-)

Nathan.
 
dan67sf's Avatar
Posts: 114 | Thanked: 12 times | Joined on Jul 2007 @ Somewhere, most of the time.
#206
Originally Posted by ARJWright View Post
Nathan, that's a good idea, but I want to sit on it a half day or so before thinking it all the way through.

For companies like OliveTree, Laridian, and even the Sword project, any effort to build another reader should not compete against their efforts, but extend it. I've got it in my to-do list to contact OliveTree and ask if they'd be interested in the compatibility for Maemo devices. As for other entities like Sword, Online Bible, etc., I need to think (and choose my words carefully due to my associations outside of Maemo).
Just an FYI, I started praying about this about 2 years ago, althoug not daily. I also asked Olive Tree & Laradian about porting there softeare to maemo, with not results I would like.

I will "TRY" to remeber to pray daily for GODs will on this.

No matter what I think. GOD'S will be done.

Thanks for your efforts
A brother in Christ
Dan
__________________
SonShine
 
Posts: 111 | Thanked: 80 times | Joined on Oct 2009
#207
Originally Posted by Nathan View Post
Nope, I'm not sure any of us has a n900 yet on this thread. Are you pulling the latest Qt 4.6 from git?

Nathan
Actually, I've tried the alpha tarball, the the main git branch, as well as the qt-n900 branch.
 
Posts: 111 | Thanked: 80 times | Joined on Oct 2009
#208
Originally Posted by Nathan View Post
Sure drop it into /src/trunk.

I'm not at all for complicating things, I hate diving into complicated code bases <g> -- but I guess it really depends on what features we want to offer.

What about maybe a "plugin" system. Qt I believe has all the hooks for making a working plugin system. That would allow a basic simple Bible program for release, with little comlication.

But then allow us/others to make enhancements for those who want it. So if person A want commentaries; he downloads the "commentaries" plugin which allows them to be viewed and handled. etc. If person B wants ability to take notes, it would be a plugin. If person C wanted maps; it would be a plugin.

We could technically make the "sword" engine a plugin. Then if we do decide to make a engine compatible with a third party format it is just another "plugin" that is added to the system.

Thoughts? That does "complicate" it a bit more initially, but it would make keeping things a bit more simple for those who actually want a simple reader w/o all the bells and whistles. ;-)

Nathan.
I'm more worried about program interface complexity than code complexity. I don't want a program that does everything under the sun; I want a simple Bible reader that does one thing (reading the bible) and does it well. Now, in some ways, adding support for commentaries makes sense. Possibly even note taking, though that has the possibility to really add complexity to the UI. But maps?

As far as support for different Bible formats, that can easily be done with different backends - the code is already structured in such a way that would make that relatively easy. If conversions and file formats are your specialty, I would really appreciate if you could do some work to see if we can read the Bible+ format. If you can get even basic code in place, I can tie it in to Katana.
 

The Following 2 Users Say Thank You to joshn53 For This Useful Post:
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#209
Originally Posted by joshn53 View Post
I'm more worried about program interface complexity than code complexity. I don't want a program that does everything under the sun; I want a simple Bible reader that does one thing (reading the bible) and does it well. Now, in some ways, adding support for commentaries makes sense. Possibly even note taking, though that has the possibility to really add complexity to the UI. But maps?
I have no interested in Maps myself; but a ton of Bible readers post it as a "feature" of their programs... (Hence the idea of a plugin, if another developer has a serious interest in doing it -- let them).

I'm more interested in just the "basic" Bible reader also; the only thing that I do want to see is two versions on the screen. I like being able to compare. I also want fast search. ;-)


As far as support for different Bible formats, that can easily be done with different backends - the code is already structured in such a way that would make that relatively easy. If conversions and file formats are your specialty, I would really appreciate if you could do some work to see if we can read the Bible+ format. If you can get even basic code in place, I can tie it in to Katana.

Sure, that sounds great -- I'll tackle the Bible+ format. ;-)

Nathan.
 

The Following 2 Users Say Thank You to Nathan For This Useful Post:
Posts: 452 | Thanked: 522 times | Joined on Nov 2007
#210
Originally Posted by joshn53 View Post
Actually, I've tried the alpha tarball, the the main git branch, as well as the qt-n900 branch.
Well I guess that covers it. ;-)

Nathan
 
Reply

Tags
bible, maemo 5, rapier, reference browser, religious apps, scripture reader, sword


 
Forum Jump


All times are GMT. The time now is 15:35.