From e715c9e7106e7257fea6d3bba6a03e11d106e1b8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 17 Apr 2021 10:41:09 +0530 Subject: [PATCH] version 5.16.0 --- Changelog.txt | 27 +++++++++++++++++++++++++-- src/calibre/constants.py | 2 +- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 3804d5ea78..f43ee14d67 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,29 @@ # - title by author # }}} +{{{ 5.16.0 2021-04-17 + +:: new features + +:: bug fixes + +- [1924703] CHM Input: Fix handling of some CHM files that use non-ASCII internal filenames and dont specify a character encoding in their metadata + +- [1924824] Fix a regression in the previous release that prevented calibre from starting if there was a failure in a third party plugin + +- Content server viewer: Fix a regression in the previous that broke handling of URLs in stylesheets + +- [1924767] Fix a regression in the previous release that broke changing sections in the convert single book dialog after changing the input or output formats + +- [1924675] Fix using 'is set' rules not working for column rules with rating values + +:: improved recipes + +:: new recipes +- The Saturday paper by Alistair Francis + +}}} + {{{ 5.15.0 2021-04-16 :: new features @@ -1329,7 +1352,7 @@ For books sent with this release of calibre, reconnecting the Kindle to calibre - [1863438] Viewer: Fix current reading position not preserved when changing preferences and auto scroll is active. -- [1863487] Viewer: Fix stopping autoscroll at end of chapter not stopping next chapter jump. +- [1863487] Viewer: Fix stopping auto scroll at end of chapter not stopping next chapter jump. - Fix for viewer window going off screen even when not restoring window geometry @@ -1370,7 +1393,7 @@ For books sent with this release of calibre, reconnecting the Kindle to calibre - Catalog generation: Ignore invalid pubdates -- [1861621] Viewer: Stop autoscroll when changing page layout mode. +- [1861621] Viewer: Stop auto scroll when changing page layout mode. - [1860889] zipfile: Fix regression that broke handling of zipfiles with internal filenames not encoded in UTF-8. diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 9bf07c15fd..070b8e7e7c 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, collections __appname__ = 'calibre' -numeric_version = (5, 15, 0) +numeric_version = (5, 16, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "