version 7.24.0

This commit is contained in:
Kovid Goyal 2025-01-10 08:25:31 +05:30
parent 7845999751
commit dd6b924f5c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 36 additions and 1 deletions

View File

@ -23,6 +23,41 @@
# - title by author
# }}}
{{{ 7.24.0 2024-01-10
:: new features
- [2091268] Allow creating rules to transform series names in the Bulk metadata editor and Preferences->Metadata download
- Conversion: Automatically set the page progression direction for books that do not have it set and have their primary language either Arabic or Hebrew
- Content server: Book details view: Make calibre://show-book and calibre://view-book URLs in the comments work
- [2092496] Edit book: Spell check: Add a button to export the currently displayed list of words as a CSV file
- [2092483] Add from ISBN: Add a checkbox to automatically convert obsolete ISBN 10 to ISBN 13
- [2092395] Save single format to disk: Allow choosing the book cover as the format to save
- Option to show a button to access all available actions from the status bar in Preferences->Look & feel->Main interface
:: bug fixes
- [2092948] Read aloud: Fix no audio produced when text contains <3 and using the Windows legacy speech engine
- [2092643] Fix Tabbing while editing cells in the book list not always working
- Windows build: Also sign the portable launcher exes
- [2092630] Fix viewing books via the Cover browser not working when in device view
:: improved recipes
- LWN Weekly
- Outlook India
- Livemint
}}}
{{{ 7.23.0 2024-12-20
:: 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, 23, 100)
numeric_version = (7, 24, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"