diff --git a/Changelog.txt b/Changelog.txt index 4264943784..bc82503eb8 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,47 @@ # - title by author # }}} +{{{ 6.22.0 2023-06-30 + +:: new features + +- Kobo driver: Add support for newest firmware + +- [2023604] Trash bin: Allow setting removed books to be permanently deleted on library close + +- Windows: Nicer error message when file/folder is locked in another program + +:: bug fixes + +- PDF Output: Fix regression that caused large slowdowns when converting books with lots of internal HTML files to PDF + +- [2024139] CHM Input: Fix ToC entries that use fragments not supported + +- E-book viewer: Fix searching for text next to hidden text not scrolling to the match + +- [2024375] E-book viewer: Fix selection popup not showing for some books on some platforms when the selection is in the top line + +- [2024433] DOCX Output: Fix multiple SVG images in the input document causing all the SVG images in the output to be just one of the input images + +- [2023943] MOBI Input: Ignore another form of corruption in trailing bytes + +:: improved recipes +- Foreign Affairs +- Nature +- Bloomberg +- LiveMint +- Hindu and Hindu Business Line +- Deautsche Welle +- Horizons +- Indian Express +- Psych +- Harper's Magazine + +:: new recipes +- Radio Canada by quatorze +- Deutschland Funk by Armin Geller +}}} + {{{ 6.21.0 2023-06-13 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 3b009d9b59..08eac389d8 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from functools import lru_cache import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (6, 21, 0) +numeric_version = (6, 22, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "