version 5.37.0

This commit is contained in:
Kovid Goyal 2022-02-18 07:24:50 +05:30
parent 1c0796be45
commit 7ceeae768f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 37 additions and 1 deletions

View File

@ -23,6 +23,42 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.37.0 2022-02-18
:: new features
- [1961129] Book details: Add actions to trim the cover to the right-click menu
- [1960586] Allow removing multiple email addresses at once in Preferences->Sharing by email
- Book details: Use a better mono-spaced font on Windows by default
- Add a tweak in Preferences->Tweaks to change the behavior of the Tab key when completing entries
- [1959928] Edit metadata: In "All in one" mode add an adjustable splitter between the cover and formats boxes
:: bug fixes
- [1960686] Textile output: Dont fail if input document has invalid padding or margin specifications
- [1960446] E-book viewer: Fix image display window not remembering its size and settings when run from within calibre
- E-book viewer: Fix setting to use roman numerals for series not being respected
- Edit book: When saving a copy do not fail if the original file has no write permissions
- [1960180] Embed fonts tool: Create <head> when missing
- Tag editor: Improve performance when very large number of tags present
:: improved recipes
- Live Mint
- The Hindu
- Reuters
- MMC RTV Slovenija
- Down To Earth
- Publico.PT
}}}
{{{ 5.36.0 2022-02-04 {{{ 5.36.0 2022-02-04
:: new features :: new features

View File

@ -4,7 +4,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, 36, 0) numeric_version = (5, 37, 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>"