version 5.27.0

This commit is contained in:
Kovid Goyal 2021-09-10 09:19:14 +05:30
parent a0cc6d6c68
commit d52286bb77
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 31 additions and 1 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"