mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 7.18.0
This commit is contained in:
parent
a46e9ef881
commit
84f371805a
@ -23,6 +23,54 @@
|
|||||||
# - title by author
|
# - 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
|
{{{ 7.17.0 2024-08-23
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -11,7 +11,7 @@ from functools import lru_cache
|
|||||||
from polyglot.builtins import environ_item, hasenv
|
from polyglot.builtins import environ_item, hasenv
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (7, 17, 101)
|
numeric_version = (7, 18, 0)
|
||||||
__version__ = '.'.join(map(str, numeric_version))
|
__version__ = '.'.join(map(str, numeric_version))
|
||||||
git_version = None
|
git_version = None
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user