From 99b8a76b00f8e026355faa7ad4abddae1f3f19db Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 Dec 2014 08:33:58 +0530 Subject: [PATCH] version 2.13.0 --- Changelog.yaml | 53 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index ecfd95b8e2..474cb5a6c4 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,59 @@ # new recipes: # - title: +- version: 2.13.0 + date: 2014-12-19 + + new features: + - title: "Driver for the new CYBOOK MUSE ebook reader" + tickets: [1398672] + + - title: "Edit metadata dialog: Allow editing identifiers in a dedicated window by right clicking on the identifiers edit box." + tickets: [1400925] + + - title: "Allow generating a cover from metadata by right clicking the cover are in the book details panel also." + tickets: [1401972] + + - title: "Content server: Server KEPUB files with the extension kepub.epu when connecting to the browser on Kobo devices" + + - title: "Kobo driver: Add support for new firmware version 3.12" + + - title: "Edit metadata dialog: Add a keyboard shortcut to swap title and author [Alt+Down]" + tickets: [1397701] + + bug fixes: + - title: "Save to disk: Fix a regression that prevented saving of files into the root of a drive on Windows" + + - title: "FB2 Input: Add support for FB2 books that incorrectly use the FictionBook 2.1 XML schema." + tickets: [1401915] + + - title: "Fix command line arguments not being ignored on windows and linux when restarting calibre." + tickets: [1401991] + + - title: "E-book viewer: Fix sorting of bookmarks by position in book not working on windows and OS X." + tickets: [1402152] + + - title: "Kobo driver: Fix bookmarks not being deleted from device when deleting books on the device" + tickets: [1401502] + + - title: "Edit book: Fix auto-complete of closing tag not working when typing the closing tag at just before a word (the word would become the closing tag name)." + + - title: "calibredb: Fix list --for-machine ignoring custom columns" + tickets: [1401085] + + - title: "Edit book/Book polishing: Fix subsetting of fonts whose @font-face rules use the local() or format() CSS functions not working" + + - title: "Edit book: Fix regression that broke typing of XML entities for ampersand, less-than and greater-than" + + - title: "Edit Book: Do not change the current selected text when right clicking on a mis-spelled word" + + improved recipes: + - The Australian + - The New Yorker + - The Guardian + - Ars Technica + + - version: 2.12.0 date: 2014-11-28 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index f52563fc05..72d23b739b 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, 12, 0) +numeric_version = (2, 13, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "