From bf747cac2e73e785f34254d74fe449e2d9a8fd3b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 Oct 2018 07:49:59 +0530 Subject: [PATCH] version 3.33.0 --- Changelog.yaml | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 49b722226a..ad8e321992 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,36 @@ # new recipes: # - title: +- version: 3.33.0 + date: 2018-10-19 + + new features: + - title: "Driver for the new Kobo Forma" + + - title: "PDF Output: Add a new 'page number map' setting to easily modify page numbers as needed in headers/fotters and the generated inline table of contents." + tickets: [1796902] + + - title: "Edit book: Insert image: remember size of displayed thumbnails." + tickets: [1795845] + + - title: "Edit book: Compress images losslessly: Remember the last used compression quality for jpeg compression." + tickets: [1796950] + + bug fixes: + - title: "CHM Input: Fix a regression in the previous release that broke processing of CHM files." + tickets: [1796889] + + - title: "Fix clearing of metadata download author and tag map rules not working" + + - title: 'Fix notifications from calibre being displayed as "Others" on the GNOME desktop' + + improved recipes: + - Ambito Financiero + - Pagina 12 + - stuff.co.nz + - The New Zealand Herald + - Various Polish news sources + - version: 3.32.0 date: 2018-09-28 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d5932720b2..2443d15bad 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, 32, 0) +numeric_version = (3, 33, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "