From 6e61642c169af3f13f54f9c8c433c5c455b75d35 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 Aug 2016 05:37:52 +0530 Subject: [PATCH] version 2.65.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 dbad6f3b12..3202773949 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,40 @@ # new recipes: # - title: +- version: 2.65.0 + date: 2016-08-26 + + new features: + - title: "Driver for Kobo Aura One and Aura Edition 2" + + - title: "Kobo driver: Add an option to ignore some collections on the device. The specified collections will not be touched by the driver." + + - title: "Add an option in Preferences->Searching to make searching case-sensitive" + + - title: "DOCX Input: Add support for right-to-left text/tables" + tickets: [1569771] + + bug fixes: + - title: "Fix some icons/images in the user interface looking blurred in environments with High DPI scaling enabled, such as OS X retina screens" + + - title: "DOCX Input: Fix images that have the # character in their filenames not being converted correctly." + tickets: [1616482] + + - title: "ToC wizard: Fix generating toc from headings/xpath yielding unexpected results when tags are present out of sequence" + + - title: "Edit Book: Fix drag and drop of text replacing non-breaking spaces with normal spaces" + + - title: "E-book viewer: Fix duplicate names in hyphenation dictionary chooser." + tickets: [1615040] + + - title: "Fix a regression in the previous release that caused the completion popups for some custom column types in the book list to stop working." + tickets: [1612640] + + improved recipes: + - Le Scienze + - New Yorker + + - version: 2.64.0 date: 2016-08-12 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 355b8fc627..52fae66667 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, 64, 0) +numeric_version = (2, 65, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "