Search found 55 matches

by RobertRathbone
Wed Mar 05, 2025 8:39 am
Forum: Bugs & Problems
Topic: Greek font issues in K&D
Replies: 7
Views: 12166

Re: Greek font issues in K&D

I'm running BA on Linux (Kubuntu 24.10) and I'm seeing the same thing as Alistair. For a direct, apples-to-apples comparison, I switched the font to Verdana and saw the problem: BA Verdana font.png I don't have the Segoe UI font on my system, so I picked another Windows font (Times New Roman) to tes...
by RobertRathbone
Tue Nov 19, 2024 8:06 am
Forum: Bugs & Problems
Topic: Acts 18:7-28 ASV all italic
Replies: 7
Views: 38952

Re: Acts 18:7-28 ASV all italic

It probably doesn't matter what I think since Tim will have to be the one to implement it if he sees fit, but here are my two cents... Your scheme should probably work, although I suspect a new table wouldn't be necessary. In my opinion, the values you propose adding would make more sense as additio...
by RobertRathbone
Sat Aug 03, 2024 1:24 pm
Forum: Comments & Suggestions
Topic: Tranparently linked Strong's numbers
Replies: 2
Views: 37891

Re: Tranparently linked Strong's numbers

This suggestion is one of convenience rather than the question of having or not having the ability to determine what words are represented by a particular Greek/Hebrew word. I can always show the Strong's numbers and see which words are between the Strong's numbers (or the beginning of the verse and...
by RobertRathbone
Sat Aug 03, 2024 1:15 pm
Forum: Bugs & Problems
Topic: Acts 18:7-28 ASV all italic
Replies: 7
Views: 38952

Re: Acts 18:7-28 ASV all italic

How practical would it be for the "Module Download Manager" to alert you that there are newer versions available of the modules that you have downloaded? I can see this becoming complicated since we have the ability to create our own modules (which I appreciate) and even fix our own copy o...
by RobertRathbone
Fri Aug 02, 2024 11:16 am
Forum: Comments & Suggestions
Topic: Tranparently linked Strong's numbers
Replies: 2
Views: 37891

Tranparently linked Strong's numbers

Would it be possible to have words highlighted in some way (perhaps underlining) when you hover over a word when the Strong's setting is set to "Strong's Data Transparently Linked" to show which English words are represented by the Strong's reference? Since the Strong's references follow t...
by RobertRathbone
Fri Aug 02, 2024 10:47 am
Forum: Comments & Suggestions
Topic: Bible module specific default dictionaries
Replies: 0
Views: 64356

Bible module specific default dictionaries

I've purchased the LSBs Bible module, which includes the LSB Dictionary. I'm sure most entries in the dictionary have the same information as the Strong's dictionary, but occasionally there are references in the Bible module to an "A" or "B" variant of a word (such as G1490A and ...
by RobertRathbone
Wed Jun 26, 2024 2:26 pm
Forum: Other Topics of Interest
Topic: Generate verse counts for each chapter of the Bible
Replies: 6
Views: 113254

Re: Generate verse counts for each chapter of the Bible

Try this query: WITH chapters AS ( SELECT ID ,SUBSTR(ref, 1, INSTR(ref, ':')) AS chapter FROM bible ORDER BY ID ) SELECT ROW_NUMBER() OVER (ORDER BY MIN(ID)) AS "row" ,chapter ,COUNT(ID) AS verses FROM chapters GROUP BY chapter ORDER BY MIN(ID) When you are in DB Browser for SQLite and cli...
by RobertRathbone
Wed Jun 26, 2024 7:49 am
Forum: Other Topics of Interest
Topic: Generate verse counts for each chapter of the Bible
Replies: 6
Views: 113254

Re: Generate verse counts for each chapter of the Bible

If you have a program to open SQLite database files and execute queries, such as "DB Browser for SQLite", you can open a bible file such as AV1769.bib and execute a SQL query such as the one below. It only took me a few minutes to play around and create the following query: WITH chapters A...
by RobertRathbone
Fri Jun 21, 2024 8:00 am
Forum: 5.6 Beta Testing
Topic: Bible Analyzer 5.6 beta (Linux)
Replies: 23
Views: 137889

Re: Bible Analyzer 5.6 beta (Linux)

Very clever. Titling each column is a useful feature and you should document it! lol I'm glad it's something easy to do from inside the program without having to manually edit the .pll file. Adding a <t>My cool title</t> at the beginning of each column definition is simple.
by RobertRathbone
Thu Jun 20, 2024 6:47 am
Forum: 5.6 Beta Testing
Topic: Bible Analyzer 5.6 beta (Linux)
Replies: 23
Views: 137889

Re: Bible Analyzer 5.6 beta (Linux)

Thank you for your quick response! I can confirm that both issues are indeed fixed. BA now reports itself as 5.6.0.02. Quick question (with hopefully a quick answer): I was watching the video where you demonstrated the enhanced functionality of the Harmony/Parallel Generator and noticed that you had...