From 38099ab36f8df075fe2437fbd72f0b79aeaa281e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Apr 2021 07:50:00 +0530 Subject: [PATCH] version 5.15.0 --- Changelog.txt | 69 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 70 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 4113ce58d6..3804d5ea78 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,75 @@ # - title by author # }}} +{{{ 5.15.0 2021-04-16 + +:: new features + +- [1917634] Allow auto scrolling through the list of books by pressing the X key or right clicking on the cover browser + +Useful to have a "slideshow" of book covers. The speed of scrolling can be controlled in Preferences->Look & feel->Cover browser + +- E-book viewer: Speed up first time open for EPUB files with lots of styling + +- E-book viewer preferences: Allow searching for keyboard shortcuts + +- Edit book: Allow editing WEBP images + +- Various improvements to the template language, see https://www.mobileread.com/forums/showthread.php?t=337573 + +- [1921610] E-book viewer: Show the current progress percentage in the bottom bar of the viewer controls. This can be customized in the viewer preferences under Headers and footers + +- [1921689] E-book viewer: Add an option under Preferences->Miscellaneous to not restore open panels such as Search, Table of Contents etc on restart + +- When exporting highlights as text or markdown also output top level chapter titles + +- [1922327] Allow downloading metadata from amazon.se + +- [1922591] Preferences->Tweaks: Allow specifying that calibre should open the book details window when double clicking on a book + +- [1922341] MOBI Output: Convert WebP images to PNG so they work with Amazon's software + +- [1921793] DOCX Input: When converting embedded fonts, replace spaces in the filename with underscores to keep the execrable epubcheck happy + +- E-book viewer: Selection bar: Add keyboard shortcuts for all buttons. Hover over a button in the bar to see the shortcut + + +:: bug fixes + +- [1924232] FB2 Output: Fix a regression in calibre 5 that caused paragraphs containing only non-breaking spaces to be removed + +- [1924187] Metadata comments editor: Fix setting block alignment destroying other block level properties + +- E-book viewer: Fix margins not being adjusted immediately when preferences are changed + +- [1921604] Edit book: Upgrade book internals: Fix skipping the NCX removal dialog not remembering the chosen option + +- [1922570] Conversion: When specifying a line-height do not apply it to the tag, as it is pointless and causes the execrable epubcheck to complain + +- E-book viewer: Improve scrolling behavior when extending the selection using keyboard shortcuts + +- E-book viewer: Fix read percent for HTML files that are rendered in a single screen being 0% rather than 100% + +- [1924598] E-book viewer: Highlights panel: Do not expand all sections when adding/deleting/modifying highlights + +- [1922503] CHM Input: Fix a regression in calibre 5.0 that broke opening of some files that dont specify a character encoding + +- EPUB2 metadata: Read ISBNs in identifier elements without schemes if they are valid ISBNs and no properly identified isbns are present + +- [1922309] Update Amazon metadata plugin for changes to amazon websites + +- Edit book: Fix detection of class names containing hyphens/underscores + +:: improved recipes +- New Scientist +- Irish Times +- 1843 +- The Straits Times + +:: new recipes +- Los Danieles – Columnas sin techo by CAVALENCIA +}}} + {{{ 5.14.0 2021-03-26 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 727dff8be2..9bf07c15fd 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, 14, 0) +numeric_version = (5, 15, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "