version 0.9.34

This commit is contained in:
Kovid Goyal 2013-06-07 08:22:08 +05:30
parent f83d72a564
commit cc59241524
2 changed files with 48 additions and 1 deletions

View File

@ -20,6 +20,53 @@
# new recipes: # new recipes:
# - title: # - 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 <p> tags inside the <head> tags. Instead of erroring out, the <p> tags are automatically moved into <body>."
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 - version: 0.9.33
date: 2013-05-31 date: 2013-05-31

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'
__appname__ = u'calibre' __appname__ = u'calibre'
numeric_version = (0, 9, 33) numeric_version = (0, 9, 34)
__version__ = u'.'.join(map(unicode, numeric_version)) __version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>" __author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"