diff --git a/Changelog.txt b/Changelog.txt index baf842b5d5..66d6a2b836 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,37 @@ # - title by author # }}} +{{{ 6.14.0 2023-03-10 + +:: new features + +- [2007765] Edit metadata: When setting a cover from comic files allow choosing which page to use as the cover + +- [2009304] Allow display of columns built from other columns as comments in Book details + +- Comments editor: Add a shortcut for "Paste and match style" (Ctrl+Shift+v) + +:: bug fixes + +- [2004639] macOS: ToC Editor: Fix mouse becoming unusable when trying to create a new entry + +- When computing title sorts strip leading and trailing quotes, not just leading quotes + +- [2009268] Content server viewer: Fix searching only showing results from the current chapter onwards + +- [2009735] Check book: Fix some incorrect line numbers reported in a few CSS error messages + +:: improved recipes +- Strange Horizons +- The Saturday Paper +- New Scientist +- The Mainichi +- DR Nyheder +- New York Magazine +- Bloomberg +- Deccan Herald +}}} + {{{ 6.13.0 2023-02-17 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 846b5ee5de..0e8064d9b5 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, 13, 0) +numeric_version = (6, 14, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "