Driver for the new PocketBook Inkpad X

Fixes #1854335 [Driver for PocketBook Inkpad X](https://bugs.launchpad.net/calibre/+bug/1854335)
This commit is contained in:
Kovid Goyal 2019-11-28 16:44:56 +05:30
parent 08674935c1
commit 163b2dfd2d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -525,14 +525,14 @@ class POCKETBOOK626(USBMS):
name = 'PocketBook Touch Lux 2' name = 'PocketBook Touch Lux 2'
gui_name = 'PocketBook' gui_name = 'PocketBook'
description = _('Communicate with the PocketBook Touch Lux 2 reader') description = _('Communicate with the PocketBook Touch Lux 2 and Inkpad X readers')
author = 'Kovid Goyal' author = 'Kovid Goyal'
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']
# Ordered list of supported formats # Ordered list of supported formats
FORMATS = ['epub', 'pdf', 'fb2', 'txt', 'pdf', 'html', 'djvu', 'doc', 'docx', 'rtf', 'chm'] FORMATS = ['epub', 'pdf', 'fb2', 'txt', 'pdf', 'html', 'djvu', 'doc', 'docx', 'rtf', 'chm']
VENDOR_ID = [0xfffe] VENDOR_ID = [0xfffe]
PRODUCT_ID = [0x0001] PRODUCT_ID = [0x0001]
BCD = [0x0230] BCD = [0x0230, 0x101]
EBOOK_DIR_MAIN = 'Books' EBOOK_DIR_MAIN = 'Books'
SCAN_FROM_ROOT = True SCAN_FROM_ROOT = True