From 5519a2264cc4240a728b56ff06caef0c8f19c9a3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 May 2023 11:10:41 +0530 Subject: [PATCH] version 6.19.0 --- Changelog.txt | 24 ++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 5255cc1980..b931485aa3 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index fab7220d8f..45d23b0dde 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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 "