version 5.20.0

This commit is contained in:
Kovid Goyal 2021-06-04 05:31:22 +05:30
parent 652943c31d
commit b7ac7806e5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 30 additions and 1 deletions

View File

@ -23,6 +23,35 @@
# - title by author
# }}}
{{{ 5.20.0 2021-06-04
:: new features
- E-book viewer: Highlights: Make URLs in the notes for highlights clickable
- [1930136] Book details: Ctrl-clicking on tags now adds them to the existing search instead of replacing it
- E-book viewer: Allow using the back button to return from jumping to a search result
:: bug fixes
- Get books: Fix the Kobo store plugin for changes to the website
- [1929827] Edit book: Fix non breaking spaces in snippets being converted to normal spaces
- [1930466] ToC Editor: Fix a regression that caused changes to not be saved on machines where running a worker process takes more than ten seconds
- Fix error when changing the "Search the net" URLs for the Content server
:: improved recipes
- Jerusalem Post
- Popular Science
- Ambito Financiero
- Ambito.com
- Infobae
}}}
{{{ 5.19.0 2021-05-28
:: 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
__appname__ = 'calibre'
numeric_version = (5, 19, 0)
numeric_version = (5, 20, 0)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"