version 6.18.0

This commit is contained in:
Kovid Goyal 2023-05-26 06:44:58 +05:30
parent ac214da709
commit c726b61dcc
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 55 additions and 1 deletions

View File

@ -23,6 +23,60 @@
# - title by author # - title by author
# }}} # }}}
{{{ 6.18.0 2023-05-26
:: new features
- [2020603] Cover download: Allowing saving alternate covers to disk or in the book's data folder by right clicking on the cover
- [2020237] Content server: Allow disabling full text search via the web interface
- [2020233] When sending books to the device confirm the overwrite if the book already exists on the device
- E-book viewer: Handle horizontal wheel events as section jumps in paged mode
- Comic Input: When grayscaling comic images use 16bit gray instead of 8bit for better fidelity
When using the PNG format for images this results in larger files but with better grayscaling fidelity.
- Add a new option in Preferences->Searching to disable keyboard searching in book list (i.e. you can turn off the behavior that pressing a key will jump to the first book whose title starts with that letter)
- [2018423] Manage categories dialog: Use alternating row colors and allow adjusting row height
- Allow assigning a keyboard shortcut in Preferences->Shortcuts to open the data folder of a book
- Various improvements to syntax highlighting for the Markdown long text editor
:: bug fixes
- [2018025] Fix a regression in 6.16 that broke restoring of the database
- Tag browser: Fix using F2 to edit items not allowing completion
- Book details: Fix formatting of text when copying all book details in narrow mode
- Book details: Fix copy all not respecting line breaks in fields
- [2018660] Fix a regression in previous release that broke scrolling when using the scroll_per_row tweak
- [2018548] Fix a regression in the previous release that broke the category manager dialog in some situations
:: improved recipes
- NYTimes
- Economist
- Washington Post
- Irish Independent and Irish Times
- Live Mint
- Psych
- Hindu
:: new recipes
- Irish Times Free by unkn0wn
- elEconomista.es and El Confidencial by Hugo Meza
}}}
{{{ 6.17.0 2023-04-26 {{{ 6.17.0 2023-04-26
:: 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, 17, 0) numeric_version = (6, 18, 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>"