mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 6.7.0
This commit is contained in:
parent
2a1dacae67
commit
9f2a701b21
@ -23,6 +23,37 @@
|
||||
# - title by author
|
||||
# }}}
|
||||
|
||||
{{{ 6.7.0 2022-10-14
|
||||
|
||||
:: new features
|
||||
|
||||
- Template language: A new "Python template mode" which allows using arbitrary Python code in templates
|
||||
|
||||
- [1992273] Tag browser: Allow removing format from selected books by right clicking on the format in the Tag browser
|
||||
|
||||
- [1991597] E-book viewer: Ask for confirmation when creating a highlight that will overwrite existing highlights
|
||||
|
||||
- Book list: Allow changing column widths via a dedicated dialog by right clicking on column headers
|
||||
|
||||
:: bug fixes
|
||||
|
||||
- [1992278] E-book viewer: Fix a regression that broke adding of new lookup sources
|
||||
|
||||
- [1991504] E-book viewer: Fix copy to clipboard not ignoring text from elements that are marked as non user selectable
|
||||
|
||||
- [1992244] Content server: When adding books, run all file type plugins before reading metadata
|
||||
|
||||
- Edit book: Preview panel: In dark mode when all of the background/foreground/link colors are set to "No change" do not render the book using dark colors
|
||||
|
||||
:: improved recipes
|
||||
- The Athletic
|
||||
- der Standard
|
||||
- The Economic Times India Print Edition
|
||||
- Indian Express
|
||||
- India Today Magazine
|
||||
- Caravan Magazine
|
||||
}}}
|
||||
|
||||
{{{ 6.6.1 2022-09-30
|
||||
|
||||
:: new features
|
||||
|
@ -5,7 +5,7 @@ from functools import lru_cache
|
||||
import sys, locale, codecs, os, collections, collections.abc
|
||||
|
||||
__appname__ = 'calibre'
|
||||
numeric_version = (6, 6, 1)
|
||||
numeric_version = (6, 7, 0)
|
||||
__version__ = '.'.join(map(str, numeric_version))
|
||||
git_version = None
|
||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
Loading…
x
Reference in New Issue
Block a user