From a2ad9b29736c5ab638db5a988dcb1aabd8e908b0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 May 2024 07:04:00 +0530 Subject: [PATCH] version 7.11.0 --- Changelog.txt | 46 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 45d2c10c41..44c54a0c01 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,52 @@ # - title by author # }}} +{{{ 7.11.0 2024-05-24 + +:: new features + +- Kindle driver: Add support for sending cover thumbnails to the Kindle Scribe + +- A new options under Preferences->Look & feel to draw covers with rounded corners + +- [2064674] Bulk metadata edit: Add a new tab where you can create rules to transform tags/authors/publishers for the selected books + +- [2065544] Tag browser context menu for Formats now has Open with menu items + +- [2064665] E-book viewer: When hovering over the top/bottom margin show a button indicating that a click will open the viewer controls. Can be configured via The Headers and footers section of the viewer Preferences. + +- Spell check dialog: Also show count of currently displayed words + +:: bug fixes + +- [2065249] E-book viewer: Fix searching not ignoring ruby text + +- Edit book: Save the state of the current book when opening a new book via File->Open book + +- [2064887] Edit book: Fix importing a list of words into a user dictionary not working + +- EPUB3 metadata: Do not fail to read metadata in the presence on invalid calibre user metadata in the OPF file with empty keys + +- Get books: Fix rules to map tags on adding books not being applied to books downloaded via Get books + +- [2064792] Spellcheck dialog: Move the checkbox to hide correctly spelled words with the rest of the checkboxes that filter the word list + +:: improved recipes +- Slate +- Wall Street Journal +- London Review of Books +- Economist +- Bloomberg +- Business Week +- The World Ahead +- National Geographic + +:: new recipes +- Collider, Comic Book Archive, Make Use Of, MoviewWeb and ScreenRant by Spicy Poison +- Lex Fridman Podcast by unkn0wn + +}}} + {{{ 7.10.0 2024-05-03 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 45737b9cb1..418e08d0b8 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, 10, 101) +numeric_version = (7, 11, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "