From 36951caf1b1ec257ecd2c5037749f6abbf0c4e46 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Dec 2023 05:12:34 +0530 Subject: [PATCH] version 7.2.0 --- Changelog.txt | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 6e8b855026..dde30215e5 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,36 @@ # - title by author # }}} +{{{ 7.2.0 2023-12-14 + +:: new features + +- Content server: Also listen for all incoming IPv6 connections by default, not just IPv4 + +- Book details: Allow deleting notes from the right click menu easily + +:: bug fixes + +- [2045133] Windows: Edit book: Fix a crash when using the check book tool with a book that contains malformed markup, in calibre 7 + +- Windows: Improve flickering at startup due to a Qt regression in calibre 7 + +- Windows: Fix moving the main window causing popup/floating windows to be resized in calibre 7 due to yet another Qt regression + +- [2044659] Fix detection of existing books on the Tolino Vision 6 + +- Linux: Fix external applications not being launched under Wayland in calibre 7 because of a bug in Qt + +:: improved recipes +- Reuters +- Scientific American +- New Yorker +- Times of India +- infzm +- singtaohk + +}}} + {{{ 7.1.0 2023-11-23 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 5657833c5c..f2230a4ec5 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 = (7, 1, 0) +numeric_version = (7, 2, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "