From baf215b0c89b9413dcb615e3460bbac8ce5c324d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 22 Oct 2021 04:54:50 +0530 Subject: [PATCH] version 5.30.0 --- Changelog.txt | 31 +++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 250473e7bf..f245df5751 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,37 @@ # - title by author # }}} +{{{ 5.30.0 2021-10-22 + +:: new features + +- Add support for the new Kobo Sage and Libra 2 e-book reader devices + +- [1946439] E-book viewer: Read aloud: Allow right clicking to play/pause reading + +- Sending books by e-mail: Preserve non-English characters in attached filenames + +- [1946560] Tab browser: Allow searching for sub-categories by right clicking on them + +:: bug fixes + +- E-book viewer: Fix cover and full screen images not centered in paged mode when more than one page is displayed per screen + +- ToC Editor: Ignore in succession clicks on the OK and Cancel buttons to avoid accidentally closing the window when finishing creating a new entry + +- [1905479] Comments editor: Fix the formatting buttons not showing the current state correctly and fix some keyboard shortcuts not working when more than one comments editor is present in a single window + +- [1946417] Tag browser: Fix renaming of User categories in Virtual libraries + +- [1947948] Make removing large numbers of custom column icons easier + +:: improved recipes +- Private Eye +- Foreign Policy +- Le Monde Diplomatique - cono sur + +}}} + {{{ 5.29.0 2021-10-08 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index bded43cacf..78212d8b84 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, 29, 0) +numeric_version = (5, 30, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "