mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Driver for the Irex DR 800
This commit is contained in:
parent
8700214dc6
commit
783ac99175
@ -407,7 +407,7 @@ from calibre.devices.eb600.driver import EB600, COOL_ER, SHINEBOOK, \
|
|||||||
POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK, \
|
POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK, \
|
||||||
BOOQ
|
BOOQ
|
||||||
from calibre.devices.iliad.driver import ILIAD
|
from calibre.devices.iliad.driver import ILIAD
|
||||||
from calibre.devices.irexdr.driver import IREXDR1000
|
from calibre.devices.irexdr.driver import IREXDR1000, IREXDR800
|
||||||
from calibre.devices.jetbook.driver import JETBOOK
|
from calibre.devices.jetbook.driver import JETBOOK
|
||||||
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
|
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
|
||||||
from calibre.devices.nook.driver import NOOK
|
from calibre.devices.nook.driver import NOOK
|
||||||
@ -465,6 +465,7 @@ plugins += [
|
|||||||
CYBOOK,
|
CYBOOK,
|
||||||
ILIAD,
|
ILIAD,
|
||||||
IREXDR1000,
|
IREXDR1000,
|
||||||
|
IREXDR800,
|
||||||
JETBOOK,
|
JETBOOK,
|
||||||
SHINEBOOK,
|
SHINEBOOK,
|
||||||
POCKETBOOK360,
|
POCKETBOOK360,
|
||||||
|
@ -36,3 +36,13 @@ class IREXDR1000(USBMS):
|
|||||||
EBOOK_DIR_MAIN = 'ebooks'
|
EBOOK_DIR_MAIN = 'ebooks'
|
||||||
DELETE_EXTS = ['.mbp']
|
DELETE_EXTS = ['.mbp']
|
||||||
SUPPORTS_SUB_DIRS = True
|
SUPPORTS_SUB_DIRS = True
|
||||||
|
|
||||||
|
class IREXDR800(IREXDR1000):
|
||||||
|
name = 'IRex Digital Reader 800 Device Interface'
|
||||||
|
description = _('Communicate with the IRex Digital Reader 800 eBook ' \
|
||||||
|
'reader.')
|
||||||
|
PRODUCT_ID = [0x002]
|
||||||
|
WINDOWS_MAIN_MEM = 'DR800'
|
||||||
|
|
||||||
|
EBOOK_DIR_MAIN = 'Books'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user