version 7.5.1

This commit is contained in:
Kovid Goyal 2024-02-09 11:41:37 +05:30
parent d123ff336c
commit f947ecf414
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 7.5.0 2024-02-09 {{{ 7.5.1 2024-02-09
:: new features :: new features
@ -52,6 +52,8 @@
- Fix a regression in 7.2 that caused the popup used for editing fields in the book list to be mis-positioned on very wide monitors - Fix a regression in 7.2 that caused the popup used for editing fields in the book list to be mis-positioned on very wide monitors
- Version 7.5.1 fixes a bug in 7.5.0 where calibre would not start up using dark colors when the system was in dark mode on some windows installs
:: improved recipes :: improved recipes
- El Diplo - El Diplo
- Science News - Science News

View File

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