From 901fd220b3f9082e1c394e317a3e34228ff13820 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 26 Sep 2013 09:07:27 +0530 Subject: [PATCH] version 1.5 --- Changelog.yaml | 43 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 345ce8762f..36fc601b2b 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,49 @@ # new recipes: # - title: +- version: 1.5.0 + date: 2013-09-26 + + new features: + - title: "Driver for Woxter Scriba" + tickets: [1228690] + + - title: "Bulk metadata edit: Allow setting the comments for all selected books and also allow cloning the covers. Cloning covers means that the cover of the first selected book will be set for all other selected books." + tickets: [1230040] + + bug fixes: + - title: "Windows: Improved device ejection code. Eject individual drives before trying to eject the device. This fixes incomplete ejection with the Nook devices." + + - title: "Catalogs: fix exclude tags rules not working in non-English locales when creating catalogs in EPUB/MOBI formats." + tickets: [1228949] + + - title: "Kobo driver: Fix reading status being cleared when connecting to a Kobo with older firmware and metadata management set to automatic." + tickets: [1230018] + + - title: "Content server: Sort virtual libraries by name" + tickets: [1229459] + + - title: "DOCX Input: Convert tabs in the docx file into non-breaking spaces in the output document. Note that custom tab stops are not supported." + tickets: [1228893] + + - title: "Conversion: Handle the style attribute on the tag" + + - title: "Handle databases with invalid ratings link tables" + tickets: [1228517] + + - title: "DOCX Input: Handle DOCX files with missing referenced styles" + tickets: [1228669] + + - title: "Update amazon metadata download plugin for changes to the Amazon website" + + improved recipes: + - Slate + - El Universal (VE) + - GoComics + + new recipes: + - title: + - version: 1.4.0 date: 2013-09-20 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index e01584c386..14384a4b9a 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, 4, 0) +numeric_version = (1, 5, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "