From 941730f56f84be73ac70660cfa3e510e5c0de355 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 14 Jul 2023 06:59:18 +0530 Subject: [PATCH] version 6.23.0 --- Changelog.txt | 28 ++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index bc82503eb8..6d1a3b7b5f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,34 @@ # - title by author # }}} +{{{ 6.23.0 2023-07-14 + +:: new features + +- [2025942] PDF Output: Add an option to discard the book cover instead of inserting it as the first page of the PDF + +- [2025333] Content server: Allow opening the book details page for a matches book from the Full text search results page + +:: bug fixes + +- Windows: Fix empty data folder getting created in directory calibre is launched from when changing title/author for a book with an existing data folder + +- [2026795] LIT Output: Fix error converting anything to LIT on Windows + +- Ignore failures to expire old trash during startup + +- [2025786] Amazon metadata download: Fix retrieval of publisher information from amazon.fr + +:: improved recipes +- Guardian & Observer +- Washington Post +- Private Eye +- Associated Press + +:: new recipes +- ThePressProject by Sotiris Papatheodorou +}}} + {{{ 6.22.0 2023-06-30 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 08eac389d8..4a5178df76 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 = (6, 22, 0) +numeric_version = (6, 23, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "