From 2bfb5c102a94d5fe38b7cd037e184443989d9547 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 May 2022 07:19:14 +0530 Subject: [PATCH] version 5.43.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 55a25003f8..bf1e8cce78 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,42 @@ # - title by author # }}} +{{{ 5.43.0 2022-05-27 + +:: new features + +- Kobo driver: Allow using templates to generate collections + +- [1975406] Book details popup: Double clicking on the cover now uses calibre's internal image viewer. Right click on the cover to open it with another program. + +:: bug fixes + +- [1971461] Fix Book details blank when switching from device view to library view + +- [1973591] TXT Input: Fix a regression in 5.39 that caused the option to remove indents also removing blank lines + +- [1972069] E-book viewer: Fix incorrect sorting of highlights from the first internal file of a book + +:: improved recipes +- Outlook Magazine +- India Today +- The New Yorker +- Foreign Affairs + +:: new recipes +- Asahi Shimbun by Albert Aparicio Isarn +- Business Today Magazine by unkn0wn +- Outlook Business Magazine by unkn0wn +- Donga by Minsik Cho +- Le Monde (English) by Darko Miletic +- Hinduism Today by Vishwas Vasuki +- The MIT Press Reader by yodha8 +- Live Science by yodha8 +- Financial Times Print Edition by Kovid Goyal +- Various Catalan language news sources by santboia + +}}} + {{{ 5.42.0 2022-05-03 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index b56e3545a3..df87fe1640 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from functools import lru_cache import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 42, 0) +numeric_version = (5, 43, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "