From 8072ea11a33432a6773c967b3dfe72838f5b2515 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 14 Mar 2024 08:49:04 +0530 Subject: [PATCH] version 7.7.0 --- Changelog.txt | 38 ++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index a91bdecbff..cc84b246a9 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,44 @@ # - title by author # }}} +{{{ 7.7.0 2024-03-14 + +:: new features + +- [2056116] Trim image: Allow specifying the size of the trim rectangle using numbers + +- [2056664] Full text search: Allow pressing Ctrl+S to select the current book in the calibre book list + +- Speed up scrolling through the book list book-by-book by only redrawing the book details panel when scrolling pauses + +- Add a tweak under Preferences->Tweaks to set the first day of the week in popup calendars used to input dates + +:: bug fixes + +- [2056470] CHM Input: Handle CHM files with no HHC Table of Contents + +- E-book viewer: Fix a few settings such as pages per screen and header/footers not being saved in profiles + +- [2056614] Full text search: Ignore text inside tags when indexing books + +- DOCX Output: Preserve spaces around soft hyphens + +- Book details popup: Copy the original cover image to the clipboard even when the image is rescaled to fit into view + +- Fix changing disabled colors in the UI color palette overriding non-disabled colors + +- Content server: Fix deletion of viewer profiles not working + +:: improved recipes +- LiveMint +- Bloomberg +- Natural Geographic +- MIT Technology Review +- NY Review of Books +- Scientific American + +}}} + {{{ 7.6.0 2024-03-01 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 56f1a876fd..b5170c1358 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 = (7, 6, 100) +numeric_version = (7, 7, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "