version 4.18.0

This commit is contained in:
Kovid Goyal 2020-06-05 07:45:33 +05:30
parent 8f8a7b89c1
commit 65ad7eabd3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 53 additions and 1 deletions

View File

@ -20,6 +20,58 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 4.18.0
date: 2020-06-05
new features:
- title: "Viewer: Search panel: Add a button to return to the position the book was at before doing a search."
tickets: [1879889]
- title: "Tag browser: Improve handling of hierarchical tags"
description: "Renaming a tag now renames it and all its children. Drag and drop of hierarchical tags alters their hierarchy. Deleting a tag now deletes all its children."
tickets: [1880264]
- title: "Viewer: In flow mode, implement drag scrolling."
tickets: [1880707]
- title: "Tag browser: Allow Manage Tags to open to a selected letter when clicking on a letter."
tickets: [1880175]
- title: "Viewer: Show number of search results in title of search panel."
tickets: [1881792]
- title: "Content server: In the book list hovering over the library name now shows the total number of books in the library."
tickets: [1881384]
bug fixes:
- title: "Fix a regression in the previous release that broke the copy and recalculate author sort buttons."
tickets: [1880395]
- title: "Book details: Fix extra margin to the right of the metadata fields."
tickets: [1881488]
- title: "Cover grid: Show text under books that have no cover as well."
tickets: [1880558]
- title: "When merging metadata, if a custom column has type multiple in the new data and some other type in the old data, ignore the old data instead of failing"
tickets: [1881796]
- title: "macOS: When using the single instance option of the viewer, crashes should not require a restart of the computer to use the viewer again."
tickets: [1881375]
- title: "Windows: Fix an error when changing title/author for books in a library whose name contains characters not encodeable in the current code page"
- title: "Windows: Fix amazon metadata download failing when accented characters in search query"
tickets: [1880300]
- title: "Comments editor: Fix shortcuts for bold/italic not working when toolbars are hidden"
improved recipes:
- The Hindu
- Wired Daily Edition
- The Economist
- version: 4.17.0 - version: 4.17.0
date: 2020-05-23 date: 2020-05-23

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv, a
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (4, 17, 0) numeric_version = (4, 18, 0)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"