From af84f967f098cc72b1f0aec19e7ebf9fe758f8c9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 Jun 2011 11:08:06 -0600 Subject: [PATCH] version 0.8.7 --- Changelog.yaml | 59 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 6ba9bdd5e4..853f6a010e 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,65 @@ # new recipes: # - title: +- version: 0.8.7 + date: 2011-06-24 + + new features: + - title: "Connect to iTunes: You now need to tell iTunes to keep its own copy of every ebook. Do this in iTunes by going to Preferences->Advanced and setting the 'Copy files to iTunes Media folder when adding to library' option. To learn about why this is necessary, see: http://www.mobileread.com/forums/showthread.php?t=140260" + type: major + + - title: "Add a couple of date related functions to the calibre template langauge to get 'todays' date and create text based on the value of a date type field" + + - title: "Improved reading of metadata from FB2 files, with support for reading isbns, tags, published date, etc." + + - title: "Driver for the Imagine IMEB5" + tickets: [800642] + + - title: "Show the currently used network proxies in Preferences->Miscellaneous" + + - title: "Kobo Touch driver: Show Favorites as a device collection. Various other minor fixes." + + - title: "Content server now sends the Content-Disposition header when sending ebook files." + + - title: "Allow search and replace on comments custom columns." + + - title: "Add a new action 'Quick View' to show the books in your library by the author(s) of the currently selected book, in a separate window. You can add it to your toolbar or right click menu by going to Preferences->Toolbars." + + - title: "Get Books: Add libri.de as a book source. Fix a bug that caused some books downloads to fail. Fixes to the Legimi and beam-ebooks.de stores" + tickets: [799367] + + bug fixes: + - title: "Fix a memory leak that could result in the leaking of several MB of memory with large libraries" + tickets: [800952] + + - title: "Fix the read metadata from format button in the edit metadata dialog using the wrong timezone when setting published date" + tickets: [799777] + + - title: "Generating catalog: Fix occassional file in use errors when generating catalogs on windows" + + - title: "Fix clicking on News in Tag Browser not working in non English locales." + tickets: [799471] + + - title: "HTML Input: Fix a regression in 0.8.6 that caused CSS stylesheets to be ignored" + tickets: [799171] + + - title: "Fix a regression that caused restore database to stop working on some windows sytems" + + - title: "EPUB Output: Convert
tags with text in them into as ADE cannot handle them." + tickets: [794427] + + improved recipes: + - Le Temps + - Perfil + + new recipes: + - title: "Daytona Beach Journal" + author: BRGriff + + - title: "El club del ebook and Frontline" + author: Darko Miletic + + - version: 0.8.6 date: 2011-06-17 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ec0134e4cb..d347b2d524 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, 6) +numeric_version = (0, 8, 7) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "