From 5e8a9456a21fda9ef1f2e5fce02229774f18e280 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 28 Jun 2024 08:05:29 +0530 Subject: [PATCH] version 7.13.0 --- Changelog.txt | 52 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index af54ecb21a..f2ca95f651 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,58 @@ # - title by author # }}} +{{{ 7.13.0 2024-06-28 + +:: new features + +- [2071033] When merging books add an option to store discarded or replaced covers as an alternate cover in the data folder of the target book + +- [2068070] Generate CSV catalog: Add a button to sort the fields by the order in which they appear in the book list + +:: bug fixes + +- [2067755] MTP driver: Preserve cover aspect ratio for thumbnail generation + +- [2071044] Fix identifiers not always being merged correctly when merging books + +- [2069541] DOCX Input: Fix extra left padding when converting lists + +- Amazon metadata download: Get title and comments for audiobook pages + +- Amazon metadata: When filtering search engine results by title ignore words of the title that are purely punctuation + +- When matching books on a device to book in the library assume a match if the title and any one author match, dont require all authors to match + +- [2069553] Update Google Images cover download plugin for website changes + +- [2069494] When adding new books if the timestamp is specified as undefined use the current timestamp + +- Content server: Fix systemd pre-activated socket not working + +- [2071390] Content server: Fix no KFX download link in OPDS acquisition feeds + +:: improved recipes +- Harpers +- Wall Street Journal +- Liberation +- How to Geek +- Make Use Of +- TechCrunch +- LifeHacker +- India Today +- 1843 +- Reuters +- The Week India +- Slate + +:: new recipes +- Times Literary Supplement by unkn0wn +- Wall Street Journal Magazine by unkn0wn +- Various Valnet Publishing Group recipes by Spicy Poison +- VOX, The Good E-reder and The e-book Reader by SpicyPoison +- Gates Notes, Greatist, Halthline and United Nations by SpicyPoison +}}} + {{{ 7.12.0 2024-05-30 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 4184c1d725..157312e668 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -11,7 +11,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (7, 12, 0) +numeric_version = (7, 13, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "