version 7.14.0

This commit is contained in:
Kovid Goyal 2024-07-12 08:56:41 +05:30
parent 87b2e04b72
commit f1e57a86f1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 37 additions and 1 deletions

View File

@ -23,6 +23,42 @@
# - title by author # - title by author
# }}} # }}}
{{{ 7.14.0 2024-07-12
:: new features
- [2072442] Book details: When dropping files add an option to add them to the book as data files
- Edit book: A new action to toggle line wrapping mode in all code editors. Can be assigned via Preferences->Keyboard shortcuts->Global actions or added to the toolbar via Preferences->Toolbars->Book wide actions
- Kobo driver: Add an option to force the SeriesID for all books in a series to have the same value
:: bug fixes
- [2071458] Fix a regression in the previous release that broke merging of books when the confirmation for the merge was disabled
- [2072412] E-book viewer: Allow some header and footer items such as progress to overflow instead of being truncated
- [2072405] HTMLZ output: Make renaming of image files happen in filename order
- [2072384] MTP driver: Fix infinite loop when connecting to some devices with more 65K objects in their filesystem
- Fix shortcut editing widget when Qt is using a theme that inserts accelerators into push button labels automatically
:: improved recipes
- Instapaper
- MIT Tech Review
- Guardian
- Liberation
- The Times and Sunday Times
- Bloomberg Businessweek
- Times Literary Supplement
:: new recipes
- Ancient Egypt Magazine, Minerva Magazine, Military History Magazine and World Archaeology Magazine by unkn0wn
}}}
{{{ 7.13.0 2024-06-28 {{{ 7.13.0 2024-06-28
:: 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, 13, 100) numeric_version = (7, 14, 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>"