version 8.3.0

This commit is contained in:
Kovid Goyal 2025-04-18 07:30:43 +05:30
parent 88b73af727
commit 528b90ed14
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 29 additions and 1 deletions

View File

@ -23,6 +23,34 @@
# - title by author # - title by author
# }}} # }}}
{{{ 8.3.0 2025-04-17
:: new features
- Cover grid: Allow configuring different backgrounds for light and dark mode in Preferences->Look & feel->Cover grid
- E-book viewer: Further speedup first open of large EPUB files by another 30%
- Metadata review dialog: Add merge comments action
:: bug fixes
- Kobo driver: Fix viewing of KEPUB files from the device view in calibre not working
- Fix a regression in 8.1 that broke displaying of the debug log when running in debug mode
- [2106280] E-book viewer: Fix a regression in 8.0 that caused the clock to display an extra p after the time
:: improved recipes
- GoComics
- Internazionale
- New York Times
- SCMP
- The Hindu
- Barrons
}}}
{{{ 8.2.1 2025-04-04 {{{ 8.2.1 2025-04-04
:: new features :: new features

View File

@ -11,7 +11,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, 2, 100) numeric_version = (8, 3, 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>'