version 3.28.0

This commit is contained in:
Kovid Goyal 2018-07-20 09:49:03 +05:30
parent b2b353a680
commit 0f6045efa4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 35 additions and 1 deletions

View File

@ -20,6 +20,40 @@
# new recipes:
# - title:
- version: 3.28.0
date: 2018-07-20
new features:
- title: "Allow creating rules to transform author names when adding books to calibre. Accessible via Preferences->Adding books->Adding actions"
tickets: [1780152]
- title: "Add a similar author mapper tool to manipulate author names in the existing library. Accessible via Preferences->Toolbars"
- title: "Add a similar author mapper tool for metadata downloading, accessible via Preferences->Metadata download"
- title: "Comments Editor: Add options to change the case of the selected text to the right click menu"
tickets: [1780469]
- title: "Edit book: When sorting non text files in the File list recognize numbers in the file names"
tickets: [1781721]
bug fixes:
- title: "calibredb catalog: Recognize file extensions even when they are not lowercase"
improved recipes:
- Sunday Times Magazine UK
- The Economist
- The Houston Chronicle
- El cohete a la luna
- CBC Canada
new recipes:
- title: Il Post
author: frafra
- title: Bloomberg Columnists
author: Dale Furrow
- version: 3.27.1
date: 2018-07-06

View File

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