From 9f426ed9c17f22b52ea09066de1a56f7c455d14f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 21 Dec 2015 09:27:33 +0530 Subject: [PATCH] version 2.47.0 --- Changelog.yaml | 26 ++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index d05ab3d7b7..2fba2bc3b2 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,32 @@ # new recipes: # - title: +- version: 2.47.0 + date: 2015-12-21 + + new features: + - title: "A new tool to easily export and import all calibre data -- books, settings and plugins" + description: "Right click the calibre icon in the main calibre toolbar and choose \"Export/import all calibre data\" to run this tool. It is useful if you want to move to a new computer or duplicate your calibre setup on a second computer, with minimal effort. This tool is very new, so if you run into problems, please report bugs. You can always use the old manual method of copying library folders as a fallback." + type: major + + - title: "Get Books: Add plugins for Amazon Australia and Amazon India. Also restore the Amazon EU plugins." + tickets: [1526089] + + bug fixes: + - title: "PDF Input: Fix conversion of PDF documents that contain ASCII control codes in their outlines not working." + tickets: [1527697] + + - title: "Edit book: Fix image compression utilities opening a new console per invocation on windows" + + - title: "Image compression: If the compression tools return a zero byte image ignore it and use the original image" + + - title: "Fix a regression that caused book titles in the Book Details panel to become clickable" + + improved recipes: + - Fox News + - Le Devoir + - Le Monde diplomatique.fr + - version: 2.46.0 date: 2015-12-11 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 40b08413d2..84591e06f0 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, 46, 0) +numeric_version = (2, 47, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "