mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 5.32.0
This commit is contained in:
parent
7003e9c466
commit
8abac02e39
@ -23,6 +23,55 @@
|
|||||||
# - title by author
|
# - title by author
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
{{{ 5.32.0 2021-11-12
|
||||||
|
|
||||||
|
:: new features
|
||||||
|
|
||||||
|
- [major] Edit book: Add a tool to transform HTML tags based on rules (Tools->Transform HTML)
|
||||||
|
Allows for making transformations such as changing one html tag to another, deleting tags, wrapping
|
||||||
|
them in another tag, etc. Also available during conversions via the Look & feel->Transform HTML
|
||||||
|
section of the conversion dialog.
|
||||||
|
|
||||||
|
- [1949908] Driver for the new Tolino Vision 6
|
||||||
|
|
||||||
|
- Kobo driver: Add support for the latest firmware released last week
|
||||||
|
|
||||||
|
- [1948889] When picking a random book ensure recently chosen books are not re-selected
|
||||||
|
|
||||||
|
- Icon theme chooser dialog: Allow right clicking on a theme to visit its homepage
|
||||||
|
|
||||||
|
:: bug fixes
|
||||||
|
|
||||||
|
- Amazon metadata download: Add support for more markup variations in amazon's sites that could prevent the fetching of
|
||||||
|
ratings, comments and series metadata for some books
|
||||||
|
|
||||||
|
- Google search: Add support for new beta search results page markup that was preventing using cached Google pages
|
||||||
|
to search for Amazon metadata
|
||||||
|
|
||||||
|
- PDF Output: Fix the option to preserve cover aspect ratio being ignored when converting comics
|
||||||
|
|
||||||
|
- [1950412] DOCX Input: Sanitize image filenames more strictly to workaround broken EPUB software
|
||||||
|
|
||||||
|
- [1950206] Linux binary: Fix file dialogs not working on Fedora 35 under KDE
|
||||||
|
|
||||||
|
- [1949604] When sending email to the Kindle and PocketBook sync services use ASCII filenames as there have been some
|
||||||
|
reports of issues with non-ASCII filenames with these services.
|
||||||
|
|
||||||
|
- [1950033] Book Details: Fix missing copy options on composite columns
|
||||||
|
|
||||||
|
- Ask for confirmation when deleting covers from books
|
||||||
|
|
||||||
|
:: improved recipes
|
||||||
|
- New York Post
|
||||||
|
- Liberation
|
||||||
|
- Boston Globe
|
||||||
|
- The Globe and Mail
|
||||||
|
- LeMonde
|
||||||
|
|
||||||
|
:: new recipes
|
||||||
|
- India speaks reddit feed by Vishwas Vasuki
|
||||||
|
}}}
|
||||||
|
|
||||||
{{{ 5.31.1 2021-10-29
|
{{{ 5.31.1 2021-10-29
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv
|
|||||||
import sys, locale, codecs, os, collections, collections.abc
|
import sys, locale, codecs, os, collections, collections.abc
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (5, 31, 1)
|
numeric_version = (5, 32, 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>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user