version 3.17.0

This commit is contained in:
Kovid Goyal 2018-02-09 08:52:47 +05:30
parent 20867c1687
commit 99c4647dd4
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: # new recipes:
# - title: # - title:
- version: 3.17.0
date: 2018-02-09
new features:
- title: "Allow splitting the book list, by right clicking on the column headers and choosing 'Split the book list'"
type: major
description: "This is useful to 'lock' one or more columns in place so that they are always visible even when scrolling through other columns. Also, the split list has a separate right click menu which you can configure via Preferences->Toolbars and menus"
- title: "Store temporary files used by the editor and viewer in the cache directory to try to prevent errors caused by 'file cleaner' programs deleting temporary files still in use"
bug fixes:
- title: "EPUB3 Input: Fix HTML covers and titlepages that are marked using the deprecated <guide> element not being recognized."
tickets: [1746794]
- title: "Bulk metadata edit: Fix regression in 3.13 that made it impossible to use the Force numbering checkbox for custom series"
- title: "Conversion: Fix the valign attribute on <td> tags not being honored"
- title: "E-book viewer: Fix the 'Copy' keyboard shortcut/context menu action not working on some Windows systems"
tickets: [1477696]
- title: "E-book viewer: Make the semi-transparent background for viewing metadata a little more opaque."
tickets: [1745812]
improved recipes:
- New York Times
- Le Devoir
- New Statesman
- London Review of Books
- New York Post
- LWN Weekly
- Associated Press
new recipes:
- title: Computing
author: Darko Miletic
- version: 3.16.0 - version: 3.16.0
date: 2018-01-26 date: 2018-01-26

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, 16, 0) numeric_version = (3, 17, 0)
__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>"