From 84f371805a50d357d90a8cbaadb7cfb10009213f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Sep 2024 08:09:32 +0530 Subject: [PATCH] version 7.18.0 --- Changelog.txt | 48 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 1fc83098d8..b89b462fb3 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,54 @@ # - title by author # }}} +{{{ 7.18.0 2024-09-13 + +:: new features + +- E-book viewer: Read aloud: A new Text-to-Speech engine (Piper) that uses a neural network for realistic sounding voices + + To use it access the viewer controls and click the Read aloud button or press 'Ctrl+S'. The neural network + is run locally, no cloud services are used. Using the OS Text-to-Speech engine is still possible by clicking + the configure button on the Read aloud control bar. Note that the new engine highlights the currently read sentence rather than word. + +- [2076346] New experimental engine to convert PDF files with support for automatic header/footer removal + + Turn it on via the PDF input section of the conversion dialog. + +- Content server: Viewer: Read Aloud: Implement word-by-word tracking when reading aloud if the browser and voice used support it, for example, Chromium on Windows, Firefox on Android and Safari on macOS + +- [2080315] Image popup: Add a context menu with an option to reset the current zoom + +- Edit metadata dialog: Show the number of data files on the data files button + +:: bug fixes + +- Fix a regression in the previous release that broke using Tab key to move around the book list while editing cells + +- [2077801] E-book viewer: Fix scrollbar position not updating during continuous scroll + +- [2077871] E-book viewer: Fix a harmless error when the book contains page list references whose targets do not exist + +- [2077794] Linux binary build: Fix missing libdeflate dependency + +:: improved recipes +- Revista Muy Interesante +- Ars Technica +- South China Morning Post +- Times Literary Supplement +- Hackernews +- Star Gazetesi +- Hurriyet +- Gorafi +- Times Online + +:: new recipes +- Muy Interesante México by unkn0wn +- Salzburger Nachrichten by İlker Melik Sıtkı +- Computer Weekly by İlker Melik Sıtkı + +}}} + {{{ 7.17.0 2024-08-23 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 4295ad588f..ea564407cc 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, 17, 101) +numeric_version = (7, 18, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "