From 9e0f63cb2f1282575eb64f6602ee064a99ec9a65 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 7 Oct 2020 08:38:47 +0530 Subject: [PATCH] version 5.2.0 --- Changelog.yaml | 46 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index f551267411..669589aee8 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -22,6 +22,52 @@ # author: +- version: 5.2.0 + date: 2020-10-07 + + new features: + - title: "Browse annotations: Add a check box to restrict the displayed annotations to only the books currently selected in the calibre library." + tickets: [1897354] + + - title: "Allow storing and calling functions in the calibre template language (Preferences->Template functions)" + + - title: "Add a shortcut (Shift+V) to open the last read book." + tickets: [1897336] + + bug fixes: + - title: "Fix import errors with some third party plugin on Windows" + + - title: "Viewer: Fix toolbar show controls button not working when no book is open." + tickets: [1898598] + + - title: "Viewer: Fix incorrect positioning of context menu for viewer toolbar." + tickets: [1898577] + + - title: "MOBI Input: Fix regression that broke reading of some documents" + + - title: "Bulk metadata search and replace: Fix some regular expression causing errors with the new regex engine" + + - title: "Fix a regression that broke application of plugboards when sending by e-mail" + + - title: "ODT Input: Fix a regression that broke conversion of ODT files with footnotes." + tickets: [1898441] + + - title: "Viewer: Fix mouse wheel not working while selection bar is visible" + tickets: [1898413] + + - title: "Viewer: Fix selection popup bar not always close to mouse when ending select-to-drag" + + - title: "Fix calibre-server not exiting on Ctrl+c on Windows" + + - title: "Content server OPDS feeds: Fix error if the metadata for a book contains particular unicode characters." + tickets: [1897410] + + - title: "Edit book: Reports tool: Fix a regression that broke sorting." + tickets: [1898167] + + - title: "HTMLZ Output: Fix an error when converting a document that has SVG images" + + - version: 5.1.0 date: 2020-10-02 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6a7e6d969b..a9d6bf3b29 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, a import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (5, 1, 2) +numeric_version = (5, 2, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "