From ae21888f900dd7bcdfa190f171e44f8157051fe9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 28 May 2021 06:23:11 +0530 Subject: [PATCH] version 5.19.0 --- Changelog.txt | 35 +++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index ba33bce403..7ec06a189b 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,41 @@ # - title by author # }}} +{{{ 5.19.0 2021-05-28 + +:: new features + +- E-book viewer: Add a preference under Scrolling behavior to reverse the tap zones used to turn pages. So tapping on the left goes forward and the right backward + + +:: bug fixes + +- [1929862] E-book viewer: Fix regression in 5.15 that caused incorrect display of font sizes that contain a period and use absolute units + +- [1929240] PDF Output: Fix font kerning issues with some TrueType fonts + +- [1929267] Edit book: Fix a regression in 5.18 that broke editing/creating saved searches + +- [1919025] Windows: Fix for standalone ToC Editor not working on systems where Qt WebEngine causes a crash at exit + +- Windows MTP driver: When scanning an MTP device such as an Android phone ignore folders that Windows fails to enumerate instead of failing with an error + +- ToC Editor: Fix a regression that broke choosing split points in some XHTML files + +- [1929465] PDB Input: Fix a regression in calibre 5 that broke processing some plucker format PDB files + +- Edit book: Fix sorting in spell check dialog on language broken for books that have unknown languages + +- Annotations browser: Fix a typo that broke sorting for highlights + +- [1909730] Annotations browser: When showing a highlight preserve paragraph boundaries for multi-paragraph highlights + +- Viewer highlights panel: Fix the "Edit notes" link not saving the changes + +- [1929164] E-book viewer: When using a right click/shift-click to adjust the selection, move the section boundary that is closer to the click point + +}}} + {{{ 5.18.0 2021-05-21 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6c41134e19..42c1acb8f1 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, 18, 0) +numeric_version = (5, 19, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "