From 415b7f4de54c4a85e7064c971c60f8ef32c30da4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 6 Feb 2015 09:46:24 +0530 Subject: [PATCH] version 2.19.0 --- Changelog.yaml | 47 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index e6d2033f7b..f745b38dbb 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,53 @@ # new recipes: # - title: +- version: 2.19.0 + date: 2015-02-06 + + new features: + - title: "Quick view window: Allow the quickview window to be docked into the main calibre window." + tickets: [1415714] + + - title: "Add empty book: Allow setting the title as well as the author and series for the added empty book records" + + - title: "Windows driver for Grammata Papyre 602." + tickets: [1418207] + + - title: "Edit Book: Add an option to turn off auto-completion of closing tags" + + - title: "Allow adding a description for custom columns." + tickets: [1417219] + + - title: "Book Details panel: Allow any identifier of the form url+number to become a clickable link. For example: url1:http://example.com" + + bug fixes: + - title: "Conversion: Convert entities that reference non-BMP unicode codepoints on Windows and OS X correctly. Linux was not affected by this bug." + tickets: [1417327] + + - title: "Edit Book: Do not autocomplete the closing tag wen typing the / key inside an existing tag." + tickets: [1417700] + + - title: "Fix Booken Lev e-book reader not being detected in OS X and Linux." + tickets: [1417325] + + - title: "DOCX Input: Change handling of sequences of space characters to more closely follow Microsoft Word." + + - title: "Edit Book: Fix Table of Contents editor not remembering its saved state across calibre sessions" + + - title: "Edit book: Disallow drag and drop of documents onto the preview panel to workaround crashing bug in Qt." + tickets: [1416752] + + - title: "E-book viewer: Fix current page not being preserved when opening and then immediately closing the footnote window." + tickets: [1416526] + + - title: "PDF Output: Fix incorrect encoding for some chinese characters in the PDF Outline (Table of Contents)" + tickets: [1416222] + + improved recipes: + - FAZ.net + - Indian Express + - CNN + - version: 2.18.0 date: 2015-01-30 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 76e21ec619..4cb3d9f4ba 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 = (2, 18, 0) +numeric_version = (2, 19, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "