From cc59241524cbe8078466eb04f5760470486c5c7c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 Jun 2013 08:22:08 +0530 Subject: [PATCH] version 0.9.34 --- Changelog.yaml | 47 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 1d8dcb88a9..b6fc754c87 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,53 @@ # new recipes: # - title: +- version: 0.9.34 + date: 2013-06-07 + + new features: + - title: "Conversion of Microsoft Word documents (.docx files generated by Word 2007 or newer)" + type: major + description: "DOCX files created with Microsoft Word 2007 or newer can now be converted by calibre. The converter has support for list, tables, images, all types of text formatting, footnotes, endnotes and even dropcaps. A sample docx file showing the capabilities of the converter is available: http://calibre-ebook.com/downloads/demos/demo.docx Note that this code is still very new, so there are more than likely a few bugs waiting to be squashed." + + - title: "Kobo driver: Support for the newly released firmware 2.6.1. Also remove empty shelves from the Aura HD home page when deleting books." + tickets: [1187791] + + - title: "E-book viewer: Add Keyboard shortcuts for Back and Forward (Alt+Left, Alt+Right)" + tickets: [1186928] + + - title: "Allow right clicking on an author in Book Details to manage that author, i.e. change the author name, sort value or link." + tickets: [1186192] + + bug fixes: + - title: "Fix regression that broke FB2 input in the previous release." + tickets: [1186213] + + - title: "Catalog generation on OS X: Fix handling of some unicode characters" + tickets: [1066922] + + - title: "HTML Input: Avoid spurious log warnings about unspecified language/creator when these are actually specified on the command line." + tickets: [1186899] + + - title: "MOBI Output: Fix regression in 0.9.31 that caused vertical margins specified on some block level elements to be ignored." + tickets: [1186533] + + - title: "ToC Editor: Handle ebooks that have

tags inside the tags. Instead of erroring out, the

tags are automatically moved into ." + tickets: [1186298] + + - title: "Linux build: Include the ffi libs from both gcc and libffi." + tickets: [1186148] + + - title: "When deleting custom recipes, use recycle bin." + tickets: [1186142] + + improved recipes: + - Folha de Sao Paolo + - Metro News NL + + new recipes: + - title: Seventh Guard + author: koliberek + - version: 0.9.33 date: 2013-05-31 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 3cf610e740..4c769a1fba 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, 33) +numeric_version = (0, 9, 34) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "