From 77490c37e4eb49bc9fc6e15aebfd9121e9343329 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Apr 2025 08:17:34 +0530 Subject: [PATCH] version 8.2.0 --- Changelog.txt | 29 +++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 6787d0819b..a1031f6096 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,35 @@ # - title by author # }}} +{{{ 8.2.0 2025-04-04 + +:: new features + +- Kobo driver: Add support for new Tolino firmware + +- Kindle driver: Allow using a value of * in Preferences->Output options->MOBI Output to have the driver mark all books sent to the device as personal documents + +:: bug fixes + +- Kobo driver: Fix hyphenation and extra CSS added to KEPUB files being ignored by the renderer on the Kobo + +- [2105884] macOS: Fix opening book folder or PDF files for books with square brackets in the title not working + +- Quickview: Fix a long standing bug with syncing of columns in the presence of hidden/re-ordered columns + +- [2104850] E-book viewer: Show an error message when an invalid nearby search expression is used + +- [2105424] KEPUB Output: Fix incorrect encoding detection for some HTML files without an encoding declaration + +- macOS: Fix a regression in the previous release that caused failures in the E-book viewer when updating annotations for books with a large number of annotations + +:: improved recipes +- The Economist +- Reuters +- Private eye + +}}} + {{{ 8.1.1 2025-03-28 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index fcff673d29..7ed3c7a71c 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, 1, 1) +numeric_version = (8, 2, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '