mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Driver for Nook Tablet. Fixes #890918 (Nook Tablet support)
This commit is contained in:
parent
efdad01e01
commit
0a45faee12
@ -83,7 +83,7 @@ class NOOK(USBMS):
|
||||
class NOOK_COLOR(NOOK):
|
||||
description = _('Communicate with the Nook Color and TSR eBook readers.')
|
||||
|
||||
PRODUCT_ID = [0x002, 0x003]
|
||||
PRODUCT_ID = [0x002, 0x003, 0x004]
|
||||
BCD = [0x216]
|
||||
|
||||
WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = 'EBOOK_DISK'
|
||||
@ -105,4 +105,3 @@ class NOOK_COLOR(NOOK):
|
||||
return USBMS.create_upload_path(self, path, mdata, fname,
|
||||
create_dirs=create_dirs)
|
||||
|
||||
|
||||
|
@ -111,6 +111,7 @@ class KindleFire(KindleDX):
|
||||
name = 'Kindle Fire'
|
||||
id = 'kindle_fire'
|
||||
output_profile = 'kindle_fire'
|
||||
supports_color = True
|
||||
|
||||
class Sony505(Device):
|
||||
|
||||
@ -184,6 +185,10 @@ class NookColor(Nook):
|
||||
output_profile = 'nook_color'
|
||||
supports_color = True
|
||||
|
||||
class NookTablet(NookColor):
|
||||
id = 'nook_tablet'
|
||||
name = 'Nook Tablet'
|
||||
|
||||
class CybookG3(Device):
|
||||
|
||||
name = 'Cybook Gen 3'
|
||||
|
Loading…
x
Reference in New Issue
Block a user