version 6.14.0

This commit is contained in:
Kovid Goyal 2023-03-10 05:44:41 +05:30
parent 26d7e65e66
commit 70cfb56e1f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 32 additions and 1 deletions

View File

@ -23,6 +23,37 @@
# - title by author # - 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 {{{ 6.13.0 2023-02-17
:: new features :: new features

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (6, 13, 0) numeric_version = (6, 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>"