Skip to content

Commit

Permalink
version 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Nov 24, 2023
1 parent 3e5611d commit 49c1485
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
34 changes: 33 additions & 1 deletion Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# to the ticket list.
# Also, each release can have new and improved recipes.

# {{{ 6.x.0 2023-xx-xx
# {{{ 7.x.0 2023-xx-xx
#
# :: new features
#
Expand All @@ -23,6 +23,38 @@
# - 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

:: new features
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys, locale, codecs, os, collections, collections.abc

__appname__ = 'calibre'
numeric_version = (7, 0, 0)
numeric_version = (7, 1, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
Expand Down

0 comments on commit 49c1485

Please sign in to comment.