version 7.9.0

This commit is contained in:
Kovid Goyal 2024-04-19 07:12:05 +05:30
parent 6514dde205
commit 098c77b543
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.9.0 2024-04-19
:: new features
- [2060886] Kobo driver: Add support for the new color Kobo devices
- Edit book: Add a setting to control cursor width under Preferences->Editor settings
- Edit book: Regex-function mode: Show a confirmation popup when closing the function editor when there are unsaved changes
:: bug fixes
- [2060314] Fix undocked Quickview dialog not being restored at startup
- [2044118] Windows: Fix an issue where closing a maximized calibre window to the system tray and then reconnecting with remote desktop would cause a blank calibre window to be displayed
:: improved recipes
- El Correo
- Eenadu
- ORFonline
- NatGeo
- Harpers Magazine
- New Yorker
- Business Today
- The Week
- Asahi Shimbun
- Outlook Magazine
}}}
{{{ 7.8.0 2024-04-05
:: new features

View File

@ -11,7 +11,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre'
numeric_version = (7, 8, 100)
numeric_version = (7, 9, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"