From 147bf011fee637f781c851890affea7bad60792e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 3 May 2022 12:03:19 +0530 Subject: [PATCH] version 5.42.0 --- Changelog.txt | 42 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 67693a3ff7..55a25003f8 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,48 @@ # - title by author # }}} +{{{ 5.42.0 2022-05-03 + +:: new features + +- E-book viewer: Ignore accents when doing a search + +- [1969926] Book list searching: Ignore punctuation when searching. So that, for example, Gravitys will match Gravity's + +- [1970045] Show the text used for marking books in the tooltip + +:: bug fixes + +- [1971150] Edit book: Reduce memory consumption by the checkpoint system when doing operations that involve parsing all book files + +- [1971015] Amazon metadata download: Fix titles starting with [ being ignored + +- [1970497] Edit metadata dialog: Undo not working correctly in identifiers field + +- [1970391] Fix viewing LRF files not working + +- [1969981] PDF Output: Fix an error on some invalid CSS in the input document + +- Linux binary: Workaround for Qt WebEngine not working on systems with glibc > 2.33 + +:: improved recipes +- New Yorker +- OMG! Ubuntu! +- ACM Queue +- CACM +- Science News +- Quanta Magazine +- Outlook Magazine +- Indian Express + +:: new recipes +- Caravan Magazine (Hindi) by Areet Mahadevan +- LWN (Free) by yodha8 +- IEEE Spectrum Magazine by yodha8 +- Financial Times by Kovid Goyal +- Cosmos Magazine by yodha8 +}}} + {{{ 5.41.0 2022-04-22 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 200adf9f7c..b56e3545a3 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, 41, 0) +numeric_version = (5, 42, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "