mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 6.23.0
This commit is contained in:
parent
824a228e99
commit
941730f56f
@ -23,6 +23,34 @@
|
|||||||
# - title by author
|
# - title by author
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
{{{ 6.23.0 2023-07-14
|
||||||
|
|
||||||
|
:: new features
|
||||||
|
|
||||||
|
- [2025942] PDF Output: Add an option to discard the book cover instead of inserting it as the first page of the PDF
|
||||||
|
|
||||||
|
- [2025333] Content server: Allow opening the book details page for a matches book from the Full text search results page
|
||||||
|
|
||||||
|
:: bug fixes
|
||||||
|
|
||||||
|
- Windows: Fix empty data folder getting created in directory calibre is launched from when changing title/author for a book with an existing data folder
|
||||||
|
|
||||||
|
- [2026795] LIT Output: Fix error converting anything to LIT on Windows
|
||||||
|
|
||||||
|
- Ignore failures to expire old trash during startup
|
||||||
|
|
||||||
|
- [2025786] Amazon metadata download: Fix retrieval of publisher information from amazon.fr
|
||||||
|
|
||||||
|
:: improved recipes
|
||||||
|
- Guardian & Observer
|
||||||
|
- Washington Post
|
||||||
|
- Private Eye
|
||||||
|
- Associated Press
|
||||||
|
|
||||||
|
:: new recipes
|
||||||
|
- ThePressProject by Sotiris Papatheodorou
|
||||||
|
}}}
|
||||||
|
|
||||||
{{{ 6.22.0 2023-06-30
|
{{{ 6.22.0 2023-06-30
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -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, 22, 0)
|
numeric_version = (6, 23, 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>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user