version 7.12.0

This commit is contained in:
Kovid Goyal 2024-05-31 06:47:06 +05:30
parent 68a8545351
commit 93a61d6440
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 31 additions and 1 deletions

View File

@ -23,6 +23,36 @@
# - title by author # - 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 {{{ 7.11.0 2024-05-24
:: new features :: new features

View File

@ -11,7 +11,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (7, 11, 0) numeric_version = (7, 12, 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>"