From 7ceeae768f2419e296b66eca49d2be07687f3d26 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Feb 2022 07:24:50 +0530 Subject: [PATCH] version 5.37.0 --- Changelog.txt | 36 ++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 48b60a23e8..7872cd328a 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,42 @@ # - title by author # }}} +{{{ 5.37.0 2022-02-18 + +:: new features + +- [1961129] Book details: Add actions to trim the cover to the right-click menu + +- [1960586] Allow removing multiple email addresses at once in Preferences->Sharing by email + +- Book details: Use a better mono-spaced font on Windows by default + +- Add a tweak in Preferences->Tweaks to change the behavior of the Tab key when completing entries + +- [1959928] Edit metadata: In "All in one" mode add an adjustable splitter between the cover and formats boxes + +:: bug fixes +- [1960686] Textile output: Dont fail if input document has invalid padding or margin specifications + +- [1960446] E-book viewer: Fix image display window not remembering its size and settings when run from within calibre + +- E-book viewer: Fix setting to use roman numerals for series not being respected + +- Edit book: When saving a copy do not fail if the original file has no write permissions + +- [1960180] Embed fonts tool: Create when missing + +- Tag editor: Improve performance when very large number of tags present + +:: improved recipes +- Live Mint +- The Hindu +- Reuters +- MMC RTV Slovenija +- Down To Earth +- Publico.PT +}}} + {{{ 5.36.0 2022-02-04 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 04c6e293cd..5cca367029 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ from polyglot.builtins import environ_item, hasenv import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 36, 0) +numeric_version = (5, 37, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "