diff --git a/Changelog.txt b/Changelog.txt index 60e73f6acb..fc3d067acc 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -6,7 +6,7 @@ # to the ticket list. # Also, each release can have new and improved recipes. -# {{{ 5.x.0 2020-xx-xx +# {{{ 5.x.0 2021-xx-xx # # :: new features # @@ -23,6 +23,48 @@ # - title by author # }}} +{{{ 5.9.0 2021-01-08 + +:: new features + +- Annotations: Allow exporting highlights and bookmarks in Markdown format, with a link to open the book at the highlight location + +- [1909529] Content server viewer: Allow exporting all highlights + +- [1909339] Icon rules editor: Add a button to open the icons folder + +- [1909258] Quickview: Dropdown menu for all selectable columns + +:: bug fixes + +- Fix a regression that cause the Content server to crash if a client closed a connection during a file transfer on macOS and Linux. + +- [1909224] LRF Output: Fix conversion broken in calibre 5 when font size rescaling is active + +- E-book viewer: Cancel any speech in progress when hiding the selection popup bar after triggering the speak aloud action on it + +- [1909332] Color/icon rules editor: Fix duplicate rule button not working correctly + +- [1909291] Fix dropping files onto book details causing an error if the confirmation dialog is disabled + +:: improved recipes +- General Knowledge Today +- El Pais +- USA Today +- WirtchaftsWoche Online +- The Guardian +- Arcamax +- Miami Herald +- The Seattle Times + +:: new recipes + +- Mallorca Zeitung by VoHegg +- T-Online by VoHegg +- El Diario by Dirk Gómez + +}}} + {{{ 5.8.1 2020-12-24 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ac97987fc7..d6edf36fc1 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, 8, 1) +numeric_version = (5, 9, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "