version 8.14.0

This commit is contained in:
Kovid Goyal 2025-11-07 09:08:36 +05:30
parent 0f449a18e7
commit c7e8d11a30
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 31 additions and 1 deletions

View File

@ -23,6 +23,36 @@
# - title by author # - 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 {{{ 8.13.0 2025-10-18
:: new features :: new features

View File

@ -12,7 +12,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (8, 13, 0) numeric_version = (8, 14, 0)
__version__ = '.'.join(map(str, numeric_version)) __version__ = '.'.join(map(str, numeric_version))
git_version = None git_version = None
__author__ = 'Kovid Goyal <kovid@kovidgoyal.net>' __author__ = 'Kovid Goyal <kovid@kovidgoyal.net>'