mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 02:34:06 -04:00
version 5.27.0
This commit is contained in:
parent
a0cc6d6c68
commit
d52286bb77
@ -23,6 +23,36 @@
|
|||||||
# - title by author
|
# - 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
|
{{{ 5.26.0 2021-08-27
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
|
|||||||
import sys, locale, codecs, os, collections, collections.abc
|
import sys, locale, codecs, os, collections, collections.abc
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (5, 26, 0)
|
numeric_version = (5, 27, 0)
|
||||||
__version__ = '.'.join(map(unicode_type, numeric_version))
|
__version__ = '.'.join(map(unicode_type, numeric_version))
|
||||||
git_version = None
|
git_version = None
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user