From 6abc3a55ca044e1340ffe4ef6c7e9d6947a9769b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 11 Dec 2015 08:22:47 +0530 Subject: [PATCH] version 2.46.0 --- Changelog.yaml | 39 +++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index adaffbcb36..d05ab3d7b7 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,45 @@ # new recipes: # - title: +- version: 2.46.0 + date: 2015-12-11 + + new features: + - title: "PDF Input: Add support for PDF outlines (bookmarks), if present, they are used as the metadata Table of Contents." + tickets: [1524522] + + - title: "Book polishing: Add tool to losslessly compress images in the book in order to reduce its filesize, without affecting image quality" + + - title: "Edit Book: Add a new tool to compress images in the book losslessly, accessed from the Tools menu" + + - title: "Kobo driver: add support for new Kobo firmware" + tickets: [1524742] + + - title: "Bulk metadata edit dialog: Allow entering fractional numbers into the series number start with control." + tickets: [1523253] + + - title: "Speed up moving libraries by using hardlinks instead of file copies when moving to a location on the same filesystem" + + - title: "Get Books: Disable the Amazon EU stores, at Amazon's request" + + bug fixes: + - title: "Fix moving libraries via calibre leaving behind a copy of the metadata_db_prefs_backup.json file in the original library folder" + + - title: "MOBI Input: Warn about corrupted trailing data entries, instead of aborting. Getting some, even partially corrupted text is better than no text." + tickets: [1521830] + + - title: "Book details: Fix single value custom text column not clickable." + tickets: [1521004] + + - title: "Saving to disk: Fix custom date column being rendered in GMT instead of the local time zone when used in a save to disk template." + tickets: [1520895] + + improved recipes: + - New York Review of Books + - Caravan Magazine + - heise + + - version: 2.45.0 date: 2015-11-27 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ce3c5494a2..40b08413d2 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, 45, 0) +numeric_version = (2, 46, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "