version 5.2.0

This commit is contained in:
Kovid Goyal 2020-10-07 08:38:47 +05:30
parent 019f1c8fb2
commit 9e0f63cb2f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 47 additions and 1 deletions

View File

@ -22,6 +22,52 @@
# author: # author:
- version: 5.2.0
date: 2020-10-07
new features:
- title: "Browse annotations: Add a check box to restrict the displayed annotations to only the books currently selected in the calibre library."
tickets: [1897354]
- title: "Allow storing and calling functions in the calibre template language (Preferences->Template functions)"
- title: "Add a shortcut (Shift+V) to open the last read book."
tickets: [1897336]
bug fixes:
- title: "Fix import errors with some third party plugin on Windows"
- title: "Viewer: Fix toolbar show controls button not working when no book is open."
tickets: [1898598]
- title: "Viewer: Fix incorrect positioning of context menu for viewer toolbar."
tickets: [1898577]
- title: "MOBI Input: Fix regression that broke reading of some documents"
- title: "Bulk metadata search and replace: Fix some regular expression causing errors with the new regex engine"
- title: "Fix a regression that broke application of plugboards when sending by e-mail"
- title: "ODT Input: Fix a regression that broke conversion of ODT files with footnotes."
tickets: [1898441]
- title: "Viewer: Fix mouse wheel not working while selection bar is visible"
tickets: [1898413]
- title: "Viewer: Fix selection popup bar not always close to mouse when ending select-to-drag"
- title: "Fix calibre-server not exiting on Ctrl+c on Windows"
- title: "Content server OPDS feeds: Fix error if the metadata for a book contains particular unicode characters."
tickets: [1897410]
- title: "Edit book: Reports tool: Fix a regression that broke sorting."
tickets: [1898167]
- title: "HTMLZ Output: Fix an error when converting a document that has SVG images"
- version: 5.1.0 - version: 5.1.0
date: 2020-10-02 date: 2020-10-02

View File

@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv, a
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 1, 2) numeric_version = (5, 2, 0)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"