version 7.26.0

This commit is contained in:
Kovid Goyal 2025-02-14 08:46:31 +05:30
parent 3263846467
commit 417c05ea41
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 29 additions and 1 deletions

View File

@ -23,6 +23,34 @@
# - title by author # - title by author
# }}} # }}}
{{{ 7.26.0 2025-02-14
:: new features
- Allow specifying web search links that are used when clicking on item names in the Book details panel for custom columns via Preferences->Add your own columns
- Content server: When clicking on author names in the book details page perform the same action as clicking it in the calibre program's Book details panel
:: bug fixes
- [2097677] Fix a regression in 7.17 that caused various minor problems with editing metadata directly in the book list
- Fix a regression in the previous release that broke conversion using Heuristics and TXT input documents
- [2097563] E-book viewer: Fix header/footer text size too small when using multiple monitors and the primary monitors DPI is much less than secondary monitor DPI
- [2097947] Fix series mapping rules in the metadata preferences not working
- [2098133] Fix setting custom icon for category doesn't work
- [2092732] Kobo driver: Fix a regression that broke working with very old Kobo devices
:: improved recipes
- Science Journals
- Barrons
}}}
{{{ 7.25.0 2025-02-07 {{{ 7.25.0 2025-02-07
:: new features :: new features

View File

@ -11,7 +11,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (7, 25, 0) numeric_version = (7, 26, 0)
__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>'