version 0.9.1

This commit is contained in:
Kovid Goyal 2012-10-05 10:14:17 +05:30
parent ea077b3b5e
commit 50c4615ab1
2 changed files with 60 additions and 1 deletions

View File

@ -19,6 +19,65 @@
# new recipes:
# - title:
- version: 0.9.1
date: 2012-10-05
new features:
- title: "New driver for the Kobo Touch version 2.0+ firmware and Kobo Glo and Mini. See http://www.mobileread.com/forums/showthread.php?t=192863 for details"
tickets: [1024983,1059585]
- title: "Driver for Motorola Defy XT"
tickets: [1061903]
- title: "Wireless driver: Always use automatic metadata management, regardless of the setting in Preferences->Devices"
- title: "Sending books by email: Allow sending to multiple email addresses at once separated by commas."
tickets: [1052332]
- title: "KF8 Output: Add the css passed in through the extra css conversion option to the generated inline ToC."
tickets: [1052343]
- title: "Windows: No longer use fontconfig to scan the system for available fonts. Instead use the Windows API. Should fix crashes/instability caused by fonts that fontconfig cannot handle"
- title: "When editing a blank (undefined) published date in the edit metadata dialog, have the calendar popup jump to the current date instead of the date 1-1-101"
tickets: [1058531]
- title: "FB2 Input: Add support for th, code and strikethrough tags and also rowspan, colspan and align attributes."
tickets: [1059351,1058591]
bug fixes:
- title: "Get Books: Update Woblink"
- title: "Position the next selected book better after deleting multiple books from the library view"
tickets: [1051135]
- title: "Allow using the Enter key to select the cover in the metadata download dialog"
tickets: [1060472]
- title: "PDF Output: Handle embedded fonts better on linux"
- title: "HTML Input: Guess mimetype correctly for references to image files without file extensions."
tickets: [1059349]
- title: "Catalog generation: Workaround for bug in the ICU library on older OS X systems that caused catalog generation to fail when certain non-ascii characters are present in the metadata."
tickets: [1057862]
- title: "Wireless driver: Do not abort if BonJour registration fails, as we can still use broadcast to connect"
- title: "KF8 Output: Fix invalid output being generated for some files with very large blocks of contiguous non-ascii text"
improved recipes:
- FC Knudde
- Stamgaten
- Foreign Policy
- Washington Post
- Twitch Films
- Nature News
new recipes:
- title: IOL News and The New Age
author: Darko Miletic
- version: 0.9.0
date: 2012-09-28

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