version 5.30.0

This commit is contained in:
Kovid Goyal 2021-10-22 04:54:50 +05:30
parent b8c95130c2
commit baf215b0c8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 32 additions and 1 deletions

View File

@ -23,6 +23,37 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.30.0 2021-10-22
:: new features
- Add support for the new Kobo Sage and Libra 2 e-book reader devices
- [1946439] E-book viewer: Read aloud: Allow right clicking to play/pause reading
- Sending books by e-mail: Preserve non-English characters in attached filenames
- [1946560] Tab browser: Allow searching for sub-categories by right clicking on them
:: bug fixes
- E-book viewer: Fix cover and full screen images not centered in paged mode when more than one page is displayed per screen
- ToC Editor: Ignore in succession clicks on the OK and Cancel buttons to avoid accidentally closing the window when finishing creating a new entry
- [1905479] Comments editor: Fix the formatting buttons not showing the current state correctly and fix some keyboard shortcuts not working when more than one comments editor is present in a single window
- [1946417] Tag browser: Fix renaming of User categories in Virtual libraries
- [1947948] Make removing large numbers of custom column icons easier
:: improved recipes
- Private Eye
- Foreign Policy
- Le Monde Diplomatique - cono sur
}}}
{{{ 5.29.0 2021-10-08 {{{ 5.29.0 2021-10-08
:: new features :: new features

View File

@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 29, 0) numeric_version = (5, 30, 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>"