From f436139f55ac50bd920eeda453302d3cc32683b0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Oct 2021 07:54:33 +0530 Subject: [PATCH] version 5.31.0 --- Changelog.txt | 24 ++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 45c47d7e71..cc06d44007 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,30 @@ # - title by author # }}} +{{{ 5.31.0 2021-10-29 + +:: new features + +- [1948883] Kindle driver: Support the new Kindle PaperWhite 2021 + +- Add an option under Preferences->Behavior to have calibre recognize numbers when sorting (this was previously under Preferences->Tweaks) + +- E-book viewer: Add a button to directly open the viewer help section in the calibre user manual to the viewer controls + +- E-book viewer: Prevent the display from sleeping when using auto-scroll or read aloud modes (Implemented only on Windows and macOS) + +- Edit book: Set semantics tool: Add support for EPUB 3 landmarks + +- [1948493] Add an entry to the Connect/share menu to open the content server in a local browser when it is running + +:: bug fixes + +- [1947879] Content server: Fix some OPDS feeds failing with non-ASCII content + +- [1948560] Tag browser: Fix incorrect first letter partitioning when enabling numeric collation of items that start with a number + +}}} + {{{ 5.30.0 2021-10-22 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 78212d8b84..1dcf42a7f2 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 30, 0) +numeric_version = (5, 31, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "