mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 5.35.0
This commit is contained in:
parent
876b8bb127
commit
e90b87cdfe
@ -6,7 +6,7 @@
|
|||||||
# to the ticket list.
|
# to the ticket list.
|
||||||
# Also, each release can have new and improved recipes.
|
# Also, each release can have new and improved recipes.
|
||||||
|
|
||||||
# {{{ 5.x.0 2021-xx-xx
|
# {{{ 5.x.0 2022-xx-xx
|
||||||
#
|
#
|
||||||
# :: new features
|
# :: new features
|
||||||
#
|
#
|
||||||
@ -23,6 +23,61 @@
|
|||||||
# - title by author
|
# - title by author
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
{{{ 5.35.0 2022-01-21
|
||||||
|
|
||||||
|
:: new features
|
||||||
|
|
||||||
|
- [1956006] Coloring/icon rules: Allow creating a rule for date columns that matches *today*
|
||||||
|
|
||||||
|
- Kobo driver: Add support for new firmware
|
||||||
|
|
||||||
|
- [1954890] Content server: Show total number of results when searching for books
|
||||||
|
|
||||||
|
:: bug fixes
|
||||||
|
|
||||||
|
- [1958028] E-book viewer: Fix searching for text near the end of a chapter sometimes not working
|
||||||
|
|
||||||
|
- [1954714] E-book viewer: Fix auto hyphenation on macOS not rendering the hyphens correctly
|
||||||
|
|
||||||
|
- Edit book: Reports: Fix thumbnails of SVG images not rendered
|
||||||
|
|
||||||
|
- ODT metadata: Support reading tags from multiple <keyword> elements
|
||||||
|
|
||||||
|
- [1958115] LRF Input: Fix a regression in calibre 5 that broke parsing of some LRF files
|
||||||
|
|
||||||
|
- [1956097] MOBI output: Dont fail if input document contains invalid % based lengths
|
||||||
|
|
||||||
|
- [1955308] AZW3 Input: Handle AZW3 files with incorrect TAGX Offset INDX header fields
|
||||||
|
|
||||||
|
- [1956932] Comic conversion: Fix conversion of comic images that are stored as grayscale images in JPEG format not working when converting to PDF with image processing turned off
|
||||||
|
|
||||||
|
- [1955967] calibredb catalog: Fix --ids and --search options not working for CSV/XML catalogs
|
||||||
|
|
||||||
|
- [1958490] Tag browser: Fix the find box not using all available width
|
||||||
|
|
||||||
|
- [1956192] E-book viewer: Remove books that do not exist from the recently opened book list
|
||||||
|
|
||||||
|
- Completion popups: Fix display of items containing line breaks
|
||||||
|
|
||||||
|
- [1956129] Fix line breaks in custom column descriptions not being rendered in their tooltips
|
||||||
|
|
||||||
|
- [1956088] Fix Preferences->Searching->Clear search histories not taking effect till a restart for some search boxes
|
||||||
|
|
||||||
|
- [1955732] Hierarchical entries in user category may not merge correctly in tag browser
|
||||||
|
|
||||||
|
:: improved recipes
|
||||||
|
- Foreign Affairs
|
||||||
|
- MIT Technology Review
|
||||||
|
- Reuters
|
||||||
|
- Clarin
|
||||||
|
- General Knowledge Today
|
||||||
|
- Popular Science
|
||||||
|
|
||||||
|
:: new recipes
|
||||||
|
- Dw.de by xav
|
||||||
|
- Equestria Daily by Timothee Andres
|
||||||
|
}}}
|
||||||
|
|
||||||
{{{ 5.34.0 2021-12-17
|
{{{ 5.34.0 2021-12-17
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -4,7 +4,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, 34, 0)
|
numeric_version = (5, 35, 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