From 41f2f51a48a5b92be9665614388bea89dc400ae0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 Jun 2018 07:02:19 +0530 Subject: [PATCH] version 3.25.0 --- Changelog.yaml | 27 +++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 0a21c39380..7f8ebc94f0 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,33 @@ # new recipes: # - title: +- version: 3.25.0 + date: 2018-06-01 + + new features: + - title: "Kobo driver: Support the new Clara HD" + + - title: "PDF Output: Add an option to use page margins from the input document, specified via @page CSS rules." + description: "Allows individual HTML files in the input document to have different page margins in the output PDF." + tickets: [1773319] + + bug fixes: + - title: 'Fix option to "show text under buttons only if there is enough space" not working well with the option to use "two lines for the text under the buttons".' + tickets: [1773426] + + - title: "Update notification: When both calibre and plugin updates are available and the user updates only the plugins, fix the restart calibre button not working." + tickets: [1774059] + + - title: "E-book viewer: Fix printing of comics (cbz/cbr files) not working." + tickets: [1774163] + + - title: "EPUB3 Input: Fix Table of Contents not being recognized for some EPUB 3 books that placed their nav document in-side a sub-folder." + tickets: [1773627] + + improved recipes: + - Associated Press + + - version: 3.24.2 date: 2018-05-25 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6c865bc262..fb9fe2460b 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 24, 2) +numeric_version = (3, 25, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "