From 2f242b8c427321a04668d263ec2acba862e0b1a3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Sep 2024 07:36:34 +0530 Subject: [PATCH] version 7.19.0 --- Changelog.txt | 49 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 51dca45e91..b7b1a50e0f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,55 @@ # - title by author # }}} +{{{ 7.19.0 2024-09-27 + +:: new features + +- [major] E-book viewer: Halve the time taken to open large EPUB format books for the first time + + A four hundred thousand word EPUB book now opens in under a second on typical hardware. + +- PDF new engine: Improve header/footer detection + +- For column icons and grid view emblems, support icons for both light and dark themes + +- News downloads: Mark links to locally available articles with a middle-dot + +- [2079784] When saving a layout also save the main window geometry + +:: bug fixes + +- [2080705] Windows: Read Aloud: Fix an occasional crash when stopping read aloud when using the legacy windows TTS engine + +- [2080705] Windows: Read Aloud: Fix clicking in text to change what is being read causing tracking of currently read word to fail when using the legacy Windows TTS engine + +- [2080708] Read aloud: Fix reading large numeric words causing text synchronization to fail when using some legacy TTS engines + +- [2080701] EPUB3 metadata: Fix setting series number to zero not working + +- [2081982] Comic Input: Handle comics whose internal files have control codes in their filenames + +- [2071348] E-book viewer: Fix a regression that broke searching in Japanese books that use text + +- [2080655] E-book viewer: Fix a regression in the previous release that broke Read aloud for selected text + +- Amazon metadata plugin: Workaround for downloads failing because Google discontinued its webcache + +- Cover grid: Suppress the 2px border Qt draws for the list view + +:: improved recipes +- NY Times +- NYT Book Review +- Courrier International +- Le Monde +- TLS Magazine +- Scientific American +- Engadget + +:: new recipes +- NYT News based on feeds by unkn0wn +}}} + {{{ 7.18.0 2024-09-13 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 20e7e05e73..0039f6a0a7 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, 18, 100) +numeric_version = (7, 19, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "