From a7782679feccc6300e72e6ac5fa40b0de6d4cf35 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Feb 2022 10:40:10 +0530 Subject: [PATCH] version 5.36.0 --- Changelog.txt | 51 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 6462ba383d..8d19e5c9ab 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,57 @@ # - title by author # }}} +{{{ 5.36.0 2022-02-04 + +:: new features + +- Edit metadata dialog: Allow controlling which custom columns are present in this dialog via Preferences->Look & feel->Edit metadata + +- Edit metadata dialog: Allow manually sizing the various sections of the dialog in "All on 1 tab" mode + +- Edit book: Spell checking: Update the bundled English and Spanish dictionaries + +- [1958773] BibTeX catalogs: Support tags like custom columns + +:: bug fixes + +- [1959659] Amazon metadata download: Fix paragraphs in the comments being merged + +- [1958979] Amazon.de metadata download: Fix published date and series information not being fetched for some books + +- Email delivery: Fix sending email via Hotmail not working since this week because Microsoft changed the SMTP server name + +- [1959220] Do not remove articles for titles in the Polish language + +- [1959207] E-book viewer: When using Read aloud do not automatically lookup the highlighted word until read aloud is paused or stopped + +- E-book viewer: Fix Ctrl+p shortcut for printing not working + +- [1958882] Show an error when viewing a specific format and the file is missing + +- Edit book: Fix renaming of classes that start/end with non word characters not working + +- [1958730] Edit book: Preview panel: Fix hyphenation at end of line being rendered as boxes on macOS + +- [1959893] Fix incorrect selection size displayed in Trim image dialog when image is scaled down to fit + +- [1959782] Edit book: Fix pasting files from another editor instance failing if a file with the same name already exists + +- [1959981] When reviewing metadata if the newly downloaded metadata has no language but there is an existing language, ensure it is preserved + +:: improved recipes +- India Today +- Financial Express +- Indian Express +- Live Mint +- Al Jazeera in English +- The Financial Express +- The Straits Times + +:: new recipes +- title by author +}}} + {{{ 5.35.0 2022-01-21 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 72489984d5..04c6e293cd 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ from polyglot.builtins import environ_item, hasenv import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 35, 0) +numeric_version = (5, 36, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "