version 2.62.0

This commit is contained in:
Kovid Goyal 2016-07-08 09:36:22 +05:30
parent 4e3d5dad41
commit 7a54770a2b
2 changed files with 36 additions and 1 deletions

View File

@ -20,6 +20,41 @@
# new recipes:
# - title:
- version: 2.62.0
date: 2016-07-08
new features:
- title: "EPUB metadata: Support for reading and writing EPUB 3 specific metadata. Now when processing EPUB 3 files, calibre will generate/use EPUB 3 specific metadata constructs when available, for example for series."
- title: "Recognize the newest Kindle model, that started shipping today."
tickets: [1599970]
bug fixes:
- title: "Tag Mapper: Allow specifying a space as the split character when creating a split tags rule"
- title: "Tag mapper: Fix upper case characters not working in 'contains' rules"
- title: "Smarten punctuation: Fix double dashes and triple dots being smartened even inside attribute values."
tickets: [1598465]
- title: "HTML Input: Sanitize semi-colons from HTML filenames as they can cause problems with other EPUB consuming software."
tickets: [1598719]
- title: "EPUB Input: Speed up reading of the book spine from the OPF file for books with a very large number of entries in the spine"
- title: "Edit Book: Reports: Characters: Fix sorting by count and name not working."
tickets: [1598518]
- title: "Fix KoboTouch configuration migration not working for older settings"
tickets: [1598017]
improved recipes:
- The Skeptic
new recipes:
- title: Various Russian news sources
author: bugmen00t
- version: 2.61.0
date: 2016-07-01

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (2, 61, 0)
numeric_version = (2, 62, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"