version 5.43.0

This commit is contained in:
Kovid Goyal 2022-05-27 07:19:14 +05:30
parent c1af40c784
commit 2bfb5c102a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 37 additions and 1 deletions

View File

@ -23,6 +23,42 @@
# - title by author
# }}}
{{{ 5.43.0 2022-05-27
:: new features
- Kobo driver: Allow using templates to generate collections
- [1975406] Book details popup: Double clicking on the cover now uses calibre's internal image viewer. Right click on the cover to open it with another program.
:: bug fixes
- [1971461] Fix Book details blank when switching from device view to library view
- [1973591] TXT Input: Fix a regression in 5.39 that caused the option to remove indents also removing blank lines
- [1972069] E-book viewer: Fix incorrect sorting of highlights from the first internal file of a book
:: improved recipes
- Outlook Magazine
- India Today
- The New Yorker
- Foreign Affairs
:: new recipes
- Asahi Shimbun by Albert Aparicio Isarn
- Business Today Magazine by unkn0wn
- Outlook Business Magazine by unkn0wn
- Donga by Minsik Cho
- Le Monde (English) by Darko Miletic
- Hinduism Today by Vishwas Vasuki
- The MIT Press Reader by yodha8
- Live Science by yodha8
- Financial Times Print Edition by Kovid Goyal
- Various Catalan language news sources by santboia
}}}
{{{ 5.42.0 2022-05-03
:: new features

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre'
numeric_version = (5, 42, 0)
numeric_version = (5, 43, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"