version 3.2.1

This commit is contained in:
Kovid Goyal 2017-06-30 15:01:45 +05:30
parent adf84769f9
commit e30ee64f59
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.2.0 - version: 3.2.1
date: 2017-06-29 date: 2017-06-29
new features: new features:
@ -30,6 +30,8 @@
- title: "macOS: Add headless support: calibre command-line utilities can now run on macOS machines without a screen" - title: "macOS: Add headless support: calibre command-line utilities can now run on macOS machines without a screen"
bug fixes: bug fixes:
- title: "3.2.1 has a fix for an issue that broke mouse wheel scrolling in the cover grid view"
- title: "Viewer: Fix incorrect display of pages in paged mode for books that override the box-sizing CSS property on the <body> element." - title: "Viewer: Fix incorrect display of pages in paged mode for books that override the box-sizing CSS property on the <body> element."
tickets: [1700109] tickets: [1700109]

View File

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