version 5.15.0

This commit is contained in:
Kovid Goyal 2021-04-16 07:50:00 +05:30
parent a0460762ed
commit 38099ab36f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 70 additions and 1 deletions

View File

@ -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 <html> 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

View File

@ -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 <kovid@kovidgoyal.net>"