From f2be7dffef15986d08d068f0e469da66a612c26f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 Mar 2024 08:15:53 +0530 Subject: [PATCH] version 7.6.0 --- Changelog.txt | 42 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 9e6d49eba1dd..a91bdecbff42 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,48 @@ # - title by author # }}} +{{{ 7.6.0 2024-03-01 + +:: new features + +- [major 1979022] E-book viewer: Allow saving current settings in "profiles" that can be quickly and easily swapped between + + To create a profile or switch to a previously saved profile access "Profiles" from the viewer controls or press the `Alt+P` shortcut. + +- [2053144] Edit book: Add a shortcut `Ctrl+M` to merge selected files + +- Get books: Add support for Amazon Mexico + +- A new toolbar button to show all available actions in sub menus. Can be added via `Preferences->Toolbars & menus` + +- Edit book: Allow selecting multiple books to edit at once, opening all selected books in separate editor instances + +:: bug fixes + +- [2054617] Cover grid: Fix dragging the mouse while holding shift to extend the selection not working well + +- [2054934] E-book viewer: Fix doing a multi-page selections sometimes causing the start of the selection to move backwards + +- Edit book: Live CSS: Fix regression causing incorrect colors in calibre 7 + +- Windows: Fix a regression in calibre 7 that caused images in long text columns to not be displayed in the tooltip for the tooltip + +- Fix disabled items in menus having blurry text + +- Content server: Fix a regression in the previous release that caused an error when doing a search/sort on some browsers + +:: improved recipes +- New Yorker +- Moneycontrol +- Swarajya Mag +- nautil.us +- Pro Physik + +:: new recipes +- The Week UK by unkn0wn +- Andhrajyothy by unkn0wn +}}} + {{{ 7.5.1 2024-02-09 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 27785b339da5..115ddacfa1bd 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (7, 5, 1) +numeric_version = (7, 6, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "