From c0f9091f683d390f1f5ac5f73c2f3a5a52fd12de Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Nov 2020 07:28:49 +0530 Subject: [PATCH] version 5.5.0 --- Changelog.txt | 59 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 79b78cc318..0cbba97e8e 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,65 @@ # - title by author # }}} +{{{ 5.5.0 2020-11-13 + +:: new features + +- Support the calibre:// URL scheme + + Clicking on calibre:// URLs can be used to have calibre perform various actions. + For details, see: https://manual.calibre-ebook.com/url_scheme.html + +- Viewer: Show calibre:// URL for current book in the Goto->Location panel + +- [1902518] Edit book: Add an action to the right click menu for tabs to close tabs to the right of the current tab. + +- [1902413] Add ability to copy tag, publisher and author in Book details panel by right-clicking + +- [1902326] Annotations browser: Add a context menu for common actions. + +- [1899839] Annotations browser: Show a dot for highlights with notes. + +- [1902227] Edit book: Saved searches panel: Allow copying the current saved search to the regular search panel by clicking the Export button. + +- Windows: Fix command line arguments not working for the portable.exe launchers + +- Viewer: back and forward buttons on the mouse now trigger the back and forward actions + +- [1902313] Option to mark all books with annotations/bookmarks + +- Various minor improvements to how keyboard focus is handled in the Tag browser + +:: bug fixes + +- [1903294] Edit book: Fix regression in calibre 5 that caused an error when managing user dictionaries. + +- [1903831] Viewer: Fix previous/next buttons iterating over removed bookmarks + +- [1903825] Welcome wizard: Fix changing the language causing a empty folder to be created. + +- [1903699] Viewer: Fix regression causing custom shortcuts with shift key pressed not working + +- [1903423] Viewer: In dark mode when showing images with transparency in the popup use a light background color as most images are designed with a light background color in mind. + +- [1903428] Fix a regression in the previous release that broke conversion of DJVU files + +- [1903363] Metadata edit: "Set to Undefined" button missing on integer columns. + +- [1903086] Entry remains underlined in Tag Browser after clearing filter + +- [1902126] XML Catalogs: Fix languages field missing + +- Fix a regression that broke loading of third party plugins that are encoded in an encoding other than UTF-8 + +- macOS: Fix viewer not responding to cmd+c to copy text by default + +- Windows: Fix sending email on computers with non-ASCII computer names + +:: improved recipes +- Spectator Magazine + +}}} {{{ 5.4.2 2020-10-30 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 2cdf7b9e3d..36a4478a4d 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, 4, 2) +numeric_version = (5, 5, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "