version 3.12.0

This commit is contained in:
Kovid Goyal 2017-11-10 07:14:37 +05:30
parent 69afa80715
commit 025fd69202
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 26 additions and 1 deletions

View File

@ -20,6 +20,31 @@
# new recipes:
# - title:
- version: 3.12.0
date: 2017-11-09
new features:
- title: "Driver for the new Nook Glowlight 3"
tickets: [1731024]
- title: "Allow configuring the metadata fields displayed in the popup book details window. To configure, simply click the 'Configure' link at the bottom of the window."
- title: "Wireless driver: Allow specifying extra file formats (unknown to calibre) to send"
bug fixes:
- title: "Fix a regression that caused clicking the clear button in the main search bar to not unapply the current search until enter is pressed."
- title: "Linux: Fix a regression causing calibre to fail to start on systems with no DBUS session bus"
- title: "Browser viewer: Fix body font being forced to sans-serif, overriding in book and user stylesheet settings"
- title: "Fix sending email failing of the computer's FQDN is set to a single period."
tickets: [1730166]
improved recipes:
- New Yorker
- Geopolityka
- version: 3.11.1
date: 2017-11-02

View File

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