From dfab2e1a72580bfe0c2f31dd0262466d888992a4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 2 Oct 2020 09:12:34 +0530 Subject: [PATCH] version 5.1.0 --- Changelog.yaml | 56 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 57 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 0c44a9895d..f551267411 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -5,6 +5,62 @@ # for important features/bug fixes. # Also, each release can have new and improved recipes. +# - version: 5.x.0 +# date: 2020-xx-xx +# +# new features: +# - title: " +# +# bug fixes: +# - title: " +# +# improved recipes: +# - +# +# new recipes: +# - title: +# author: + + +- version: 5.1.0 + date: 2020-10-02 + + new features: + - title: "Enhancement: allow using templates in search expressions" + + - title: "Viewer lookup panel: Add a checkbox to disable automatic update of lookup when the selected text changes." + tickets: [1897435] + + - title: "Viewer: Allow skipping the confirmation when using the remove highlight button in the popup bar." + tickets: [1897415] + + bug fixes: + - title: "ToC Editor: Fix bulk rename of entries not working" + tickets: [1897618] + + - title: "Linux: Fix right clicking on system tray icon not working" + tickets: [1897571] + + - title: "Fix User category based searches unreliable dues to caching issues" + tickets: [1897356] + + - title: "PDF Output: Dont fail if the input document has an html file identified as the cover" + + - title: "Catalog generation: Fix a regression that broke generating catalogs if books with no comments are present." + tickets: [1897467] + + - title: "Windows: Fix error on first run of calibre after install/upgrade" + tickets: [1897314] + + - title: "Viewer: Fix copy to clipboard button in toolbar not working" + + - title: "Viewer: Fix copy to clipboard not copying text as HTML to clipboard in addition to plain text" + tickets: [1897297] + + - title: "macOS: Fix some drop down menus such as in the ToC editor and cover generation in the Edit metadata dialog not working" + tickets: [1897409] + + - version: 5.0.1 date: 2020-09-25 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 500eaae9f6..6664ecc10c 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, 0, 1) +numeric_version = (5, 1, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "