From 25d3168df5c9edcdc9d444ad185fd5ad792ae012 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 Jul 2017 09:51:27 +0530 Subject: [PATCH] version 3.3.0 --- Changelog.yaml | 41 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index c87b89cd63..180c640216 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,47 @@ # new recipes: # - title: +- version: 3.3.0 + date: 2017-07-07 + + new features: + - title: "Quickview panel: Allow opening and closing the panel via the Layout button in the bottom right corner." + details: "Also make various improvements to the panel's operation, see https://manual.calibre-ebook.com/gui.html#quickview" + tickets: [1701833] + + - title: "Book details panel: Allow right clicking on author names to search for books by the author on Amazon." + tickets: [1702446] + + - title: "Edit book: When doing a Replace/Count all with multiple searches add a 'Show details' button on the result dialog that shows the individual counts for each search." + + - title: "Comments editor: Add a button to easily insert separators (i.e.
tags) when editing comments" + + bug fixes: + - title: "Browser viewer: Fix back/forward buttons not working correctly when clicking on links that lead to different internal files in the book." + tickets: [1700004] + + - title: "Server: Fix using 'Show more books' button and then changing list mode setting causing resulting book list to be incomplete" + + - title: "Server: Fix changing sort/search in the /mobile view only working with the default library." + tickets: [1701704] + + - title: "DOCX Input: Fix alt and title attributes for some images not being preserved" + + - title: "Amazon metadata download: Change the default source from Bing to Google as the Bing cache seems to be having trouble at the moment" + + - title: "ISBNDB metadata download: Ignore SSL errors when contacting isbndb.com as they seem to have no intention of fixing their broken SSL certificate" + + - title: "Conversion: Fix heuristics processing incorrectly removing some
tags." + tickets: [1205637] + + - title: "Handle non-ASCII binary strings in the author_name_prefix/suffix tweaks." + tickets: [1701138] + + improved recipes: + - Politico + - The Times + - The Sunday Times Magazine + - version: 3.2.1 date: 2017-06-29 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index cb2e9a391f..13b2644266 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 = (3, 2, 1) +numeric_version = (3, 3, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "