From ae6bac51593f08f318d7e520b25beeb66ee9d7a3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Feb 2016 09:29:23 +0530 Subject: [PATCH] version 2.51.0 --- Changelog.yaml | 34 ++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 46d6f30a0f..e7ea0fd52e 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,40 @@ # new recipes: # - 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 date: 2016-01-29 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 5333e669e4..fcfd69ee02 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 = (2, 50, 1) +numeric_version = (2, 51, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "