Skip to content

Xiphos 4.5.0

Latest

Choose a tag to compare

@github-actions github-actions released this 31 Aug 19:10
· 2 commits to master since this release
  • Make chapter-separating lines disappear when headings are turned off.
  • Make sure journals will font-resize with the rest of the main window's panes.
  • Caret for text selection.
  • Updates to manual.
  • Restored proper expansion of bookmark.
  • Fix mis-parse of verse due to subverse footnote indicator.
  • Fix crash from repeated open/close of parallel tab.
  • Fix for bad checkmark icons in Prefs->BibleSync and mod.mgr->Install.
  • Fixed problem of doubled navbar on re-open of parallel tab.
  • Provide for discovery of bookmark source of verse colorization.
  • Fixed problem of paragraph breaks getting in the way of highlighting.
  • Colorized bookmarks per folder color.
  • Saved sets of parallelism.
  • Add context menu item Lookup Selection -> Translate Selection.
  • Add module favorites category; provide for alternate module tree sort (Prefs -> Modules -> Special).
  • Provide for import of AndBible bookmarks.
  • Fix navigation freeze when active verse has no text.
  • Render whole Bible books (optional: Prefs -> Options -> Display whole Bible books).
  • (Adjustment) (Critical) Fix infloop where annotations containing '&' are replaced w/ &...
  • Provide optional (see right-click) popup menu for multi-reference bookmarks.
  • Bookmark folder colors.
  • Language file updates. No more modules fall into "Unknown" language status.
  • Provide 8-column display because big, wide displays need it.
  • Fix a number security holes, largely about internal handling of URLs.

Some post-release intermediate builds, for bug fixes and new features being implemented ahead of the next intended release, can routinely be found at this link. Current platform support to be found there includes RHEL 9/10, Fedora 42/43/44, Ubuntu (created w/alien(1)), and Windows.

Post-release bugfix, 02 Sep 2026, Windows only: Unexpected misinteraction between display scaling and titlebar controls has been fixed. This is not urgent enough to justify a separate release, but the 4.5.0.1 build fixes this.

NOTE TO PACKAGERS: Please apply this post-release patch in your builds:

diff --git a/src/main/display.cc b/src/main/display.cc
index e4a569ab..af82a2e5 100644
--- a/src/main/display.cc
+++ b/src/main/display.cc
@@ -1883,7 +1883,7 @@ GTKChapDisp::display(SWModule &imodule)
 	 * this must not be done per-verse inside the render loop. */
 	build_tag_color_map(key);
 
-	if (settings.render_whole_books) {
+	if (settings.render_whole_books && !strongs_or_morph) {
 #ifdef CHATTY
 		GTimer *t;
 		double d;