Skip to content

Commit c27e613

Browse files
committed
version 7.21.0
1 parent 09888e4 commit c27e613

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

Changelog.txt

+54
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,60 @@
2323
# - title by author
2424
# }}}
2525

26+
{{{ 7.21.0 2024-11-08
27+
28+
:: new features
29+
30+
- [major] Edit book: A new tool to create an audio overlay in EPUB files for all text using the Read aloud facility
31+
32+
This allows readers of the book to listen to it with sentence tracking, even if they do not have a functioning text-to-speech system in the reading software. You can even assign different voices to different parts of the text for a more immersive experience. The tool is available from the Tools menu in the book editor.
33+
34+
- Dark mode: make scrollbar more visible with higher contrast and rounded corners
35+
36+
- E-book viewer: In flow mode when scrolling across internal file boundaries using the mouse wheel/touchpad have a short half second pause to ease the transition. Can be controlled via the Scrolling section of the Viewer preferences.
37+
38+
- ebook-meta.exe: Add an option to disallow rendered cover of first page for EPUB
39+
40+
- [2082075] Book details: Add an action to download the cover to the context menu when right clicking the cover
41+
42+
- [2086609] Read aloud: Add a restore defaults button to the configuration dialog
43+
44+
- [2086478] Auto adding: Allow excluding arbitrary file types not just known book file types
45+
46+
- [2083583] Edit metadata dialog: Add an action to open the book's folder to the context menu of the formats list
47+
48+
:: bug fixes
49+
50+
- [2086571] Read aloud: Fix only first 32000 characters per chapter being read
51+
52+
- [2086661] Content server: Read aloud: Fix clicking on a word to skip reading aloud to that word causing word highlighting to stop working
53+
54+
- Linux: Handle speech dispatcher with dummy output module and no voices more gracefully
55+
56+
- When renaming authors fix empty author folder not being removed if it contained file explorer metadata but was otherwise empty
57+
58+
- [2086193] Edit metadata dialog: Fix keyboard shortcuts to edit prev/next raising an error when trying to go beyond the first/last book
59+
60+
- [2085576] Linux: ToC Editor: Fix a regression in 7.17 that broke using the Create new entry button
61+
62+
- [2085005] Content server: Fix changing the language of a book not working for non-English user interface language and for books that have no existing language
63+
64+
- Linux: Read aloud with Piper: Fix audio not playing on some Linux systems
65+
66+
- Notes browser: When searching books search over all currently selected categories not just the last selected one
67+
68+
:: improved recipes
69+
- Substack
70+
- Live Mint
71+
- NYPost
72+
- Ars Technica
73+
- Indian Express
74+
- Reuters
75+
76+
:: new recipes
77+
- Unz Review and Sonar21 by unkn0wn
78+
}}}
79+
2680
{{{ 7.20.0 2024-10-18
2781

2882
:: new features

src/calibre/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from polyglot.builtins import environ_item, hasenv
1212

1313
__appname__ = 'calibre'
14-
numeric_version = (7, 20, 101)
14+
numeric_version = (7, 21, 0)
1515
__version__ = '.'.join(map(str, numeric_version))
1616
git_version = None
1717
__author__ = "Kovid Goyal <[email protected]>"

0 commit comments

Comments
 (0)