From 84af6151922930d5618fac41b8bf646855033611 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 Dec 2014 09:31:27 +0530 Subject: [PATCH] version 2.14.0 --- Changelog.yaml | 47 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 474cb5a6c4..29de38fcac 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,53 @@ # new recipes: # - title: +- version: 2.14.0 + date: 2014-12-26 + + new features: + - title: "Metadata review dialog: Automatically insert series number when selecting a series from the completion dropdown. Also if the user does not specify a series number, use 1 as the default, instead of not setting the series." + tickets: [1404692] + + bug fixes: + - title: "Fix regression that broke error reporting for save to disk for books that contain no formats." + tickets: [1405674] + + - title: "Metadata download: Fix metadata download not working for titles that contain a apostrophes in languages other than English." + tickets: [1403677] + + - title: "Fix deleting a book from both the library and the device causing the next selected book to be incorrect, when the library is sorted by the On Device column." + tickets: [1404629] + + - title: "FB2 Output: Fix generation of FB2 sections based on a multi-level Table of Contents in the input document." + tickets: [1393514] + + - title: "Tolino Shine driver: Fix option to swap main memory and SD card not working on OS X." + tickets: [1404793] + + - title: "FB2 Input: Workaround for broken FB2 files produced by convertonlinefree.com." + tickets: [1404701] + + - title: "OS X: Workaround for OS X installs that have incorrect permissions set on their home directories. calibre will now no longer refuse to start on such machines." + + - title: "MOBI Input: Dont crash on corrupted JPG images." + tickets: [1404590] + + - title: "Fix column icons not displaying for custom comments type columns" + tickets: [1404234] + + - title: "Metadata review dialog: Show a confirmation for the 'Reject all remaining' button." + tickets: [1404386] + + improved recipes: + - Nikkei News + + new recipes: + - title: OSEL.cz + author: spacekpe + + - title: Courier Mail + author: Krittika Goyal + - version: 2.13.0 date: 2014-12-19 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 72d23b739b..7ce1acf9a1 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (2, 13, 0) +numeric_version = (2, 14, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "