From c19cbe3d4a10bd0bac88349bca1915be71acd45b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 8 Nov 2018 10:07:03 +0530 Subject: [PATCH] version 3.34.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 1fadcd3933..c6e8a32bb1 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,38 @@ # new recipes: # - title: +- version: 3.34.0 + date: 2018-11-08 + + new features: + - title: "Support for the new Kindle Paperwhite 2018" + tickets: [1802088] + + - title: "Metadata plugboards: Allow defining plugboards that modify comments metadata as well" + + - title: "E-book viewer: Add a keyboard shortcut (Ctrl+M) for toggling between paged and flow mode" + + bug fixes: + - title: "EPUB Input: Handle invalid EPUB files that have their NCX documents in the spine." + tickets: [1796497] + + - title: "EPUB3 Input: Handle EPUB 3 files that incorrectly use EPUB 2 markup to identify cover images." + + - title: "Content server: Fix --url-prefix feature not working with book conversion" + + improved recipes: + - Business Standard + - Washington Post + - General Knowledge Today + - How To Geek + + new recipes: + - title: Arts and Letters Daily + author: pjpaulpj + + - title: Magyar Idok + author: pofa + - version: 3.33.1 date: 2018-10-19 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index dd156b8cbe..0a8d01af6d 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, 33, 1) +numeric_version = (3, 34, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "