version 5.10.0

This commit is contained in:
Kovid Goyal 2021-01-22 07:56:39 +05:30
parent 5ab0639d1f
commit bfc9a8d5c5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 53 additions and 1 deletions

View File

@ -23,6 +23,58 @@
# - title by author
# }}}
{{{ 5.10.0 2021-01-22
:: new features
- [1911888] Bulk metadata edit: Add a new control to compress the cover image files for all selected books
- [1912212] Add support for the CB7 comic file file format
- [1912070] E-book viewer: Allow adding a button to the selection bar that copies the
currently selected text along with a calibre:// URL to show the text in the book
- Conversion: Insert metadata: Allow showing identifiers such as ISBN in the jacket page template
- Conversion: Insert metadata: Allow hiding entries in the jacket template when they are not present in the metadata
- [1912337] calibre-server --manage-users: Add a scriptable interface: calibre-server --manage-users -- help
- [1912070] E-book viewer: Add keyboard shortcuts to copy the current location to the clipboard
- [1912003] E-book viewer: Highlight all currently visible Table of Contents entries, not just the first
- Add a new tweak under Preferences->Tweaks->Author sort name algorithm to optionally recognize
common surname prefixes such as von, van, de, etc. when generating sort names.
:: bug fixes
- [1911470] E-book viewer: Move read aloud pop-up bar to the bottom of the screen in flow mode
- [1911218] E-book viewer: Fix scrolling with two fingers on touch pad on macOS not smooth
- [1911466] PDF Output: When converting fixed layout input documents fix anchors inserted for navigation sometimes being rendered as blue boxes
- [1904350] Edit book: Remove unused CSS: Fix selectors that don't match from CSS rules containing multiple selectors not being removed
- Bulk metadata download: Fix series number not being changes if the series is the same as the existing series
- E-book viewer: Fix a regression that caused non-HTML descriptions to not be displayed in the metadata page
- E-book viewer: Fix clock being displayed in 24 hr format on some systems even though system locale is set to use 12 hr format.
- Bulk metadata edit: Fix regression that inverted the meaning of the case sensitivity setting in the Search & replace tab
- calibredb list: Fix incorrect output when redirecting to file
:: improved recipes
- Jacobin
- Japan Times
- The Wall Street Journal
- Mediapart
}}}
{{{ 5.9.0 2021-01-08
:: 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, 9, 0)
numeric_version = (5, 10, 0)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"