From 7ce6e3ef0be4ed8e70532c2b0ffc840faf121655 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Mar 2022 08:17:21 +0530 Subject: [PATCH] version 5.39.0 --- Changelog.txt | 40 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 5db7051f14..6ae96a7ae1 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,46 @@ # - title by author # }}} +{{{ 5.39.0 2022-03-18 + +:: new features + +- [1963875] E-book viewer: Allow scrolling of the ToC, highlights, bookmarks, etc. with touch gestures + +- [1963822] Edit metadata dialog: When using the change case operations if some text is selected, only operate on the selected text + +- [1964123] Use atomic writes for the config files ensures no partial data is written in case of crash/powerloss + +:: bug fixes + +- [1964742] Content server: Fix reading of books with thousands of internal files not working in the Chrome browser + +- [1965182] Catalog generation: Fix a rare crash when generating very large catalogs + +- Edit/Polish book: Fix hardcoded Unicode ligatures not being preserved in AZW3 format books + +- [1963868] Fix automatic searches causing search box to lose focus when search as you type is enabled in Preferences->Searching + +- [1963748] Edit book: Check book: Auto fix package identifier being empty + +- [1963856] Amazon metadata download: Fix getting series info from amazon.jp + +- Edit book: Insert hyperlinks: When sorting anchors on elements without any text content, use the anchor itself + +- Edit book: Make the saved search panel freely resizable + +- Edit book: When dragging to select a region or adjust the selection fix mouse moving outside the image causing the region to no longer be adjusted + +:: improved recipes +- India Legal Magazine +- The Smithsonian +- The Federalist + +:: new recipes +- Swarajya Magazine by unkn0wn +- Open Magazine by unkn0wn +}}} + {{{ 5.38.0 2022-03-04 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index c7ab85f55e..b37608ba4a 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from functools import lru_cache import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 38, 0) +numeric_version = (5, 39, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "