From 2878c58ebf3d3de821965cbba03c5deb98f30923 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 10 Jan 2015 06:53:29 +0530 Subject: [PATCH] version 2.16.0 --- Changelog.yaml | 32 ++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index e8121c28bdf9..d9bd80ac54fa 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,38 @@ # new recipes: # - title: +- version: 2.16.0 + date: 2015-01-10 + + new features: + - title: "Edit Book: Add support for snippets -- small pieces of text that are often re-used." + description: "You can now create your own snippets and insert them into the text with only a few keystrokes. The snippets include support for placeholders that you can jump between. See http://manual.calibre-ebook.com/snippets.html for details." + type: major + + bug fixes: + - title: "Edit Book: When importing files and the book has an orphaned entry in the manifest for that file, but the file itself is not present, rename the file instead of erroring out." + tickets: [1407860] + + - title: "Book Details panel: Fix author links with URL schemes other than http or file preventing context menu from working." + tickets: [1408174] + + - title: "PDF Output: Make the minimum height for headers and footers scale with the base font size" + + - title: "Fix a typo that prevented the Cybook Muse from being detected on some computers." + tickets: [1407435] + + - title: "Fix regression in 2.15 that broke calibre on OS X 10.7 and 10.8" + tickets: [1407102] + + improved recipes: + - Various updated Turkish news sources + - tyzden + - Sueddeutsche Zeitung + + new recipes: + - title: Ajans Firat and Edebiyat Haber + author: asalet_r + - version: 2.15.0 date: 2015-01-02 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d1d2bdd28417..0eb1c910c44c 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (2, 15, 0) +numeric_version = (2, 16, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "