version 3.18.0

This commit is contained in:
Kovid Goyal 2018-02-23 08:41:19 +05:30
parent 8601b46151
commit a76a438f92
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: 3.18.0
date: 2018-02-23
new features:
- title: "Browser viewer: Allow long tapping a word to look it up in a dictionary or search the internet for it."
tickets: [1738995]
bug fixes:
- title: "Conversion: Handle the deprecated type attribute on <ol> tags."
tickets: [1751148]
- title: "Fix metadata download from amazon stopped working because of a website change"
- title: "Fix re-ordering of columns causing split book splitter state not being restored on restart"
- title: "Fix errors when using strftime with unicode strings on non-utf-8 windows systems."
tickets: [1749219]
- title: "Split book view: Fix vertical scroll position of the two views getting out of sync after doing some searches."
tickets: [1748739]
- title: "Fix some edit widget appearing in the wrong place when editing in the right hand panel of the new split book list."
tickets: [1748713]
- title: "Portable build: Fix cache directory not always being auto-created"
tickets: [1747887]
- title: "Workaround for Qt 5.10 on Linux resetting the global font, preventing custom interface font settings from working"
improved recipes:
- New York Times
- The Economist
- Gosc
- Various Uruguayan recipes
- version: 3.17.0
date: 2018-02-09

View File

@ -6,7 +6,7 @@ from future_builtins import map
import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre'
numeric_version = (3, 17, 0)
numeric_version = (3, 18, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"