version 4.9.0

This commit is contained in:
Kovid Goyal 2020-01-23 07:18:35 +05:30
parent 78e873a13a
commit 5b19e550e3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 41 additions and 1 deletions

View File

@ -20,6 +20,46 @@
# new recipes:
# - title:
- version: 4.9.0
date: 2020-01-23
new features:
- title: "Viewer: Much improved search functionality"
description: "Now all matches are displayed when searching in a side bar with a few words of context. Also supports searching using regular expressions."
type: major
tickets: [1834247]
- title: "Edit book: The Check book function has a new, improved CSS checker with support for CSS 3"
- title: 'Edit book: Add an "Open with" action to the context menu of the files browser to easily open files with external programs.'
tickets: [1860462]
- title: "Viewer toolbar: Add button to easily change color schemes"
tickets: [1859547]
bug fixes:
- title: "Comments editor: Fix inserted blank paragraph being rendered as two lines."
- title: "PDF Output: Fix conversion of files containing <canvas> elements failing."
tickets: [1859040]
- title: "Viewer: Fix failure to open some books that contain unparseable URLs."
tickets: [1858836]
- title: "Viewer: Fix data displayed in side margins getting moved out of position when mouse hovers over side margin."
tickets: [1858263]
- title: "Book details panel: When right clicking to save the cover, replace invalid characters in the suggested filename"
- title: "Fix harmless error popup when adding SSL key/certificate in server settings"
tickets: [1858198]
- title: "Dark mode: Fix colors in remove all formats except dialog"
improved recipes:
- Liberty Times
- version: 4.8.0
date: 2020-01-03

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