From 4279f12183902adcc37ba880ccbaf0f4a57c0aad Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 Feb 2021 08:35:01 +0530 Subject: [PATCH] version 5.12.0 --- Changelog.txt | 28 ++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index b5e0625918..16e0f1aba0 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,34 @@ # - title by author # }}} +{{{ 5.12.0 2021-02-26 + +:: new features + +- [1915773] E-book viewer: When searching start the search from the current position, jumping to the first match at or after the current page + +- [1916411] E-book viewer: Have the Table of Contents view automatically scroll to keep the chapter being read currently visible + +- Various improvements to the calibre template language, see https://www.mobileread.com/forums/showthread.php?t=337573 + +- Edit book: File browser: Show total size of items in category when hovering over category with mouse + +- Kobo driver: Add support for latest firmware and also an option to choose the color used for cover letterboxing + +:: bug fixes + +- [1915685] E-book viewer: Fix selection popup bar sometimes going off screen when dragging up to the top line of text + +- Get books: Update the Biblio and Chitanka stores for website changes + +- [1915770] Edit book: Fix editing of JavaScript files not working + +:: improved recipes +- Slate +- Harper's Magazine + +}}} + {{{ 5.11.0 2021-02-12 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 9374172bfc..c32a9d32ed 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, 11, 0) +numeric_version = (5, 12, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "