From a35f25a12269bce2cbf7d48007e7bfe6f9bdd869 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Nov 2013 08:38:39 +0530 Subject: [PATCH] version 1.13 --- Changelog.yaml | 49 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 2a000f176c..95fb603778 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,55 @@ # new recipes: # - title: +- version: 1.13.0 + date: 2013-11-29 + + new features: + - title: "Edit metadata dialog: Facilitate editing the authors for books that have a large number of authors, by using a dedicated 'Edit authors' tool, which you can launch by right clicking the authors in the edit metadata dialog +and selecting 'Edit authors'." + tickets: [1255288] + + - title: "Conversion: Fix specifying shorthand properties in filter css not working. Now all shorthand properties automatically filter out all the properties they are shorthand for." + + - title: "Kobo driver: support new firmware version 3.0.1" + + - title: "Wireless device driver: Cache metadata on a per device basis." + description: "Allows for using different cover thumbnail sizes on different devices. Will force device to resend all metadata the first time it is connected after this upgrade." + + bug fixes: + - title: "Metadata download: Update code to get covers via google image search to handle changes to the google website." + tickets: [1254973] + + - title: "Searching: When searching for identifiers, fix searching for values that contain colons not working. Also fix escaped parentheses not being parsed correctly." + + - title: "Match books on device: Fix parentheses in book titles not being escaped when searching for matches." + tickets: [1255671] + + - title: "Match books on device: Fix thumbnail in device metadata cache not being updated when matching books." + tickets: [1255676] + + - title: "File open dialogs; If the previously used initial directory, no longer exists, use a directory one level up." + tickets: [1255216] + + - title: "EPUB Output: Strip -- from inside comments, as some ebook reading apps cannot handle them." + tickets: [1256059] + + - title: "Fix a regression in the previous release that broke the Kobo third party plugins" + + - title: "Fix QuickView windows not staying on top on some linux systems" + tickets: [1253922] + + - title: "Fixes for website changes for various Get Books Polish language stores" + + - title: "Metadata download dialog: Fix current cover not copyable to clipboard" + + - title: "Fix an incorrect translation of the language 'Polish'" + tickets: [1254161] + + improved recipes: + - Economist + - Various PostMedia news sources + - version: 1.12.0 date: 2013-11-22 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ab41a0308b..edbb408f67 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (1, 12, 0) +numeric_version = (1, 13, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "