version 4.6.0

This commit is contained in:
Kovid Goyal 2019-12-13 01:41:30 +05:30
parent b509cfefbc
commit e1570706e1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 31 additions and 1 deletions

View File

@ -20,6 +20,36 @@
# new recipes:
# - title:
- version: 4.6.0
date: 2019-12-13
new features:
- title: "Windows 10: Add support for the dark mode."
type: major
description: "If you turn on dark mode under the Windows Settings->Personalisation->Colors and restart calibre it will use dark colors. Can also be enabled by setting the CALIBRE_USE_DARK_PALETTE environment variable."
- title: "Polish books tool: Add a setting to add or remove soft hyphens from the book text"
- title: "Viewer: Re-enable the old reference mode from calibre 3.x"
bug fixes:
- title: "PDF Output: Fix the option to break long words at the end of lines not working since calibre 4."
tickets: [1854349]
- title: "DOCX Input: Fix incorrect font sizes for footnote references in paragraphs that have text with multiple font sizes."
tickets: [1855403]
- title: "DOCX Input: Avoid nested <sup> tags for footnote references"
- title: "Viewer: Fix max text width/height settings not being applied correctly on window resize."
tickets: [1854211]
- title: "Viewer: Auto-expand entries in the Table of Contents when viewing the corresponding location in the book."
- title: "Viewer: When creating a new bookmark, if there is selected text use it as the default bookmark title."
tickets: [1854611]
- version: 4.5.0
date: 2019-11-29

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