version 8.8.0

This commit is contained in:
Kovid Goyal 2025-08-08 06:47:24 +05:30
parent ab1c0d6515
commit 8a94d59a0b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 32 additions and 1 deletions

View File

@ -23,6 +23,37 @@
# - title by author
# }}}
{{{ 8.8.0 2025-08-08
:: new features
- E-book viewer: Improve display of Lookup results from Google
- Kobo driver: Add support for latest Tolino firmware
- Conversion: Handle -epub-text-emphasis properties used in some Japanese language EPUB books
- [2117433] Piper Neural text to speech engine: re-write the backend used to run the Piper speech models to no longer need an external binary for improved performance and robustness
:: bug fixes
- Edit book: Reports: Fix sorting by name of CSS rules
- [2118744] Fix template based custom column of tags type not being treated as multi valued when using it for similarity searches
- When adding books recursively do not try to import folder whose names named with an ebook file extension. These are, for example, generated by Apple Books
- [2117255, 2117336] EPUB3 Output: Fix various issues with processing nav files when they contain more than just the Table of Contents and are not included in the spine.
:: improved recipes
- Economist
- Press Information Bureau
- Indian Express
- Wall Street Journal
- De Tijd
- Washington Post
}}}
{{{ 8.7.0 2025-07-18
:: new features

View File

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