diff --git a/Changelog.txt b/Changelog.txt index 313ade7cb3..b5f753347f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,45 @@ # - title by author # }}} +{{{ 6.16.0 2023-04-20 + +:: new features + +- [major] Allow storing extra data files with a book + + Right click the Add books button to add arbitrary files as "data files" to a book record. + These are managed by calibre along with the book files, but cannot be used for conversion/viewing. + Select a book and press the "O" key to view the data files in your file explorer. + +- Allow undoing the deletion of books from the calibre library + + Now deleted books are stored in a calibre "Trash bin" from which they can be restored with + a single click. To view the trash bin, right click the "Remove books" button. + +- [2016070] Kobo driver: Add support for the new Kobo Elipsa 2E + +- Book details: if an item has an associated link then offer that link in the item's context menu + + +:: bug fixes + +- [2015617] Content server viewer: Fix end of chapter content being occasionally skipped when scrolling by screen full with multiple pages + +- [2017130] E-book viewer: Fix a regression that caused notes from a different highlights to be shown in some situations + +- [2015795] E-book viewer: Show an error if the user tries to search for only punctuation or spaces in the search modes that ignore these + +- Fix custom columns not showing in Book details links from other libraries + +:: improved recipes +- Frontline +- Outlook Magazine + +:: new recipes +- Bar and Bench by unkn0wn +- The Washington Post Print Edition by unkn0wn +}}} + {{{ 6.15.1 2023-04-07 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 54aa9fe02f..c124f2fbd6 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from functools import lru_cache import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (6, 15, 1) +numeric_version = (6, 16, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "