From 766e91dfd0e7de3921554f6721295ade5fbe903b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 22 Aug 2014 08:35:29 +0530 Subject: [PATCH] version 2.0 --- Changelog.yaml | 58 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 2b80319d78..a4bbfbe521 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,64 @@ # new recipes: # - title: +- version: 2.0.0 + date: 2014-08-21 + + new features: + - title: "For a summary of the major changes in calibre between 1.0 and 2.0, see http://calibre-ebook.com/new-in/eleven" + type: major + + - title: "Add support for MTP devices (Android phones/tablets) on OS X" + + - title: "Update the version of Qt used by calibre to Qt 5. This fixes various longstanding bugs in calibre that were caused by bugs in Qt 4." + + - title: "Edit Book: Make the edit saved search/add saved search popup window non-modal." + tickets: [1354785] + + - title: "Tag Browser: Show format specific icons for the format entries in the Tag Browser" + + - title: "Library check: Add buttons to conveniently mark all fixable/deletable items." + tickets: [1353954] + + bug fixes: + - title: "E-book viewer: Reloading the book now re-opens it at the current position even if the option to remember position when quitting is turned off" + + - title: "E-book viewer: Remove extra spacing between document and scrollbars. This is particularly noticeable when using a dark theme for the viewer." + + - title: "PDF Output: Fix balanced parentheses in the text of items in the Table of Contents not being rendered properly by some PDF viewers." + tickets: [1358443] + + - title: "Edit book: Abort terminal save on save error instead of quitting editor" + + - title: "Get Books: Update the Project Gutenberg plugin for website changes" + + - title: "Plugin loading: When multiple plugin classes are present in the __init__.py namespace, use the one with the qualified name that has the least components" + + - title: "Edit Book: Prevent long saved searches from making the saved search dialog too wide" + + - title: "Comic Input: Sort pages placed in sub-folders correctly (as long as all pages have the same number of parent folders)." + + - title: "Conversion: Fix the word @page in a comment inside a stylesheet with no following {} causing the rest of the stylesheet to be ignored." + + - title: "Fix comparing AZW3 to ORIGINAL_AZW3 from the book details panel not working" + tickets: [1354624] + + improved recipes: + - TIME Magazine + - The Atlantic + - Down to Earth + - Heraldo de Aragon + - Radikal (Turkey) + - Wired Daily Edition + - Orange County Register + + new recipes: + - title: General Knowledge Today + author: Kanika G + + - title: BBC Arabic + author: logophile777 + - version: 1.48.0 date: 2014-08-08 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index af20f9bbdc..aee5f79c96 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 = (1, 206, 1) +numeric_version = (2, 0, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "