From 93a61d6440132d5df7602800bfd3ec8dd6a148f3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 31 May 2024 06:47:06 +0530 Subject: [PATCH] version 7.12.0 --- Changelog.txt | 30 ++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 44c54a0c01..af54ecb21a 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,36 @@ # - title by author # }}} +{{{ 7.12.0 2024-05-30 + +:: new features + +- [2067167] E-book polishing: Add option to download external resources (images/stylesheets/etc.) + +- Conversion: Add an option under Structure detection to automatically fill in blank alt attributes for images that have alt text in the image file metadata + +- [2067437] Content server: Use the book title as the filename for downloaded highlights + +- Review downloaded metadata dialog: Add a "Previous" button to go back to the last reviewed book + +:: bug fixes + +- Content server viewer: Fix the bottom of the text being cut off on mobile browsers when not in full screen mode. Unfortunately, this means the viewer now requires a browser no more than two years old. + +- [2067168] Kindle driver: Increase the size of the cover thumbnails sent to the Scribe + +- [1943495] Kindle output: Fix cover images that contain EXIF data without a rotation not displaying on the Kindle lockscreen + +- E-book viewer: Fix ruby tags not excluded when searching for text + +- [2067128] Content server viewer: Fix a regression in the previous release that broke searching + +:: improved recipes +- Economist Espresso +- Slate + +}}} + {{{ 7.11.0 2024-05-24 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 418e08d0b8..4184c1d725 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -11,7 +11,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (7, 11, 0) +numeric_version = (7, 12, 0) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "