version 7.1.0

This commit is contained in:
Kovid Goyal 2023-11-24 08:13:25 +05:30
parent 3e5611da73
commit 49c1485326
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 34 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# to the ticket list. # to the ticket list.
# Also, each release can have new and improved recipes. # Also, each release can have new and improved recipes.
# {{{ 6.x.0 2023-xx-xx # {{{ 7.x.0 2023-xx-xx
# #
# :: new features # :: new features
# #
@ -23,6 +23,38 @@
# - title by author # - title by author
# }}} # }}}
{{{ 7.1.0 2023-11-23
:: new features
- Notes editor: When pasting HTML with images offer to download remote images in the pasted content
:: bug fixes
- Fix regression in 7.0 that broke restore of db from backups
- Content server: Fix newly added books on homepage not restricted to the books the logged in user is allowed to access
- [2044118] When starting in system tray do not flash the main window briefly
- Notes editor: Fix spurious error message when saving a note that contains pasted HTML that refers to an image
- [2043998] Fix a regression that caused the unknown/unset date to incorrectly be displayed/edited as a date in the year AD 101 in some timezones
- Comments editor: Fix data file links not working
- Linux installer: Check that the user has libxcb-cursor.so.0 installed. If not quit early with an error message asking them to install it
- [2044408] LRF Output: Fix a regression in 7.0 that broke conversion to LRF
:: improved recipes
- Substack
:: new recipes
- The World Ahead by unkn0wn
}}}
{{{ 7.0.0 2023-11-17 {{{ 7.0.0 2023-11-17
:: 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 = (7, 0, 0) numeric_version = (7, 1, 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>"