From 202cc22c648dd8e88835d17d923f168751feaf07 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 3 May 2013 09:49:20 +0530 Subject: [PATCH] version 0.9.29 --- Changelog.yaml | 48 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 896d32004c..5e6890a1a5 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,54 @@ # new recipes: # - 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 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 date: 2013-04-26 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 636be40395..54ff1355f5 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, 28) +numeric_version = (0, 9, 29) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "