version 8.1

This commit is contained in:
Kovid Goyal 2025-03-28 07:34:34 +05:30
parent 650fd87858
commit 594eff7726
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 41 additions and 1 deletions

View File

@ -23,6 +23,46 @@
# - title by author
# }}}
{{{ 8.1.0 2025-03-28
:: new features
- [2103833] Edit metadata dialog: Allow right clicking on the cover to edit it with an external program
- [2104325] Virtual library tabs: When the tabs are locked prevent them from being re-ordered as well
- FreeBSD: Add support for connecting to devices, contributed by Guido Falsi
:: bug fixes
- [2103949] macOS: Fix regression in previous release that caused calibre:// URLs to no longer work
- [2103777] macOS: Fix a regression in calibre 8 that prevented icons in menus from being rendered
- Kobo driver: Fix hyphenation settings not being applied correctly when generating KEPUB to put on the device
- [2103926] KEPUB Output: Include leading whitespace in kobo sentence span tags. This prevents unsightly breaks when highlighting across formatted text on the Kobo
- [2103846] Content server: Fix FB2 books not readable via the in-browser viewer
- Edit book: Add text narration: Fix preferred voice for language setting being ignored
- [2103990] E-book viewer: Use IPC to update annotations when calibre is running. Avoids possible loss of annotations in the Annotations browser due to db being locked
- Ensure calibre temp files are deleted even on program crash
- [2103870] Fix incorrect minimums on font size changing controls in viewer
- Fix regression in previous release causing incorrect rendering of layout menu on some macOS machines
- [2100891] Fix archive formats such as ZIP not being indexed for full text search
:: improved recipes
- Horizons
- Economist
- Granta
}}}
{{{ 8.0.1 2025-03-21
:: 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, 0, 1)
numeric_version = (8, 1, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = 'Kovid Goyal <kovid@kovidgoyal.net>'