version 4.10.0

This commit is contained in:
Kovid Goyal 2020-02-07 06:36:17 +05:30
parent 09ecff273f
commit fc019d1e78
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 37 additions and 1 deletions

View File

@ -20,6 +20,42 @@
# new recipes:
# - title:
- version: 4.10.0
date: 2020-01-07
new features:
- title: "Viewer: When searching have single and double quotes match their curly variants as well."
tickets: [1861715]
bug fixes:
- title: "Fix a regression that caused the edit metadata individually and convert individually actions to use the bulk actions when multiple books are selected."
- title: "Linux: Fix a crash caused by broken/incompatible CUPS Qt system plugin."
tickets: [1861741]
- title: "Viewer: Fix search shortcut button not focusing search input if the search panel is placed in a tab or a floating window"
- title: "Update Google Images cover download plugin for website markup changes"
tickets: [1862034]
- title: "Catalog generation: Ignore invalid pubdates"
- title: "Viewer: Stop autoscroll when changing page layout mode."
tickets: [1861621]
- title: "zipfile: Fix regression that broke handling of zipfiles with internal filenames not encoded in UTF-8."
tickets: [1860889]
- title: "Check Book: Turn off unique headings CSS warning"
- title: "DOCX Output: When a list item contains a nested listed but no text, it should be output as an empty list item."
improved recipes:
- The New Yorker
- Financiele Dagblad
- version: 4.9.1
date: 2020-01-23

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
__appname__ = 'calibre'
numeric_version = (4, 9, 1)
numeric_version = (4, 10, 0)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"