From 28fc61d74e3fc6fd10d128dede4362097ea47429 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Jun 2021 08:05:51 +0530 Subject: [PATCH] version 5.22.0 --- Changelog.txt | 37 +++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index cd2db52b43..fcfedf07be 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,43 @@ # - title by author # }}} +{{{ 5.22.0 2021-06-25 + +:: new features + +- [1931646] E-book viewer: Allow clicking links in popup footnotes + +- Main book list: Scroll per pixel rather than per item by default. Can be returned to previous behavior via Preferences->Tweaks->Control behavior of book list + +- Linux: Drop support for the global menu bar + +:: bug fixes + +- [1932152] E-book viewer: Fix font sizes specified in absolute units not being honored in locales where the decimal separator is not the period + +- [1931566] E-book viewer: Fix searching for short strings in text with lots of similar entries displaying incorrect matches + +- [1932392] MOBI Output: Fix using percentage units for margins resulting in too large margins when using the tablet output profile + +- [1931599] E-book viewer: Fix back button not working after jumping to a bookmark + +- [1932992] Content server: OPDS feed: Fix incorrect up URL in category group feeds + +- [1933559] Content server: Fix a regression in the previous release that broke editing of series metadata + +- E-book viewer: Fix scrolling backwards by screen-fulls not working with very large page margins. + +- MOBI Input: Fix a regression in calibre 5 that broke processing of Haodoo format files + +- Conversion: Fix the smarten punctuation option not applying to inserted jacket page + +:: improved recipes +- TheAtlantic.com +- Hindu +- People Daily + +}}} + {{{ 5.21.0 2021-06-11 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 5e347254a5..3f0d8e8c33 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, collections.abc __appname__ = 'calibre' -numeric_version = (5, 21, 0) +numeric_version = (5, 22, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "