version 5.25.0

This commit is contained in:
Kovid Goyal 2021-08-13 09:42:17 +05:30
parent 42b04ddeeb
commit a0041b8dce
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 29 additions and 1 deletions

View File

@ -23,6 +23,34 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.25.0 2021-08-13
:: new features
- [1939469] Edit/Polish book: Remove unused CSS now also removes unreferenced stylesheets
- E-book viewer: Add some CSS variables and classes that allow writing calibre specific CSS in ebooks. See https://manual.calibre-ebook.com/viewer.html#designing-your-book-to-work-well-with-the-calibre-viewer
- A new framework plugins can use to be notified about changes to calibre libraries
- [1938752] Edit metadata dialog: When pasting into the identifiers field if the clipboard contains a URL paste it directly as a URL identifier
:: bug fixes
- [1938448] E-book viewer: When displaying popup footnotes use the same writing direction as the main text for the footnote popups size and header
- E-book viewer: Improve the text layout when looking up words in Google
- Content server viewer: Fix read aloud not working on mobile browsers
:: improved recipes
- The Guardian and The Observer
- Wall Street Journal
- The Atlantic
}}}
{{{ 5.24.0 2021-07-30 {{{ 5.24.0 2021-07-30
:: new features :: new features

View File

@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 24, 0) numeric_version = (5, 25, 0)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"