From 8861f5019aebea8ef6c842b9450157e1b3b07477 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 31 Jul 2020 08:38:38 +0530 Subject: [PATCH] version 4.22.0 --- Changelog.yaml | 37 +++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index d6389888de..afaf37d579 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,43 @@ # new recipes: # - title: +- version: 4.22.0 + date: 2020-07-31 + + new features: + - title: "Edit book: In dark mode, make the preview panel also dark." + tickets: [1888071] + + - title: "PDF Output: Headers/footers: Allow displaying the current page number and total number of pages in the top level section/chapter." + tickets: [1889000] + + - title: "Edit book: Show EPUB version in window title" + + - title: "Allow testing if a number column is set or not set in coloring/icon/emblem rules." + tickets: [1888456] + + - title: "Viewer: Add a setting to control how many pixels a scroll wheel should generate before triggering a page turn" + + bug fixes: + - title: "Edit book: Fix a regression in the previous release that caused poor performance when editing large files." + tickets: [1889047] + + - title: "DOCX Input: Leave undefined text colors in the input document as undefined" + tickets: [1888897] + + - title: "Viewer: Fix using a very small font step size not working." + tickets: [1888609] + + - title: "Font scanner: Also scan the new win 10 local font paths" + tickets: [1888798] + + - title: "Viewer: Fix typing values in font size adjust control not working" + + improved recipes: + - Respekt + - The Atlantic + + - version: 4.21.0 date: 2020-07-16 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 40756e1804..6a60c3d501 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv, a import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (4, 21, 0) +numeric_version = (4, 22, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "