version 0.8.29

This commit is contained in:
Kovid Goyal 2011-12-02 08:23:42 +05:30
parent 315c50a1aa
commit 9fa70f1dc5
2 changed files with 82 additions and 11 deletions

View File

@ -19,6 +19,77 @@
# new recipes:
# - title:
- version: 0.8.29
date: 2011-12-02
new features:
- title: "When searching for author names with accented characters, allow the non accented version to match. For example, searching for Nino will now match Niño."
tickets: [879729]
- title: "Driver for Blackberry Playbook, Motorola Electrify and Samsung Galaxy GIO S5660"
tickets: [805745,898123,897330]
- title: "Metadata search and replace, make the regular expressions unicode aware"
bug fixes:
- title: "Fix regression in 0.8.28 that broke sending PDF files to iTunes"
tickets: [896791]
- title: "Metadata download, do not strip # from titles."
tickets: [898310]
- title: "Conversion pipeline: Do not error out on books that set font size to zero."
tickets: [898194]
- title: "News download: Respect the delay setting when downloading RSS feeds as well."
tickets: [897907]
- title: "EPUB Output: Ensure that xml:lang is set if lang is set as ADE looks for xml:lang, not lang"
tickets: [897531]
- title: "Content server: Reduce memory consumption when sending very large files"
tickets: [897343]
- title: "Preserve capitalization of Scottish author names when downloading metadata"
- title: "Fix update title sort in bulk metadata edit not using language information"
- title: "Fix sorting by published column in the download metadata dialog broken"
tickets: [896832]
- title: "Allow use of languages field when generating CSV/XML catalogs"
tickets: [896620]
- title: "Get Books: Fix ebookpoint.pl"
- title: "When calculating title sort for a book based on its language, only use the specified language not a combination of the language and english"
tickets: [896412]
improved recipes:
- Metro NL
- Ming Pao
- Rolling Stones Mag
- Buffalo News
new recipes:
- title: gs24.pl and Gazeta.pl Szczecin
author: Michal Szkutnik
- title: Vanity Fair
author: Barty
- title: Skylife
author: thomass
- title: Daily Writing Tips
author: NotTaken
- title: TechDirt
author: Krittika Goyal
- title: Cosmopolitan UK
author: Dave Asbury
- version: 0.8.28
date: 2011-11-25

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