Skip to content

Commit

Permalink
version 5.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Sep 10, 2021
1 parent a0cc6d6 commit d52286b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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 <[email protected]>"
Expand Down

0 comments on commit d52286b

Please sign in to comment.