From dafbb7d03abbc8338857d12fba8a36d96db599fd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 29 May 2014 09:40:41 +0530 Subject: [PATCH] version 1.39.0 --- Changelog.yaml | 26 ++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 7bee9798c5..c94512b466 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,32 @@ # new recipes: # - title: +- version: 1.39.0 + date: 2014-05-29 + + new features: + - title: "Edit Book: Allow creation of custom color schemes for the editor (Preferences->Editor settings)" + + - title: "Check Book: When reporting unmanifested file warnings, allow auto fixing by adding the file to the manifest if it is referenced elsewhere or removing the file if it is not." + tickets: [1323362] + + - title: "Edit book: Preview panel: Allow syncing of position more accurately when there are multiple tags on the same source code line" + + - title: "Edit book: Live CSS: Indicate which CSS properties are overridden by higher priority rules" + + - title: "Kindle driver: When generating page numbers automatically, add an additional method to detect page boundaries, using the presence of tags in the source of the book. You can use this setting by right clicking on the Kindle icon in calibre when the kindle is connected and choosing customize this device." + tickets: [1321761] + + bug fixes: + - title: "Virtual Libraries: If the user selects a virtual library whose tab has been closed via the Virtual Library button, re-open the tab instead of displaying the virtual library in the All Books tab." + tickets: [1322474] + + - title: "DOCX Input: Fix a regression that broke conversion of documents with an index that contains fields with special page text." + tickets: [1322637] + + - title: "Edit Book: When editing a book in a language for which no dictionary is installed, consider all words to be correctly spelt, rather than misspelt." + tickets: [1320829] + - version: 1.38.0 date: 2014-05-23 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index dd9af783c5..94ea4df7d4 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, 38, 0) +numeric_version = (1, 39, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "