version 3.9.0

This commit is contained in:
Kovid Goyal 2017-10-06 09:11:51 +05:30
parent 85f5435b9d
commit afaf7dcda4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 38 additions and 1 deletions

View File

@ -20,6 +20,43 @@
# new recipes:
# - title:
- version: 3.9.0
date: 2017-10-06
new features:
- title: "Remove the Connect to iTunes function since Apple has removed that functionality from iTunes"
description: "Now you have to use one of the wireless connection methods to connect to an iPad/iPhone, as described at: https://manual.calibre-ebook.com/faq.html#how-do-i-use-calibre-with-my-ipad-iphone-ipod-touch"
- title: "Kobo driver: Support for new firmware"
- title: "Allow changing the icons in yes/no columns via column icon rules."
tickets: [1721374]
- title: 'Quickview panel: Add a context menu with a "View" action to the book table.'
- title: "Make the elapsed time display in the jobs dialog more human friendly."
tickets: [1719059]
bug fixes:
- title: "EPUB Input: Fix styles in existing titlepage not being flattened when the titlepage is preserved during conversion."
tickets: [1720715]
- title: "Fix conversion of grayscale JPEG-XR images not working"
tickets: [1720638]
- title: "Update the douban metadata download plugin to match changes to the website"
- title: "DOCX Output: Fix the preserve cover aspect ratio option not visible"
tickets: [1719026]
improved recipes:
- Respekt Magazine
- Associated Press
- Heraldo de Aragon
- El Correo
- El Periodico de Aragon
- A List Apart
- version: 3.8.0
date: 2017-09-22

View File

@ -6,7 +6,7 @@ from future_builtins import map
import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre'
numeric_version = (3, 8, 0)
numeric_version = (3, 9, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"