From 69f8bed9132a1bc13c24c5ef3d4c6475282964a7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 Feb 2017 08:12:19 +0530 Subject: [PATCH] version 2.80.0 --- Changelog.yaml | 47 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 0260ce88b0..5a740333e2 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,53 @@ # new recipes: # - title: +- version: 2.80.0 + date: 2017-02-24 + + new features: + - title: "Add support for sideloading of KFX files created with the third-party KFX calibre plugin" + tickets: [1666040] + + - title: "Edit book: Allow drag and drop of image files, stylesheets and html files into the editor to insert the appropriate and tags and add the files to the book automatically." + + - title: "Kobo driver: Add support for updated firmware" + + - title: "Edit Book: Spell Check: If there are no suggestions fill the suggested word box with the original word." + tickets: [1664284] + + - title: "Viewer: add a shortcut (Ctrl+F11) to show/hide toolbars." + tickets: [1664077] + + bug fixes: + - title: "PDF Output: Fix courier font not being rendered when converting on windows." + tickets: [1665835] + + - title: "E-mail delivery: Add a Message-ID header when sending emails. Reduces probability of mails sent from calibre being marked as spam" + + - title: "Save to disk: Fix path shortening being applied to entire save template even when saving to singe directory." + tickets: [1665964] + + - title: "Get Books: Update the Virualo and Publi store plugins for website changes" + + - title: "Viewer: Fix regression that caused slow opening of some books with missing font/css/image files" + + - title: "Viewer: Pressing Ctrl+F in fullscreen mode should show the controls." + tickets: [1664076] + + - title: "Edit book: Do not allow creating multiple new files whose names differ only by case." + tickets: [1664027] + + - title: "Viewer: Use heuristics to try to detect comics encoded as fixed layout EPUBs to ensure they are displayed as intended." + tickets: [1667357] + + improved recipes: + - The Atlantic + - The Financial Times + + new recipes: + - title: Various new and improved Belgian news sources + author: erkfuizfeuadjfjzefzfuzeff + - version: 2.79.1 date: 2017-02-10 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6a5e9c9e5e..9ccea5fc67 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (2, 79, 1) +numeric_version = (2, 80, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "