diff --git a/Changelog.txt b/Changelog.txt index 0868a67e3f..5caee9ef61 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,36 @@ # - title by author # }}} +{{{ 8.14.0 2025-11-07 + +:: new features + +- Tolino driver: Add support for latest firmware + +- [2130804] When showing completions for languages show all languages that contain the typed in string instead of only languages that start with the typed in string + +- When showing completions in substring match mode, order the completions by how close to the start the query is + +- [2127819] A new shortcut Ctrl+Alt+Shift+P to switch to the previously applied Virtual library + +:: bug fixes + +- [2130764] FB2 Input: Fix a remote code execution vulnerability from maliciously crafted FB2 files + +- [2130603] E-book viewer: Ignore soft hyphens when looking up words + +- [2130573] Catalog export: Fix export of languages in BibTeX format + +- [2128853] Windows: Fix Open With not working with Microsoft Paint + +:: improved recipes +- Harper's Magazine +- Afrique 21 +- Orient XXI +- The Atlantic + +}}} + {{{ 8.13.0 2025-10-18 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index bb97bede4a..1cbcd98239 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -12,7 +12,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (8, 13, 0) +numeric_version = (8, 14, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '