diff --git a/Changelog.yaml b/Changelog.yaml index 1cb37c566d..3a83d55909 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,11 +20,52 @@ # new recipes: # - title: +- version: 2.56.0 + date: 2016-04-29 + + new features: + - title: "Edit Book: Add an option to show full file paths in the Files Browser instead of just the file name (in Preferences->Main window)" + + - title: "Allow creating a keyboard shortcut to minimize the calibre window (Preferences->Keyboard->Miscellaneous)." + tickets: [1573775] + + bug fixes: + - title: "Fix the Google Images based cover download plugin not working because of changes to Google's image search service" + + - title: "E-book viewer: Prevent the TAB key from causing partial scrolling in paged mode." + tickets: [1571304] + + - title: "Book details panel: Fix regression in previous release that broke url:http|... style identifiers" + + - title: "OS X: Redirect stdout/stderr to /dev/null instead of ASL since ASL is flaky on some OS X machines. This should prevent errors in third party plugins that print a lot of debug messages even when not in debug mode" + + - title: "Fix for OS X upgrade 10.11.4 breaking detection of Kobo devices on some systems" + + - title: "Edit Book: Fix filename being duplicated in the Files Browser when multiple files with the same name are present." + + - title: "PDF Output: Make fix for blank page at end of HTML file also work when headers/footers are specified" + + improved recipes: + - Forbes + - Wall Street Journal + - Berliner Zeitung + - Tagesspiegel + - TIME + - Foreign Affairs + - New Yorker + + new recipes: + - title: "1843" + author: Kovid Goyal + + - title: Berlin Policy Journal + author: Aimylios + - version: 2.55.0 date: 2016-04-15 new features: - - title: "Allow creation of rules to convert arbitrary identifiers into clickable links in the book details panel (Prefrences->Look & Feel->Book details)" + - title: "Allow creation of rules to convert arbitrary identifiers into clickable links in the book details panel (Preferences->Look & Feel->Book details)" - title: "Tag mapper: A new rule type 'split' allows you to easily split tags on a character" diff --git a/src/calibre/constants.py b/src/calibre/constants.py index fd5d5567ea..5cb1e8e2ea 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, 55, 0) +numeric_version = (2, 56, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "