version 2.58.0

This commit is contained in:
Kovid Goyal 2016-06-03 08:46:08 +05:30
parent 881fab7dd9
commit ae1fbeff6c
2 changed files with 31 additions and 1 deletions

View File

@ -20,6 +20,36 @@
# new recipes:
# - title:
- version: 2.58.0
date: 2016-06-02
new features:
- title: "Edit Book: A text search tool to conveniently search for text even if it crosses multiple HTML tags (Search->Search ignoring HTML markup)"
- title: "OSX: Allow drag and drop of file onto viewer dock icon to view file"
bug fixes:
- title: "Workaround for incompatibility between Qt 5.5+ and Ubuntu that caused the context menu for the book list to flicker."
tickets: [1534936]
- title: "Windows: Workaround for explorer shell extensions on windows that write to stdout"
- title: "Edit Book: When jumping to next occurrence of a word, take language into account"
- title: "Edit Book: Fix import of words into user dictionary not working"
- title: "Fix use of non-ascii characters in identifiers causing an error when identifier rules are used."
tickets: [1584470]
- title: "Fix a regression that caused the paste from clipboard button to paste two times in the Add books from ISBN dialog"
- title: "Fix for incompatibility with PyQt 5.6"
improved recipes:
- Denver Post
- Financial Times
- bild.de
- version: 2.57.1
date: 2016-05-20

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (2, 57, 1)
numeric_version = (2, 58, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"