From d4602387ff04cff1c6eb7d40bfe89b49c07cf424 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 17 Feb 2012 08:59:44 +0530 Subject: [PATCH] version 0.8.40 --- Changelog.yaml | 52 ++++++++++++++++++++++++++++++++++++++++ recipes/ledevoir.recipe | 5 ++-- src/calibre/constants.py | 2 +- 3 files changed, 55 insertions(+), 4 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 176b862a0f..ee1efbf6d0 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,58 @@ # new recipes: # - title: +- version: 0.8.40 + date: 2012-02-17 + + new features: + - title: "Amazon metadata download: Support the new 'Book Description' section that Amazon publishes for some books. Also workaround the amazon US servers occasionally returning broken markup leading to calibre not finding any matches for books on Amazon." + + - title: "Kindle driver: Add an option to allow using page counts stored in a custom column. Go to Preferences->Plugins and customize the Kindle driver, to tell it to use a custom column to get page count data." + + - title: "Template language: Add a current_library_name() function that can be used to return the name of the currently opened library in calibre" + + - title: "Driver for Xperia Neo and PocketBook A10" + tickets: [930788] + + bug fixes: + - title: "Fix regression in 0.8.36 that caused the calibredb command to not properly refresh format information in standalone calibre-server processes" + + - title: "Fix regression in 0.8.39 that broke getting covers from some epub files on OS X." + tickets: [932507] + + - title: "Reading metadata from HTML files: Do not take a very long time for very large HTML files. Also fix reading metadata from meta tags with multiple spaces before the content attribute." + tickets: [932262] + + - title: "EPUB Output: Fix splitting breaking internal links in the epub, if the links pointed to files with URL unsafe characters in their file names." + tickets: [929966] + + - title: "Fix auto adding not leaving languages field blank when book has no defined laguage" + tickets: [930648] + + improved recipes: + - Samanyolu Haber + - Kurier + - Le devoir + - Daily Mirror + - Common Dreams + - Pescanik + + new recipes: + - title: Asian Review of Books + author: Darko Miletic + + - title: Albert Mohler, Desiring God, Living Stones and Resurgence + author: Peter Grungi + + - title: Novinite BG + author: M3 Web + + - title: Catholic Daily Readings + author: adoucette + + - title: Consortium News and Microwave and RF magazine + author: kiavash + - version: 0.8.39 date: 2012-02-10 diff --git a/recipes/ledevoir.recipe b/recipes/ledevoir.recipe index 830ac167ee..0811289827 100644 --- a/recipes/ledevoir.recipe +++ b/recipes/ledevoir.recipe @@ -12,7 +12,6 @@ http://www.ledevoir.com/ import re from calibre.web.feeds.news import BasicNewsRecipe -from datetime import date class ledevoir(BasicNewsRecipe): author = 'Lorenzo Vigentini' @@ -34,7 +33,7 @@ class ledevoir(BasicNewsRecipe): needs_subscription = 'optional' filterDuplicates = False - url_list = [] + url_list = [] remove_javascript = True no_stylesheets = True @@ -56,7 +55,7 @@ class ledevoir(BasicNewsRecipe): feeds = [ (u'A la une', 'http://www.ledevoir.com/rss/manchettes.xml'), - (u'Édition complete', 'http://feeds2.feedburner.com/fluxdudevoir'), + (u'Édition complete', 'http://feeds2.feedburner.com/fluxdudevoir'), (u'Opinions', 'http://www.ledevoir.com/rss/opinions.xml'), (u'Chroniques', 'http://www.ledevoir.com/rss/chroniques.xml'), (u'Politique', 'http://www.ledevoir.com/rss/section/politique.xml?id=51'), diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 83898438cc..90954bd15c 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, 39) +numeric_version = (0, 8, 40) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "