From a0d6206ab690031b425b4e3087415a7f411863c9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 30 Jul 2021 07:45:14 +0530 Subject: [PATCH] version 5.24.0 --- Changelog.txt | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index ed348278c0..c8f3fcf3ed 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,36 @@ # - title by author # }}} +{{{ 5.24.0 2021-07-30 + +:: new features + +- Conversion: Insert metadata as jacket: Allow adding timestamp and publisher fields. Also allow controlling the formatting of date/time fields + +- [1937025] Cover browser: Add an option to view the central book by double clicking instead of single clicking (Preferences->Look & feel->Cover browser) + +- [1936891] Tag browser: Add actions to the configure menu to toggle the display of counts and average rating + +- [1936472] Tag browser: Allow plugins to add entries to the context menu + + +:: bug fixes + +- [1938189] fetch-ebook-metadata: Fix an error when using the --cover option and no cover is found + +- [1936792] HTML Input: Fix the presence of BookDesigner markup causing conversion to fail + +- [1936184] TXT Input: Dont fail if the txt file references a directory as a resosource + +:: improved recipes +- MSNBC +- Nature News +- Boston Globe +- Foreign Policy +- Le Monde + +}}} + {{{ 5.23.0 2021-07-09 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 44e83c0254..57aed5d375 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, collections.abc __appname__ = 'calibre' -numeric_version = (5, 23, 0) +numeric_version = (5, 24, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "