From e0d2c5cfcfb8762263d79cd2e1aab6520a50cf88 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Jun 2023 07:06:58 +0530 Subject: [PATCH] version 6.20.0 --- Changelog.txt | 27 +++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 3d4ae4ab5e..defbde9c75 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,33 @@ # - title by author # }}} +{{{ 6.20.0 2023-06-09 + +:: bug fixes + +- [2021413] CHM Input: Fix a regression in the previous release that broke conversion of CHM files + +- Windows: Make moving files in the calibre library folder more robust, locking folders in addition to files, before the start of the move + +- [2023046] Get books: Update Barnes and Noble store plugin for website changes + +- [2023189] Kindle output: Only re-encode JPEG images with EXIF metadata if the metadata contains actual transpose operations + +- [2023041] PDF Output: Fix error when input document contains multiple instances of a font some with vertical metrics and some without + +- PDF Output: Fix using CSS Multicolumns for body causing conversion to fail when header/footer is specified + +- [2022035] MOBI Input: Fix a crash when converting some corrupted palmdoc compressed MOBI files + +- [2021554] E-book viewer: Ensure CSS stylesheets are interpreted as UTF-8 + +:: improved recipes +- Foreign Affairs + +:: new recipes +- Prospect Magazine UK (Free) by ping +}}} + {{{ 6.19.1 2023-05-29 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index c794f21b36..f9a1da7e9e 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, 19, 1) +numeric_version = (6, 20, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "