From d3d7af4f28bcebd96bbf1d2bc433da684c3bdc1a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 28 Sep 2018 07:48:18 +0530 Subject: [PATCH] version 3.32.0 --- Changelog.yaml | 40 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index f6e1520bb0..49b722226a 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,46 @@ # new recipes: # - title: +- version: 3.32.0 + date: 2018-09-28 + + new features: + - title: "Edit book: Insert image dialog: Add buttons to change the image thumbnail size." + tickets: [1791428] + + - title: "Book details panel: Allow right clicking on a format to open it in the calibre editor" + + - title: "Edit metadata dialog: Allow viewing or editing specific formats by right clicking the format in the formats list" + + - title: "When creating a metadata jacket allow HTML in custom long text columns" + + - title: "Content server: When editing metadata add a button to remove the existing cover. Note that after removing the cover a auto-generated cover is displayed instead. You might need to hit refresh in your browser to see the change." + tickets: [1794123] + + - title: "Content server: Date edit: Add buttons to clear the date or set it to today's date" + + bug fixes: + - title: "When showing books on the device, disable keyboard shortcuts for actions that operate on library books" + + - title: "Content server: Custom List: Fix a zero series index being displayed as one" + + - title: "Content server: Fix covers not being updated in downloaded copies of some books." + tickets: [1699932] + + - title: "PDF Output: Fix an error that could occur in rare circumstances when using the option to read page margins from the input document" + tickets: [1792616] + + - title: "Edit book: Check book: Fix an error if a filename contains a % character" + + - title: "PDF Output: Fix CSS opacity property causing text to not be rendered. Now opacity is ignored, as it is unsupported by Qt WebKit." + tickets: [1792048] + + - title: "Create custom column dialog: Ensure that the format numbers field is always visible" + + improved recipes: + - Washington Post + + - version: 3.31.0 date: 2018-09-07 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 4f9b6f9aa6..d5932720b2 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 31, 0) +numeric_version = (3, 32, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "