From add980d6e6f31c24dd99763f6ba7bad24e87231c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 Jul 2016 08:24:56 +0530 Subject: [PATCH] version 2.61.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 329e003c22..85486f73d8 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,38 @@ # new recipes: # - title: +- version: 2.61.0 + date: 2016-07-01 + + new features: + - title: "Driver for FNAC (re-branded Bq) with new firmware." + tickets: [1596952, 1595924] + + - title: "Edit Book: Check Book: Add an auto fix action to remove all links to a missing resource (such as a deleted stylesheet) automatically." + tickets: [1596048] + + bug fixes: + - title: "Edit Book: Check Book: Fix incorrect handling of font family names with spaces in them that are not quoted." + tickets: [1596053] + + - title: "E-book viewer: Fix Qt 5.7 breaking mouse wheel scrolling" + + - title: "Kobo driver: Fix a regression in the last release that broke connecting to older devices" + tickets: [1596801] + + - title: "Get Books: Fix detection of book formats broken for the Legimi plugin by a website change" + + - title: "Update builtin metadata source ozon.ru to handle website changes" + + - title: "Font subsetting: Fix incorrect handling of fonts whose names are included in font rules without quotes" + + - title: "Fix ebook-viewer broken when running the binary calibre release on systems with very old versions of glibc" + + improved recipes: + - derStandard + - Kurier + - Kliene Zeitung + - version: 2.60.0 date: 2016-06-24 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index fa077c3a96..4244cbfce5 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, 60, 0) +numeric_version = (2, 61, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "