From d52286bb779a82be32c8cc2e0eceed63c0144cad Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Sep 2021 09:19:14 +0530 Subject: [PATCH] version 5.27.0 --- Changelog.txt | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 9afe4651b5..c3e949361c 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,36 @@ # - title by author # }}} +{{{ 5.27.0 2021-09-10 + +:: new features + +- When adding markdown (.md) or textile (.textile) files that contain references to images, automatically add them as txtz with the images + +:: bug fixes + +- DOCX Output: Correctly convert soft hyphens in the input document to DOCX soft hyphens + +- [1942805] DOCX Input: Fix a bookmark at the end of a paragraph causing the bookmark at the start of the paragraph to be skipped + +- [1942773] Edit book: Spell check: Fix EPUB 3 nav document not being spell checked when not in the spine + +- [1942012] PDF Output: Fix a rare failure when the input document has a ToC item pointing to the last page + +- [1942129] Windows: Fix a regression in calibre 5 that caused drag and drop from WinZip to not work + +- [1941992] TXT Output: Fix a regression in calibre 5 that caused the max line length option to not work + +- When auto converting added TXT files with image references to TXTZ use a full markdown parser to detect markdown images + +:: improved recipes +- BBC News +- Foreign Affairs + +:: new recipes +- The Week by Kovid Goyal +}}} + {{{ 5.26.0 2021-08-27 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 13807011e7..1381b689db 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 26, 0) +numeric_version = (5, 27, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "