version 5.16.0

This commit is contained in:
Kovid Goyal 2021-04-17 10:41:09 +05:30
parent fed9f5dcd7
commit e715c9e710
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 26 additions and 3 deletions

View File

@ -23,6 +23,29 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.16.0 2021-04-17
:: new features
:: bug fixes
- [1924703] CHM Input: Fix handling of some CHM files that use non-ASCII internal filenames and dont specify a character encoding in their metadata
- [1924824] Fix a regression in the previous release that prevented calibre from starting if there was a failure in a third party plugin
- Content server viewer: Fix a regression in the previous that broke handling of URLs in stylesheets
- [1924767] Fix a regression in the previous release that broke changing sections in the convert single book dialog after changing the input or output formats
- [1924675] Fix using 'is set' rules not working for column rules with rating values
:: improved recipes
:: new recipes
- The Saturday paper by Alistair Francis
}}}
{{{ 5.15.0 2021-04-16 {{{ 5.15.0 2021-04-16
:: new features :: 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 import sys, locale, codecs, os, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 15, 0) numeric_version = (5, 16, 0)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"