From 0125640484651260aa6be5d271af6e989b6a82d9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Apr 2014 09:50:35 +0530 Subject: [PATCH] version 1.33 --- Changelog.yaml | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 51b03b9998..cd1e8a361e 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,36 @@ # new recipes: # - title: +- version: 1.33.0 + date: 2014-04-18 + + new features: + - title: "Edit book: Add a tool to check spellings, access it via Tools->Check spelling" + type: major + description: "The calibre book editor now has builtin spellcheck. You can install new dictionaries via Preferences->Editor->Manage spelling dictionaries. It comes with builtin dictionaries for English and Spanish. You can add OpenOffice dictionaries (in .oxt format). The tool checks spellings in all HTML/OPF/NCX files in the book, taking into account any language declarations in the book, so that it will work correctly on multi-lingual books as well. The code is very new, so there may well be bugs. As you type spell checking is not yet implemented." + + - title: "Kobo driver: Support firmware version 3.3" + + - title: "Device driver for Tolino Vision on windows" + + bug fixes: + - title: "Amazon metadata download: Fix Editorial Reviews not downloading into the comments section for some books" + + - title: "DOCX Input: Fix some text highlighting colors in the DOCX file not being correctly translated during conversion." + ticket: [1308181] + + - title: "Wireless device driver: Fix incorrect syncing behavior when book matching is run for a second time while connected. This happens when the user changes the library or selects 'Update cached metadata on device'." + + - title: "Searching: Fix searching by date not using the system locale to interpret dd/mm vs mm/dd dates on windows" + + improved recipes: + - Barrons + - Creative Blog + + new recipes: + - title: "Various new and updated Spanish news sources" + author: Marc Busque + - version: 1.32.0 date: 2014-04-11 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0040dd02f8..d86376be1a 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, 32, 0) +numeric_version = (1, 33, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "