diff --git a/Changelog.yaml b/Changelog.yaml index 99bcfcfeb0..c986b51486 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,54 @@ # new recipes: # - title: +- version: 0.8.61 + date: 2012-07-20 + + new features: + - title: "E-book viewer: Add a paged mode that splits up the text into pages, like in a paper book instead of presenting it as a single column. To activate click the button with the yellow scroll icon in the top right corner." + type: major + description: "In paged mode, the ebook viewer no longer cuts off the last line of text at the bottom of the screen, and it respects CSS page-break directives. You can also set page margins and control the number of pages displayed on screen by clicking the Preferences button in the viewer and going to 'Text layout in paged mode'." + + - title: "Digitally sign the calibre OS X and windows builds" + + - title: "Get Books: Add Mills and Boon UK" + + - title: "Various minor improvements to the Bulk metadata edit dialog" + tickets: [1025825, 1025838, 1025628] + + - title: "Fix various regression in the auto-complete functionality for authors/series/tags etc introduced in 0.8.60" + + - title: "Drivers for various new Android devices" + tickets: [1024934] + + - title: "MOBI: Add support for the new language EXTH header field in MOBI files generated by kindlegen 2.5" + + bug fixes: + - title: "KF8 Output: Fix calibre produced KF8 files not showing the 'Use publisher font' option on the Kindle Touch when they have embedded fonts" + + - title: "Txt/fb2/rtf/pml/rb output: Fix non-visibile element's tail text (which should be visible) is being ignored when it shouldn't." + tickets: [1026541] + + - title: "Book details panel: When displaying a link to amazon, use a country specific name like amazon.fr instead of using amazon.com for all countries" + + - title: "Conversion: When splitting on page breaks, ignore page-breaks with values of auto and inherit. " + tickets: [1018875] + + - title: "Metadata jacket: Specify foreground in addition to the background color for the title banner so that it remain readable if the user tries to monkey with the CSS in the viewer." + + - title: "PDF Output: Fix rendering of cover as first age of PDF (ignore margins so that the image covers the entire page)" + + - title: "Linux binaries: Bundle libglib to avoid incompatibilities with glib on various distros." + tickets: [1022019] + + - title: "Fix find_identical_books() choking on books with too many authors" + + + improved recipes: + - Toronto Star + - American Prospect + - faz.net + - version: 0.8.60 date: 2012-07-13 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ea0cf64cb1..ecad6b5cc2 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, 60) +numeric_version = (0, 8, 61) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "