From 0b565ab75ef7460c12a7ab7d3fbf2d55dcf04c93 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 May 2014 07:47:03 +0530 Subject: [PATCH] version 1.37 --- Changelog.yaml | 42 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 174844488b..a27ab8cac6 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,48 @@ # new recipes: # - title: +- version: 1.37.0 + date: 2014-05-16 + + new features: + - title: "Edit Book: Live spell checking in the code view. Now spelling errors are highlighted in the code view for convenient correction as you type. This can be turned off via Preferences->Editor." + + - title: "E-book viewer: When using the tap and hold gesture on a touchscreen, allow lookup of the word currently under the finger in the dictionary or online." + tickets: [1318242] + + - title: "Edit Book: Allow putting the editor into replace mode by pressing the Insert key" + + - title: "Content server: Add more descriptive titles to the OPDS feeds, where possible." + + - title: "Edit Book: Update the Table of Contents view automatically when the ncx file is edited." + + - title: "Edit book: Insert tag button: Allow entering attributes along with the tag name to make it easy to repeatedly insert, for example, ." + + - title: "Windows driver for Woxter Scriba 190." + tickets: [1317892] + + - title: "Edit Book: Add an entry to the context menu of the preview panel to open external URLs when a link is right clicked on" + + bug fixes: + - title: "Edit Book: Fix error in the Check Book tool when items in the opf have paths starting with a leading slash." + tickets: [1319378] + + - title: "Book polishing: Fix publisher field in epub not being cleared when updating metadata." + tickets: [1319732] + + - title: "Kobo driver: Update to handle changes to annotation processing in newer Kobo firmware." + + - title: "DOCX Input: Handle docx files with index fields that have their field names incorrectly lower cased." + tickets: [1318670] + + - title: "Edit book: Fix incorrect syntax highlighting on linux if the text contains non-BMP unicode characters." + + - title: "Edit book: Fix regression that caused an error when trying to edit files with no defined syntax, such as plain .txt files." + tickets: [1318139] + + improved recipes: + - Wall Street Journal + - version: 1.36.0 date: 2014-05-09 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0667bef611..86830e91ce 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, 36, 0) +numeric_version = (1, 37, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "