version 4.20.0

This commit is contained in:
Kovid Goyal 2020-07-03 07:41:13 +05:30
parent 46b2c9f082
commit 23580d97ab
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 45 additions and 1 deletions

View File

@ -20,6 +20,50 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 4.20.0
date: 2020-07-03
new features:
- title: "Edit book: Preview: Support displaying mathematics"
- title: "Kobo driver: Add support for the latest firmware version"
- title: "Allow copy/pasting dates from columns having different date display formats."
tickets: [1885004]
- title: "Book details panel: When right clicking on tags/authors/etc. allow finding them in the Tag browser easily."
tickets: [1884343]
- title: "Allow selecting individual items to delete in the Check library dialog."
tickets: [1884402]
- title: "Add an option to the wireless device driver to ignore device free space when sending books."
bug fixes:
- title: "Viewer: Fix turning pages in paged mode with a high precision touchpad to generate scroll events too fast"
- title: "Edit book: Fix pasting files from another editor instance causing unsaved changes in open editors to be lost."
tickets: [1885455]
- title: "Tag browser: Do not show counts for searches as they are always zero"
- title: "Check library: Do not abort if there are folders in the library that calibre does not have permission to access."
tickets: [1884544]
- title: "Amazon metadata download: Fix download of ratings not working from amazon.co.jp"
tickets: [1884400]
improved recipes:
- Popular Science
- Caravan Magazine
- Sports Illustrated
- Gazetta Prawna
new recipes:
- title: The Print
author: Kovid Goyal
- version: 4.19.0 - version: 4.19.0
date: 2020-06-19 date: 2020-06-19

View File

@ -6,7 +6,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 = (4, 19, 0) numeric_version = (4, 20, 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>"