version 0.9.0

This commit is contained in:
Kovid Goyal 2012-09-28 10:04:41 +05:30
parent e285358acb
commit a71bfb119a
2 changed files with 46 additions and 1 deletions

View File

@ -19,6 +19,51 @@
# new recipes:
# - title:
- version: 0.9.0
date: 2012-09-28
new features:
- title: "For a summary of the major changes in calibre between 0.8 and 0.9, see http://calibre-ebook.com/new-in/nine"
type: major
bug fixes:
- title: "KF8 Output: Fix handling of & < and > entities in the text. They were sometimes being incorrectly unescaped."
- title: "Calibre portable: Add a manifest to the portable installer exe to prevent the application compatibility wizard from warning about a possible failed installation on windows 7. Also fixes installer requiring admin privileges on some computers"
tickets: [1057042]
- title: "EPUB metadata: Fix book producer not being set when updating EPUB metadata"
- title: "EPUB metadata: Fix incorrect namespace on the role attribute of <dc:creator> tags when updating the metadata in EPUB"
- title: "Get Books: Fix incorrect price retrieval from ebooks.com."
tickets: [1055785]
- title: "MTP windows driver: Fix main memory and storage card sometimes swapped"
tickets: [1055129]
- title: "PDF Output: On windows, remove any embedded fonts before generating the PDF as on windows, Qt generates image based PDFs when embedded fonts are present."
tickets: [1053906]
- title: "MTP windows driver: Do not try to connect to unsuitable devices such as the iPhone."
tickets: [1054562]
- title: "KF8 Input: Handle files that use non ascii paths/anchor names in the guide entries."
tickets: [1053751]
new recipes:
- title: Pubblico Giornale
author: iusvar
improved recipes:
- Monitor Online
- El Pais
- Chronicle of Higher Education
- Baltimore Sun
- Mac World
- Maximum PC
- Financial Times UK
- version: 0.8.70
date: 2012-09-21

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, 8, 70)
numeric_version = (0, 9, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"