version 3.34.0

This commit is contained in:
Kovid Goyal 2018-11-08 10:07:03 +05:30
parent 79a0a7ab58
commit c19cbe3d4a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 33 additions and 1 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"