version 0.9.29

This commit is contained in:
Kovid Goyal 2013-05-03 09:49:20 +05:30
parent 2a50c69e86
commit 202cc22c64
2 changed files with 49 additions and 1 deletions

View File

@ -20,6 +20,54 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 0.9.29
date: 2013-05-03
new features:
- title: "Bulk metadata download: Allow reviewing of the downloaded metadata before it is applied"
- title: "FB2 Output: Write ISBN, pubdate, tags and publisher metadata when creating fb2 files"
tickets: [1174047]
bug fixes:
- title: "When reading metadata from EPUB 3 files, use the first <dc:title> element rather than the last."
tickets: [1175184]
- title: "Fix regression causing the search query parser to not parse search string containing newlines/tabs instead of spaces correctly"
tickets: [1174629]
- title: "Kobo driver: Fix covers written to wrong place on OS X/linux when books sent to SD card. Fix covers not sent to SD card is images directory missing."
tickets: [1174147,1174126]
- title: "Fix 'Preferences->Behavior->Virtual library to use when this library is opened' being applied only on calibre startup and not when switching to the library"
- title: "PDF metadata: When rendering the first page as the cover, respect the PDF CropBox."
tickets: [1173795]
- title: "PDF Output: Fix link generation broken on windows when converting epubs if the filenames contained uppercase letters."
tickets: [1169795]
- title: "Tolino driver: Fix card and main memory swapped on windows"
tickets: [1173544]
- title: "FB2 Output: Fix images being ignored when converting a EPUB with image filenames that contain URL unsafe characters."
tickets: [1173351]
- title: "EPUB Input: Fix page margins specified in Adobe page template files with incorrect mime-types not being removed."
improved recipes:
- The New Republic
- io9
- What if
- Orlando Sentinel
- Read It Later recipe
- Smithsonian
- Business Week Magazine
new recipes:
- title: Diario Extra
author: Douglas Delgado
- version: 0.9.28 - version: 0.9.28
date: 2013-04-26 date: 2013-04-26

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, 28) numeric_version = (0, 9, 29)
__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>"