mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Add support for the eClicto
This commit is contained in:
parent
1addaff034
commit
6752c584e8
@ -404,7 +404,7 @@ from calibre.devices.bebook.driver import BEBOOK, BEBOOK_MINI
|
||||
from calibre.devices.blackberry.driver import BLACKBERRY
|
||||
from calibre.devices.cybookg3.driver import CYBOOKG3, CYBOOK_OPUS
|
||||
from calibre.devices.eb600.driver import EB600, COOL_ER, SHINEBOOK, \
|
||||
POCKETBOOK360, GER2, ITALICA
|
||||
POCKETBOOK360, GER2, ITALICA, ECLICTO
|
||||
from calibre.devices.iliad.driver import ILIAD
|
||||
from calibre.devices.irexdr.driver import IREXDR1000
|
||||
from calibre.devices.jetbook.driver import JETBOOK
|
||||
@ -480,6 +480,7 @@ plugins += [
|
||||
GER2,
|
||||
ITALICA,
|
||||
SHINEBOOK,
|
||||
ECLICTO,
|
||||
EB600,
|
||||
]
|
||||
plugins += [x for x in list(locals().values()) if isinstance(x, type) and \
|
||||
|
@ -129,3 +129,19 @@ class ITALICA(EB600):
|
||||
MAIN_MEMORY_VOLUME_LABEL = 'Italica Main Memory'
|
||||
STORAGE_CARD_VOLUME_LABEL = 'Italica Storage Card'
|
||||
|
||||
|
||||
class ECLICTO(EB600):
|
||||
|
||||
name = 'eClicto device interface'
|
||||
gui_name = 'eClicto'
|
||||
|
||||
FORMATS = ['epub', 'pdf', 'txt']
|
||||
|
||||
VENDOR_NAME = 'ECLICTO'
|
||||
WINDOWS_MAIN_MEM = 'EBOOK'
|
||||
WINDOWS_CARD_A_MEM = 'EBOOK'
|
||||
|
||||
EBOOK_DIR_MAIN = 'Text'
|
||||
EBOOK_DIR_CARD_A = ''
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user