diff --git a/Changelog.txt b/Changelog.txt index 90e87ec7ab..5b3c5e0b54 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,42 @@ # - 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 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0d0b3f577a..dcf987402a 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -11,7 +11,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (7, 13, 100) +numeric_version = (7, 14, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "