version 7.22.0

This commit is contained in:
Kovid Goyal 2024-11-29 08:11:03 +05:30
parent 904bccb353
commit d9de854a72
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 38 additions and 1 deletions

View File

@ -23,6 +23,43 @@
# - title by author
# }}}
{{{ 7.22.0 2024-11-29
:: new features
- E-book viewer: Read Aloud: Add an option to control the position of the popup control bar. It can now be placed along the top or bottom edges so as to overlap less with text.
- [2087754] System tray menu: Add action to restart calibre
- Tolino driver: Support new firmware
:: bug fixes
- Windows: Enable popup OS notifications even when system tray icon is disabled to match behavior on other platforms. Notifications can be disabled via Preferences->Look & feel->Disable notifications on job completion
- [2087850] Fix a regression that caused incorrect English transliteration of Japanese text even when the UI language is set to Japanese
- [2088153] macOS: Dark mode: Fix a regression that caused the scrollbar to no longer be transient
- [2089433] DOCX Input: When some text has multiple footnotes insert a space between the consecutive foot note numbers so that they are distinct
- DOCX Input: Fix ToC nesting not working if the styles for the ToC levels dont use integer margins
- E-book viewer: Fix spurious chapter transition after configuring Read aloud
- [2089436] PDF Input: Fix reflow of lines in files with little text not working
:: improved recipes
- Economist
- Indian Express
- Economist World Ahead
- Frontline
- Infobae
:: new recipes
- Economist News by unkn0wn
}}}
{{{ 7.21.0 2024-11-08
:: new features

View File

@ -11,7 +11,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre'
numeric_version = (7, 21, 101)
numeric_version = (7, 22, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"