From 208397047727ceeb9e15dda9ee6d6f25f1665398 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 8 Sep 2016 08:20:59 +0530 Subject: [PATCH] version 2.67.0 --- Changelog.yaml | 45 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index b21de2c4e0..dbc1a1b3a3 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,51 @@ # new recipes: # - title: +- version: 2.67.0 + date: 2016-09-08 + + new features: + - title: "Allow creating custom rating columns that support half-stars via Preferences->Add your own columns" + + - title: "Tag Browser: Add an option in Preferences->Look & Feel->Tag Browser to turn off the display of counts in the Tag Browser" + + - title: "Tag browser: Show the book counts on the right edge of the Tag Browser" + + - title: "Cover Browser: Allow any metadata field to be used as the sub-title, not just the rating" + + - title: "Edit Book: A new tool to sort the rules in a CSS stylesheet. To use it add it to the toolbar for CSS editors" + + - title: "Edit Book: The Remove Unused CSS tool now has an option to also merge CSS rules that have identical selectors" + + - title: "Add a tweak in Preferences->Tweaks to exclude some images types from being treated a covers when dropped onto the Book Details panel." + tickets: [1620198] + + - title: "Allow reading more image formats as covers (All images will be converted to JPEG when stored)." + tickets: [1619993] + + - title: "Content server: OPDS feeds: Change the value of for entries in the acquisition feed to be the last modified date for the book. Also make the size and last modified timestamp available as attributes in the acquisition links. Useful for integration with third party applications." + + - title: "Kobo driver: Add support for firmware version 4 available on the new Kobo Aura One" + + bug fixes: + - title: "ODT Input: Add support for continued lists." + tickets: [1620581] + + - title: "Edit Book: Fix high-dpi rendering of emblems in the File Browser" + + - title: "Fix regression in previous release that caused wide column icons to be scaled incorrectly" + + - title: "Metadata download dialog: Fix https links in the download summary not working" + + - title: "DOCX Output: Handle nested display:table tags with no rows." + tickets: [1619662] + + - title: "PDF Output: Fix OpenType fonts with CFF font data not embeddable on windows" + + improved recipes: + - Ars Technica + + - version: 2.66.0 date: 2016-09-02 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 8bd926becb..a9a3972c91 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 = (2, 66, 0) +numeric_version = (2, 67, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "