From 0a246d7cebe0a141fc9cfed2eab4342988f7a55d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 May 2013 09:00:45 +0530 Subject: [PATCH] version 0.9.32 --- Changelog.yaml | 50 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 08dec027bf..3866e2db80 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,56 @@ # new recipes: # - title: +- version: 0.9.32 + date: 2013-05-24 + + new features: + - title: "Show the number of currently selected books in the status bar at the bottom of the book list" + + - title: "Driver for PocketBook Touch 623 and Yarvik tablet Xenta 13c" + tickets: [1182850, 1181669] + + - title: "When editing dates such as published, allow pressing the minus key to clear the date and the = key to set the date to today." + tickets: [1181449] + + bug fixes: + - title: "EPUB/AZW3 Output: Fix regression that caused erros when trying to convert documents that have URLs with invalid (non-utf-8) quoting." + tickets: [1181049] + + - title: "When backing up metadata automatically remove XML invalid chars, instead of erroring out" + + - title: "ebook-viewer: Fix --debug-javascript option causing an error when running from a binary build on os x and linux" + + - title: "Fix switch library dialog and menu both popping up when clicking the library button in some window managers" + + - title: "Apple driver: Fix a regression in 0.9.31 that could cause sending books to the device to hang" + + - title: "When setting metadata using the edit metadata dialog, convert newlines, tabs etc. to normal spaces" + tickets: [1182268] + + - title: "EPUB/AZW3 Output: Fix pages that contain only an svg image being regarded as empty and removed during splitting" + + - title: "AZW3 Input: Handle files that use unnecessary svg: prefixes." + tickets: [1182257] + + - title: "EPUB Input: Handle EPUB files that have no section in their OPF." + tickets: [1181546] + + - title: "Get Books: Fix Foyles UK store plugin." + tickets: [1181494] + + improved recipes: + - Wall Street Journal + - Various Polish news sources + - Handelsblatt + - The Australian + - Las Vegas Review + - NME + + new recipes: + - title: WirtschaftsWoche Online + author: Hegi + - version: 0.9.31 date: 2013-05-17 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0b21562fcf..d7c24932f7 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 = (0, 9, 31) +numeric_version = (0, 9, 32) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "