mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
version 4.12.0
This commit is contained in:
parent
3b3bd92129
commit
5bf84f7688
@ -20,6 +20,52 @@
|
|||||||
# new recipes:
|
# new recipes:
|
||||||
# - title:
|
# - title:
|
||||||
|
|
||||||
|
- version: 4.12.0
|
||||||
|
date: 2020-03-06
|
||||||
|
|
||||||
|
new features:
|
||||||
|
- title: "Kobo driver: Add support for new firmware with the series list on the device"
|
||||||
|
|
||||||
|
- title: "Automatically extract the source DOCX file from Kindle Create KPF files when adding them to calibre. If you prefer to preserve the KPF file you can disable the KPF Extract plugin in Preferences->Plugins"
|
||||||
|
|
||||||
|
- title: "Content server: Add a button to delete all locally cached books."
|
||||||
|
tickets: [1864305]
|
||||||
|
|
||||||
|
- title: "Edit Book: Allow selecting the contents of a tag with Ctrl+Alt+t"
|
||||||
|
|
||||||
|
- title: "Viewer: Save current position after 3 seconds of last position change. Useful if the viewer crashes on resume from sleep."
|
||||||
|
|
||||||
|
- title: "Viewer: Add a keyboard shortcut (Ctrl+w) to toggle the scrollbar."
|
||||||
|
tickets: [1864356]
|
||||||
|
|
||||||
|
- title: "Viewer: Keyboard shortcuts to change number of columns (Ctrl+[ and Ctrl+])"
|
||||||
|
|
||||||
|
bug fixes:
|
||||||
|
- title: "Fix the Douban metadata download plugin"
|
||||||
|
tickets: [1853091]
|
||||||
|
|
||||||
|
- title: "Viewer: Fix searching in Regex and Whole words mode not working well."
|
||||||
|
|
||||||
|
- title: "Viewer: Fix searching for multiple words in fixed layout books not working."
|
||||||
|
tickets: [1863464]
|
||||||
|
|
||||||
|
- title: "RTF Input: Fix handling of RTF files with invalid encoded text."
|
||||||
|
tickets: [1864719]
|
||||||
|
|
||||||
|
- title: "PDF Output: Add a hangcheck for loading HTML if there is no progress for sixty seconds abort"
|
||||||
|
tickets: [1865380]
|
||||||
|
|
||||||
|
- title: 'Viewer: When starting without a book allowing quitting the viewer by clicking the close button on the "Open book" page'
|
||||||
|
tickets: [1864343]
|
||||||
|
|
||||||
|
improved recipes:
|
||||||
|
- Wired
|
||||||
|
- ABC News Australia
|
||||||
|
|
||||||
|
new recipes:
|
||||||
|
- title: Spectator Australia
|
||||||
|
author: James Cridland
|
||||||
|
|
||||||
- version: 4.11.2
|
- version: 4.11.2
|
||||||
date: 2020-02-21
|
date: 2020-02-21
|
||||||
|
|
||||||
|
@ -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, 11, 2)
|
numeric_version = (4, 12, 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