From 9aede9fcde808437033a9af09348059af8d8d851 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Jan 2017 09:16:08 +0530 Subject: [PATCH] version 2.78.0 --- Changelog.yaml | 55 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 56 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 1fe54f0cbf..cc051419bd 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,61 @@ # new recipes: # - title: +- version: 2.78.0 + date: 2017-01-27 + + new features: + - title: "View button: Add an action to the right click menu that always opens the book with the calibre viewer, regardless of the preferences" + + - title: "Kobo driver: Update to support the newest firmware from Kobo" + + - title: "E-book viewer: Allow opening a specific item from the Table of Contents via the --open-at command line parameter." + tickets: [1656573] + + - title: "Amazon metadata download: Add support for downloading from amazon.ca" + + bug fixes: + - title: "Edit Book: Do not condense CSS rules when saving AZW3 files regardless of the value of Preferences->Common Options->Look & Feel->Expand CSS" + + - title: "EPUB Output: Fix a duplicate id created in rare circumstances when splitting on page breaks." + tickets: [1658744] + + - title: "DOCX Input: Fix error when converting documents that have images pointing to web resources." + tickets: [1659142] + + - title: "E-book viewer: Fix a regression that caused an increase in load times when loading the individual HTML files inside an EPUB book." + tickets: [1658578] + + - title: "Fix setting a similar books search to use the formats field in Preferences->Searching resulting in an error." + tickets: [1658386] + + - title: "Kobo driver: Fix incorrect cover size being uploaded to the Glo HD" + + - title: "E-book viewer: Fix 'View Image' right click menu action not available for svg files included via tags." + tickets: [1657717] + + - title: "HTML Input: Remove the # character from input filenames, for maximum compatibility." + tickets: [1656833 ] + + - title: "Edit Book: Fix spell check treating the unicode hyphen (U+2010) differently from the normal hyphen (U+002d)." + tickets: [1656319] + + improved recipes: + - FOX News + - Oriental Daily + - AM730 + - The Times + - NYTimes + - Mediapart + - Echo Online + - kath.net + - GoComics + - The Hindu + + new recipes: + - title: The Sunday Times Magazine + author: Bobby Steel + - version: 2.77.0 date: 2017-01-13 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index bfcc009bc1..006e5f0b55 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, 77, 0) +numeric_version = (2, 78, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "