Skip to content

Commit

Permalink
version 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Nov 21, 2014
1 parent cc4452f commit ba329fa
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions Changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,39 @@
# new recipes:
# - title:

- version: 2.11.0
date: 2014-11-21

new features:
- title: "Edit Book: Add a new 'function mode' for the Search and Replace tool"
description: "The function mode allows you to create python functions that run on the results of Search and Replace. This allows you to do arbitrarily powerful text processing. For example, you can automatically fix the case of text, automatically add section number to headings, and so on. For examples and documentation, see: http://manual.calibre-ebook.com/function_mode.html"
type: major

bug fixes:
- title: "DOCX Input: Add support for multilingual documents."
tickets: [1394428]

- title: "Edit metadata dialog: Fix date fields being displayed in the UTC timezone instead of the local timezone, causing the day to be off by one in some timezones."
tickets: [1393166]

- title: "Conversion/Book polishing: Fix ampersands in title/series/publisher/author not being properly escaped."
tickets: [1393230]

- title: "Update the bundled version of libimobiledevice on windows, so that the iOS Reader plugin can connect to iOS 8 devices again"

- title: "Fix a regression in 2.10 that causes Adding books from sub-folders, one book per folder to incorrectly add OPF files present in the sub-folders as an extra format."
tickets: [1392864]

- title: "Fix a regression in 2.10 that caused changes in Preferences->Adding books to not work for the next immediate add"

- title: "Fix Ctrl-R while in debug mode not restarting in debug mode properly"

- title: "Fix regression in evaluating composite columns that use other composite columns."

improved recipes:
- Nikkei News


- version: 2.10.0
date: 2014-11-14

Expand Down
2 changes: 1 addition & 1 deletion src/calibre/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (2, 10, 0)
numeric_version = (2, 11, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"

Expand Down

0 comments on commit ba329fa

Please sign in to comment.