version 0.9.32

This commit is contained in:
Kovid Goyal 2013-05-24 09:00:45 +05:30
parent aabb11551d
commit 0a246d7ceb
2 changed files with 51 additions and 1 deletions

View File

@ -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 <metadata> 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

View File

@ -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 <kovid@kovidgoyal.net>"