version 7.2.0

This commit is contained in:
Kovid Goyal 2023-12-15 05:12:34 +05:30
parent e001a04a35
commit 36951caf1b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 31 additions and 1 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"