From c3ab07100996c7426453e6f570d9b9e7a173a302 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Dec 2022 07:59:36 +0530 Subject: [PATCH] version 6.10.0 --- Changelog.txt | 45 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 737a06b259..4e77546b7e 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,51 @@ # - title by author # }}} +{{{ 6.10.0 2022-12-16 + +:: new features + +- [major] Content server: Add support for searching the full text of books. Simply click the FTS link on the search page to start a full text search. + +- [1998557] Content server: When using user accounts, the homepage now shows recently read books from any device not just the current device + +- [1999685] Kobo driver: Bump the max supported firmware version + +- [1998780] Conversion: New Output profile for the Kindle Scribe + +- [1998705] Check library: Allow ignoring folder names as well as files names + +:: bug fixes + +- [1999349] Edit book: Fix various formatting operations not inserting the tags in the correct place in the presence of non-BMP characters + +- Edit book: Use instead of for strikethrough + +- [1998899] Edit book: Fix export saved search to search panel not preserving the wrap checkbox state + +- [1998767] Content server: Redirect the index page to always have trailing slash when using URL prefixes + +- Book list: Workaround for change in Qt 6 behavior where clicking on an already selected row does not deselect other rows + +- [1998165] Windows: Fix a regression in calibre 6 causing Open With to not extract icons from EXE files + +:: improved recipes +- Indian Express +- Financial Times +- TIME Magazine +- Hindu Business Line Print Edition +- Arts and Letters Daily +- Frontline +- Sportstar +- New Yorker + +:: new recipes +- Fokus by Henrik Holm +- Press Information Bureau by unkn0wn +- Himal Southasian by unkn0wn +- Indian Express Print Edition by unkn0wn +}}} + {{{ 6.9.0 2022-11-25 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 94591da48f..8f39aa076b 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, 9, 0) +numeric_version = (6, 10, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "