version 5.26.0

This commit is contained in:
Kovid Goyal 2021-08-27 07:35:09 +05:30
parent 7697daf2ce
commit 547df82cff
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 26 additions and 1 deletions

View File

@ -23,6 +23,31 @@
# - title by author
# }}}
{{{ 5.26.0 2021-08-27
:: new features
- [1941013] Dark color scheme: Use a darker blue for highlighted items
:: bug fixes
- Content server book viewer: Show a message when a search finds no matches
- MOBI Output: Fix JPEG images without any JFIF metadata not being rendered on the Kindle
- [1939908] Comic input: Fix single color images having their colors changed by normalization
- [1940005] E-book viewer: Fix creating multiple highlights in a single paragraph that also contains some extra text formatting at the start causing the second and subsequent highlights to malfunction
- [1939912] Edit book: Fix a regression in the previous release that broke the options in the Remove unused CSS dialog
:: improved recipes
- Boston Globe
:: new recipes
- NYTimes Cooking by gourav
}}}
{{{ 5.25.0 2021-08-13
:: new features

View File

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