version 5.7.0

This commit is contained in:
Kovid Goyal 2020-12-11 08:23:41 +05:30
parent 8babb23858
commit 12e4912865
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 40 additions and 1 deletions

View File

@ -23,6 +23,45 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.7.0 2020-11-11
:: new features
- [major] E-book viewer: Add a "Read aloud" function that works via the operating system's Text-to-speech engine.
Click the "Read aloud" button in the viewer controls to start reading the book text aloud from the current page.
- A new busy spinner for waiting animations
- [1907140] Edit metadata: Add buttons to easily set yes/no fields also shortcut to clear the field.
:: bug fixes
- [1905967] PDF Output: Fix a regression in the previous release that broke text rendering for some fonts due to a bug in Qt WebEngine.
- [1905736] PDF Output: Fix conversion failing when adding header/footer and the input document defines margins/padding on the <html> tag.
- [1907159] Windows: Fix the case of library names in copied calibre:// links sometimes incorrect.
- [1906459] AZW3 Input: Fix a regression in calibre 5 that broke processing of files with inline flow replacements.
- [1906149] Fix hiding and showing book details panel changes its size by a pixel or two.
- [1907067] Get books: Fix amazon.fr not working because of website changes.
- Bulk metadata search/replace: Fix text transform function not being applied to the test result in character mode
- [1906464] Book list: Improve rendering of column headers when they dont fit, by eliding them instead of just cutting off rendering.
- [1906063] Fix template function "first_non_empty" fails if no argument evaluates non-empty
:: improved recipes
- The Guardian
- The Atlantic
}}}
{{{ 5.6.0 2020-11-27 {{{ 5.6.0 2020-11-27
:: new features :: new features

View File

@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, collections import sys, locale, codecs, os, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 6, 0) numeric_version = (5, 7, 0)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"