mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 4.23.0
This commit is contained in:
parent
ff67af8312
commit
9d881ed2fc
@ -5,20 +5,47 @@
|
|||||||
# for important features/bug fixes.
|
# for important features/bug fixes.
|
||||||
# Also, each release can have new and improved recipes.
|
# Also, each release can have new and improved recipes.
|
||||||
|
|
||||||
# - version: 4.?.0
|
- version: 4.23.0
|
||||||
# date: 2020-??-??
|
date: 2020-08-21
|
||||||
#
|
|
||||||
# new features:
|
new features:
|
||||||
# - title:
|
- title: "Kobo driver: Add support for new firmware. Also add recognition of 'Kobo Plus' subscription books"
|
||||||
#
|
|
||||||
# bug fixes:
|
- title: "Edit book: Allow customizing the base background/foreground and link colors for the preview window."
|
||||||
# - title:
|
tickets: [1889925]
|
||||||
#
|
|
||||||
# improved recipes:
|
- title: "Quickview panel: Add actions to the context menu to search for book in library, open in viewer, etc."
|
||||||
# -
|
tickets: [1891765]
|
||||||
#
|
|
||||||
# new recipes:
|
- title: "Allow forcing calibre to remember the column width for the On device column by right clicking the header of the column"
|
||||||
# - title:
|
|
||||||
|
- title: "Template language: Add functions to perform math operations to convert fractional numbers to integers"
|
||||||
|
|
||||||
|
bug fixes:
|
||||||
|
- title: "Content server: Fix Esc key not working in several views."
|
||||||
|
tickets: [1849958]
|
||||||
|
|
||||||
|
- title: "Fix unable to delete default value for custom columns of boolean type, once set"
|
||||||
|
tickets: [1889973]
|
||||||
|
|
||||||
|
- title: "EPUB Output: When splitting dont consider files with only a single character empty"
|
||||||
|
|
||||||
|
- title: "Comments editor: Fix syntax coloring for HTML view in dark mode"
|
||||||
|
|
||||||
|
- title: "Book list: When a series column is not wide enough, elide text in the middle so that the series number is visible"
|
||||||
|
|
||||||
|
improved recipes:
|
||||||
|
- El Diplo
|
||||||
|
- calibre Blog
|
||||||
|
- ESPN
|
||||||
|
- LA Times
|
||||||
|
- Winnipeg Free Press
|
||||||
|
- Popular Science
|
||||||
|
- Science News Recent Issues
|
||||||
|
|
||||||
|
new recipes:
|
||||||
|
- title: linuxnews.de and t3n.de
|
||||||
|
author: Volker Heggemann
|
||||||
|
|
||||||
- version: 4.22.0
|
- version: 4.22.0
|
||||||
date: 2020-07-31
|
date: 2020-07-31
|
||||||
|
@ -645,7 +645,7 @@ and then convert the resulting HTML file with calibre. When saving as
|
|||||||
HTML, be sure to use the "Save as Web Page, Filtered" option as this will
|
HTML, be sure to use the "Save as Web Page, Filtered" option as this will
|
||||||
produce clean HTML that will convert well. Note that Word produces really messy
|
produce clean HTML that will convert well. Note that Word produces really messy
|
||||||
HTML, converting it can take a long time, so be patient. If you have a newer
|
HTML, converting it can take a long time, so be patient. If you have a newer
|
||||||
version of Word available, you can directly save it as docx as well.
|
version of Word available, you can directly save it as .docx as well.
|
||||||
|
|
||||||
Another alternative is to use the free OpenOffice. Open your .doc file in
|
Another alternative is to use the free OpenOffice. Open your .doc file in
|
||||||
OpenOffice and save it in OpenOffice's format .odt. calibre can directly convert
|
OpenOffice and save it in OpenOffice's format .odt. calibre can directly convert
|
||||||
|
@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv, a
|
|||||||
import sys, locale, codecs, os, importlib, collections
|
import sys, locale, codecs, os, importlib, collections
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (4, 22, 0)
|
numeric_version = (4, 23, 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>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user