version 0.9.38

This commit is contained in:
Kovid Goyal 2013-07-05 08:27:29 +05:30
parent 93264786e1
commit 849465ccce
2 changed files with 51 additions and 1 deletions

View File

@ -20,6 +20,56 @@
# new recipes:
# - title:
- version: 0.9.38
date: 2013-07-05
new features:
- title: "Book polishing: Add option to embed all referenced fonts when polishing books using the 'Polish Books' tool."
tickets: [1196038]
- title: "DOCX Input: Add support for clickable (hyperlinked) images"
tickets: [1196728]
- title: "DOCX Input: Insert page breaks at the start of every new section"
tickets: [1196728]
- title: "Drivers for Trekstor Pyrus Maxi and PocketBook Surfpad 2"
tickets: [1196931, 1182850]
- title: "DOCX Input: Add support for horizontal rules created by typing three hyphens and pressing enter."
bug fixes:
- title: "Fix detection of SD Card in some PRS-T2N devices"
tickets: [1197970]
- title: "MOBI Input: Fix a regression that broke parsing of MOBI files with malformed markup that also used entities for apostrophes."
ticket: [1197585]
- title: "Get Books: Update Woblink store plugin"
- title: "Metadata download dialog: Prevent the buttons from being re-ordered when the Next button is clicked."
- title: "PDF Output: Fix links that point to URLs with query parameters being mangled by the conversion process."
tickets: [1197006]
- title: "DOCX Input: Fix links pointing to locations in the same document that contain multiple, redundant bookmarks not working."
- title: "EPUB/AZW3 Output: Fix splitting on page-break-after with plain text immediately following the split point causing the text to be added before rather than after the split point."
tickets: [1196728]
- title: "DOCX Input: handle bookmarks defined at the paragraph level"
tickets: [1196728]
- title: "DOCX Input: Handle hyperlinks created as fields"
tickets: [1196728]
improved recipes:
- iprofessional
new recipes:
- title: Democracy Now
author: Antoine Beaupre
- version: 0.9.37
date: 2013-06-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, 37)
numeric_version = (0, 9, 38)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"