diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-24 22:13:06 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-24 22:13:06 +0200 |
| commit | 1b4134d883544beba3fc51704322cef2a875a7d2 (patch) | |
| tree | c3b74799fcc1f62acd6eedfb734245015ade50cb /internal/config | |
| parent | 1ab07867b425cfa8da207b904a297df29b1b177a (diff) | |
| download | lectio-1b4134d883544beba3fc51704322cef2a875a7d2.tar.gz lectio-1b4134d883544beba3fc51704322cef2a875a7d2.zip | |
lectio-ui reader: go-to-chapter jump (c)
Inside a book, 'c' opens a centered prompt showing the book's chapter
range (e.g. "1-21: ") and accepts a chapter number to jump straight there,
instead of scrolling (handy for Psalm 119 etc). Digits only, backspace
edits, Enter clamps to the valid range and opens that chapter at its top,
Esc cancels. New modeChapterJump + updateChapterJump/jumpToChapter/
viewChapterJump; i18n ReaderJumpChapter/ReaderJumpChapterKeys (en/pl) and
'c' added to the reading keybar. Only offered when the book has >1 chapter.
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index e2ea0d3..a7365bb 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -25,7 +25,7 @@ var seedTOML []byte // Version is lectio's release version, shared by every binary's // -v/--version output (lectio, lectio-ui, lectio-web). -const Version = "0.24.1" +const Version = "0.25.0" // validVersions are the five scripture versions lectio understands. var validVersions = map[string]bool{ |
