diff --git a/Changelog.yaml b/Changelog.yaml index ec41b77d7b..4d55e117e8 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,95 @@ # new recipes: # - title: +- version: 0.8.21 + date: 2011-09-30 + + new features: + - title: "News download: Add list of articles in the downloaded issue to the comments metadata of the generated ebook. Makes it possible to search for a particular article in the calibre library." + ticket: [851717] + + - title: "Toolbar buttons: You can now also right click the buttons to bring the popup of extra actions, in addition to clicking the small arrow next to the button." + + - title: "Amazon metadata download plugin: Add option to download metadata from amazon.es" + + - title: Driver for Vizio and iRobot A9 Android tablets + tickets: [854408,862175] + + - title: "When switching to/starting with a library with a corrupted database, offer the user the option of rebuilding the database instead of erroring out." + + - title: "Template language: Add list_equals function" + + - title: "Add a special output profile for the PocketBook 900 as it does not resize images correctly by itself" + + bug fixes: + - title: "Fix regression that cause PDF Output to generate very large files" + + - title: Fix Title Sort field not being displayed in Book details panel + + - title: Prevent renaming of languages in the Tag browser + tickets: [860943] + + - title: "Get books: Fix getting price from Foyles" + + - title: "Content server: When a search matches no queries, do not show an error message" + + - title: "ODT Input: Add workaround for ADE to fix centering of block level images when converting to EPUB" + tickets: [859343] + + - title: "Content server: When WSGI embedding fix handling of empty URL" + + - title: "RTF Input: Fix spurious spaces inserted after some unicode characters" + tickets: [851215] + + - title: "Fix regression that broke clicking on the first letter of author names in the Tag Browser when grouped" + tickets: [860615] + + - title: "Fix reading metadata from filenames when the author regexp does not match anything" + + - title: "Fix incorrect display of the month September in Finnish calibre" + tickets: [858737] + + - title: "Do not delete the file when the user tries to add a format to a book from a file already in the books directory" + tickets: [856158] + + - title: "Fix regression that broke customization of Kobo device plugin" + + - title: "Allow user defined templates to be used in save to disk" + + improved recipes: + - Read It Later + - American Spectator + - Sydney Morning Herald + - Chicago Tribune + - American Prospect + - DNA India + - Times of India + - Kurier + - xkcd + - Cnet + + new recipes: + - title: Various Colombian news sources + author: BIGO-CAVA + + - title: Gosc Niedzielny + author: Piotr Kontek + + - title: Leipzer Volkszeitung + author: a.peter + + - title: Folha de Sao Paulo (full edition) + author: fluzao + + - title: Den of Geek + author: Jaded + + - title: Republica + author: Manish Bhattarai + + - title: Sign on San Diego + author: Jay Kindle + - version: 0.8.20 date: 2011-09-23 diff --git a/session.vim b/session.vim index 6252c038db..b85e21ce8c 100644 --- a/session.vim +++ b/session.vim @@ -27,4 +27,4 @@ vipy.session.add_content_browser('.r', ',r', 'Recipe', vipy.session.regexp_based_matcher(r'title\s*=\s*(?P.+)', 'title', recipe_title_callback)) EOFPY -nmap \log :enew<CR>:read ! bzr log -l 500 ../.. <CR>:e ../../Changelog.yaml<CR>:e constants.py<CR> +nmap \log :enew<CR>:read ! bzr log -l 500 <CR>:e Changelog.yaml<CR>:e src/calibre/constants.py<CR> diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 01717ff387..17be2bf47f 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, 20) +numeric_version = (0, 8, 21) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"