Quick and simple scripture finder. Use keyboard controls to navigate the Bible in a small desktop app.
* To fully benefit from the features of the New World Translation, such as references, footnotes, and study gems, visit the source at jw.org. Not affiliated.
Download the latest release for Windows.
- Type to filter desired book (by name), chapter or verse (by number)
Enter
to select (nav forward),Backspace
to nav backEscape
to clear searchCtrl F
to search regex in Bible, book, or chapter scope- When viewing a chapter:
Ctrl Up/Down
to highlight prev/next verse
-
Shortcut to books/home page
-
ctrl-c copy text
-
ctrl-plus/minus font size zoom
-
join all books into one file instead of separate
-
Fix Psalms superscriptions and [other extra symbols/chars]
- replace backticks with hyphens (or nothing), and replace newlines with nothing (during initial download and parsing)?
-
abbreviate books in window title?
-
make inital setup script run automatically during installer setup?
-
versioning: include in a "help" section for app? or just incl elsewhere, like in exe name or adjacent json
- right click .exe -> Properties does show version and whatnot, so technically it's there just not as visible
- auto updates? or user checking thru app at least?
- app checks github page for new release maybe
-
prevent slow loading + white dialog on initial setup download?
-
simplified regex, eg shortcuts for case sensitive, exact match, etc
-
implement filterableList default filter as ordered by index of regex search (allowing both caps,lower,space, and unspaced)
-
retain window size from last session
-
generalize for other languages
-
update demo gif
-
load search results in batches for faster updates?
-
highlighted verse in middle or upper third of screen
-
keep highlighted verse focused during window resize?
-
create branch partial-release, just for auto updating app to download updated/new files (or delete?)
- unless checksum each file and only download the new ones curl https://api.github.com/repos/wong-justin/fast-bible/releases/latest tag_name
- parsing error on Ezra 4:8 from download
steps to fbs-ify a pyqt app on windows
- install python 3.5 or 3.6 on system (necessary b/c fbs version limit)
- binary installers easier than building from source .tgz files
- create virtualenv with that python version:
virtualenv -p <path/to/python/36> ./env
- python maybe at
C:\Users\<user>\AppData\Local\Programs\Python\Python36
`
- python maybe at
- activate venv (
scripts/activate.bat
) pip install
fbs
and other packages (PyQt5, etc)- follow fbs getting started instructions, like
fbs startproject
- restructure relative dirs to be in
src/main/resources
- refactor code referencing relative paths as
appctxt.get_resource([resources/]'path/to/file')
- replace main/app.py code final lines, mainly
appctxt.app.exec_()
- restructure relative dirs to be in
fbs run
to run app during testing (shortcut forpython src/main/python/[app].py
)fbs freeze
to createtarget/
installation dirfbs installer
to make a setup wizard .exe after freeze; created next totarget/
dir
If errors on running packaged code, like Failed to execute script main
, rebuild with fbs freeze --debug
and it will log output on next run. Some of my errors:
- doing minimal install of NSIS (windows installer creation); it needs all the components checked, eg. Modern GUI
- trying my own directory structure, different from
src/main/resources/...
(fbs freeze
doesn't recognize anything else) - not refactoring some relative paths into
appctxt.get_resource('rel/path')