From 5297cd29bbe994e67c0efd5d49c8147d4e31bf65 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Jul 2011 10:46:43 -0600 Subject: [PATCH] version 0.8.12 --- Changelog.yaml | 59 +++++++++++++++++++ src/calibre/constants.py | 2 +- .../gui2/store/stores/amazon_de_plugin.py | 2 +- 3 files changed, 61 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 5898a4401b..174e7fc823 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,65 @@ # new recipes: # - title: +- version: 0.8.12 + date: 2011-07-29 + + new features: + - title: "Content server: Return the correct last modified date when serving ebook files. Also allow getting of book metadata as /get/opf/" + + - title: "Driver for the COBY MP977" + + - title: "Get Books: Remove epub bud store. Add Ozon.ru and e-knigni.net stores. Fix broken amazon UK and DE stores." + tickets: [816091] + + - title: "Add a new tweak to Preferences->Tweaks that allows auto generation of series numbers when importing books with a series name, but no number" + tickets: [815573] + + bug fixes: + - title: "Fix a regression in 0.8.11 that broke calibre on linux systems that use a file system encoding that cannot support cyrillic characters" + tickets: [815224] + + - title: "Fix long titles not wrapping in cover browser" + tickets: [816595] + + - title: "When adding books, handle the case of files without read permission more gracefully." + tickets: [814771] + + - title: "When changing metadata in EPUB files do not use the opf: namespace prefix on newly created elements. Apparently, FBReaderJ doesn't understand XML namespaces." + tickets: [814722] + + - title: "Prevent metadata download from returning published dates earlier than 101 A.D." + + - title: "Fix a bug where dates before 101AD in the database could cause errors" + tickets: [814964] + + - title: "Fix an error in the book details panel if the user sets the default author link to blank" + + improved recipes: + - The Economist + - Instapaper + - Corren + + new recipes: + - title: Counterpunch + author: O. Emmerson + + - title: National Geographic (PL) + author: Marcin Urban + + - title: Caros Amigos + author: Pablo Aldama + + - title: Aksiyon Dergisi + author: thomass + + - title: Dnevnik (MK) and +Info + author: Darko Spasovski + + - title: Dagens Industri + author: Jonas Svensson + + - version: 0.8.11 date: 2011-07-22 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 979025e514..ee922e1ae4 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, 11) +numeric_version = (0, 8, 12) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal " diff --git a/src/calibre/gui2/store/stores/amazon_de_plugin.py b/src/calibre/gui2/store/stores/amazon_de_plugin.py index 33f681ab52..9f26e765e6 100644 --- a/src/calibre/gui2/store/stores/amazon_de_plugin.py +++ b/src/calibre/gui2/store/stores/amazon_de_plugin.py @@ -6,7 +6,7 @@ __license__ = 'GPL 3' __copyright__ = '2011, John Schember ' __docformat__ = 'restructuredtext en' -import re, urllib +import urllib from contextlib import closing from lxml import html