diff --git a/Changelog.txt b/Changelog.txt index e7c47a8fa3..021a311a1c 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,34 @@ # - 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 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 3fce1682c1..ce4d574d5d 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -11,7 +11,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (8, 2, 100) +numeric_version = (8, 3, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '