version 8.13.0

This commit is contained in:
Kovid Goyal 2025-10-17 09:34:22 +05:30
parent aa49270b1b
commit ca1c006eff
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 24 additions and 1 deletions

View File

@ -23,6 +23,29 @@
# - title by author
# }}}
{{{ 8.13.0 2025-10-18
:: new features
- [2126881] Virtual libraries: Allow defining their search expressions more comfortably in a multi-line edit box
- Open with: On Windows launch the specified program via the windows API for executing programs to decouple it more thoroughly from the calibre environment
:: bug fixes
- Get books: Fix ebooks.com plugin
- calibre-server: Fix CALIBRE_OVERRIDE_DATABASE_PATH not working
- Export library: Dont use /tmp on Linux fixes export breaking with large FTS database on Linux distros that mount /tmp in RAM
- [2126611] Fix a regression in 8.11 that caused errors when trying to open a book from the full text search results while the search was still running
:: improved recipes
- Todoist
- NZZ
}}}
{{{ 8.12.0 2025-10-01
:: new features

View File

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