version 6.19.0

This commit is contained in:
Kovid Goyal 2023-05-29 11:10:41 +05:30
parent 83a1fef4d6
commit 5519a2264c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 25 additions and 1 deletions

View File

@ -23,6 +23,30 @@
# - title by author
# }}}
{{{ 6.19.0 2023-05-29
:: new features
- HTML Input: Restrict adding of resources like images to only files within the folder hierarchy starting at the parent folder of the root HTML file
Can be controlled by customizing the HTML to Zip plugin in Preferences->Plugins or the --allow-local-files-outside-root option to the
ebook-convert command
:: bug fixes
- PDF Output: Fix regression in previous release causing non-English entries to be incorrectly encoded into the PDF bookmarks
- PDF Output: Fix regression in previous release that caused blank pages when generating headers or footers
- [2021367] Book list: Fix editing-in-place not pre-selecting existing text for some column types
- Amazon.de metadata download: Update for site changes
- PDF Output: Set /Creator and /Producer in /Info
- [2020906] Fix row height incorrect in Manage category dialog when blank
}}}
{{{ 6.18.1 2023-05-26
:: new features

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre'
numeric_version = (6, 18, 1)
numeric_version = (6, 19, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"