version 2.63.0

This commit is contained in:
Kovid Goyal 2016-07-22 07:51:05 +05:30
parent 051d9e5d35
commit 04e4a1a10e
2 changed files with 43 additions and 1 deletions

View File

@ -20,6 +20,48 @@
# new recipes:
# - title:
- version: 2.63.0
date: 2016-07-22
new features:
- title: "News download: Allow controlling which periodicals are automatically sent to a specific email in Preferences->Sharing by email"
- title: "Edit Book: Update regex engine to support Unicode 9.0"
bug fixes:
- title: "Edit metadata dialog: Fix pasting ISBN from clipboard not stripping garbage characters after a valid ISBN."
tickets: [1604956]
- title: "Edit Book: Also refresh the Preview and Live CSS panels after performing any action that changes files other than the currently displayed file."
- title: "E-book viewer: Fix the show metadata button not reading EPUB 3 metadata"
- title: "MOBI Output: Fix <hr> not being rendered as full-width in old MOBI files"
- title: "CSV Catalog output: Fix incorrect formatting of is_multiple custom columns."
tickets: [1602908]
- title: "CSV Catalog Output: Separate multiple authors with & instead of comma. Fixes problems when the author name contains commas."
- title: "EPUB 3 metadata: Fix updating metadata in EPUB 3 files not overwriting existing authors."
tickets: [1602227]
- title: "Fix duplicate detection when adding books not working when the book title has leading or trailing whitespace"
- title: "Book details panel: Pick the color used for links from the current system color theme"
- title: "Windows: Fix file selection dialogs blurry on HiDPI monitors"
improved recipes:
- Gosc Niedzielny
- Nikkei Free
- Financial Times (UK)
- Foreign Affairs
- Berlin Policy Journal
- Gazet van Antwerpen
- Hurriyet
- version: 2.62.0
date: 2016-07-08

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (2, 62, 0)
numeric_version = (2, 63, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"