From 0fb6ef9dc0bb49e2ce85b9d2841d159120f4ccf9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 3 Apr 2015 09:28:24 +0530 Subject: [PATCH] version 2.23.0 --- Changelog.yaml | 35 +++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index ab27a9bbf2..c054fc3f20 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,41 @@ # new recipes: # - title: +- version: 2.23.0 + date: 2015-04-03 + + new features: + - title: "Allow adding an empty ebook in various formats to existing book records by right clicking the Add Books button" + + - title: "Add ability to create additional empty formats to the 'Add empty book' command" + + - title: "News download: Add API to cleanly abort the download of an article during the preprocess stage based on the article's contents." + + - title: "Update the version of Qt bundled with calibre to 5.4.1. This fixes various minor bugs, most notably, improving text rendering on linux." + + bug fixes: + - title: "MOBI Input: Fix links not working in viewer for MOBI files that contain anchors placed on linebreak elements." + tickets: [1439450] + + - title: "Book details panel: Fix copying Path link by right clicking on it not working." + tickets: [1437756] + + - title: "Fix a regression that caused importing of a single book from a directory to fail if the directory has no ebook files in it" + + - title: "Column Icons: Fix apostrophes in icon filenames causing errors." + tickets: [1436690] + + - title: "Edit Book: Fix a regression that caused Remove unused CSS to fail on invalid CSS selectors, instead of ignoring them" + + - title: "Open With: Fix open with failing to get list of default programs on windows if the registry contains missing ProgIDs." + tickets: [1434990] + + improved recipes: + - Esquire + - Courrier International + - CNET + - Tagesschau + - version: 2.22.0 date: 2015-03-20 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 5a6e8ae98b..3faf45e8c8 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, 22, 0) +numeric_version = (2, 23, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "