From 8b85f562ed89ec8b3cf31d66fa5cd65b70861709 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 Aug 2012 10:03:22 +0530 Subject: [PATCH] version 0.8.66 --- Changelog.yaml | 36 ++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 7ca8252a44..975d77247a 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,42 @@ # new recipes: # - title: +- version: 0.8.66 + date: 2012-08-24 + + new features: + - title: "E-book viewer: Support the display of mathematics in e-books. Supports both embedded TeX and MathML" + description: "The calibre ebook viewer can now display embedded mathematics (symbols, equations, fractions, matrices, etc.) in EPUB and HTML ebooks. For details, see: http://manual.calibre-ebook.com/typesetting_math.html" + type: major + + - title: "Drivers for SONY PRS-T2, Freelander PD10 and Coolreader Tablet" + tickets: [1039103] + + - title: "Wireless device connections: Use a streamed mode for improved networking performance leading to much less time spent sending metadata to/from the device. Also make it easier to specify a fixed port directly in the dialog used to start the connection." + + - title: "Get books: Add ebooksgratuitis.com" + + bug fixes: + - title: "PDF Output: Handle input epub documents with filenames starting with a dot. Also do not hang if there is an unhandled error." + tickets: [1040603] + + - title: "Get Books: Update B&N plugin to handle changes to the B&N website" + + - title: "Content server: Fix regression that caused the port being advertised via BonJour to be incorrect if the user changed the port for the server." + tickets: [1037912] + + + improved recipes: + - Variety + - The Times UK + + new recipes: + - title: Le Monde subscription version + author: Remi Vanicat + + - title: Brecha Digital + author: Darko Miletic + - version: 0.8.65 date: 2012-08-17 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 19d933b3ad..902307a649 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 = (0, 8, 65) +numeric_version = (0, 8, 66) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "