diff --git a/Changelog.txt b/Changelog.txt index 7ec06a189b..ee624c6320 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 42c1acb8f1..72775bb4ca 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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 "