version 5.44.0

This commit is contained in:
Kovid Goyal 2022-06-17 08:05:27 +05:30
parent 9ffcb91813
commit c53cc30b22
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 47 additions and 1 deletions

View File

@ -23,6 +23,52 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.44.0 2022-06-17
:: new features
- [1976105] Amazon metadata download: Add an option to prefer the Kindle edition when multiple book types are returned by the search (Preferences->Metadata download->Configure the Amazon plugin)
- Kobo driver: Support for updated firmware
- [1977681] Allow customizing how yes/no columns are displayed (Preferences->Add your own columns)
- Manage tags dialog: If tags are present in the add tags input when OK is clicked, add them automatically, without needing to click the plus button first
:: bug fixes
- [1978500] Edit book: Live CSS: Fix @namespace rules causing jumping to rule definition to go to the wrong definition
- Workaround for Apple bug in macOS 13 that prevents device detection
- Dont use commas in filenames when sending to pbsync and kindle email addresses
- Edit book: When quitting while a save is in progress and the save completes while the confirmation popup is visible, dont abort the quit.
:: improved recipes
- Harvard Business Review
- Philosophy Now
- Sydney Morning Herald
- Haaretz
- Indian Express
- Hindi Business Line
- The New York Times
- Nature
- Eenadu
- Scientific American
- Business Today
- Irish Times
- FAZ.net
- Le Monde
- Economist
:: new recipes
- Nautilus by unkn0wn
- The Healthy from Reader's Digest by Stephen Genusa
- Business Standard Print Edition by unkn0wn
- The Economic Times India Print Edition by unkn0wn
}}}
{{{ 5.43.0 2022-05-27 {{{ 5.43.0 2022-05-27
:: 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 = (5, 43, 0) numeric_version = (5, 44, 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>"