Skip to content

Commit

Permalink
version 6.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed May 26, 2023
1 parent ac214da commit c726b61
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,60 @@
# - 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

:: new features
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys, locale, codecs, os, collections, collections.abc

__appname__ = 'calibre'
numeric_version = (6, 17, 0)
numeric_version = (6, 18, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <[email protected]>"
Expand Down

0 comments on commit c726b61

Please sign in to comment.