version 2.51.0

This commit is contained in:
Kovid Goyal 2016-02-12 09:29:23 +05:30
parent 788e545ddc
commit ae6bac5159
2 changed files with 35 additions and 1 deletions

View File

@ -20,6 +20,40 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 2.51.0
date: 2016-02-12
new features:
- title: "Add an action to the context menu for the search bar to paste and instantly execute the search."
tickets: [1541286]
- title: "When adding multiple books from a single directory, added the books in order of the last modified time of the book files."
bug fixes:
- title: "Fix a regression in 2.50 that prevented a small number of devices from being detected on windows"
- title: "PDF metadata: Workaround for PDF files with corrupted XMP metadata packets, generated by Nitro PDF."
tickets: [1541981]
- title: "Edit Book Beautify: Do not beautify the insides of heading/p tags even when they are the only child of body"
- title: "Amazon metadata download: Fix published date not being downloaded from amazon.it"
- title: "Fix a regression in 2.50 that broke the user created device driver feature on windows"
- title: "EPUB Input: Fix error when processing EPUB files that uses non-ascii characters for their unique ids."
tickets: [1540496]
- title: "When reading the cover from comic files, ignore any image files inside __MACOSX/ directories."
tickets: [1539414]
- title: "Fix calibre on OS X unable to connect to sites that support only TLS >= 1.1. Also update the version of Qt bundled on OS X to 5.5.1"
improved recipes:
- Endgadget
- The Economic Times India
- Discover Magazine
- version: 2.50.1 - version: 2.50.1
date: 2016-01-29 date: 2016-01-29

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 = (2, 50, 1) numeric_version = (2, 51, 0)
__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>"