From 9d19b182dee2177b8293e5582e10b0063a83e6d3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Apr 2014 00:26:07 +0530 Subject: [PATCH] =?UTF-8?q?Driver=20for=20Tolino=20Vision=20(OS=20X/Linux?= =?UTF-8?q?=20only).=20Fixes=20#1301875=20[tolino=20vision=20doesn=C2=B4t?= =?UTF-8?q?=20work=20with=20calibre](https://bugs.launchpad.net/calibre/+b?= =?UTF-8?q?ug/1301875)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/calibre/devices/eb600/driver.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/calibre/devices/eb600/driver.py b/src/calibre/devices/eb600/driver.py index 67a8bb5242..73b0bac313 100644 --- a/src/calibre/devices/eb600/driver.py +++ b/src/calibre/devices/eb600/driver.py @@ -53,9 +53,10 @@ class TOLINO(EB600): name = 'Tolino Shine Device Interface' gui_name = 'Tolino Shine' - description = _('Communicate with the Tolino Shine reader.') + description = _('Communicate with the Tolino Shine and Vision readers') FORMATS = ['epub', 'pdf', 'txt'] - BCD = [0x226] + PRODUCT_ID = EB600.PRODUCT_ID + [0x6033] + BCD = [0x226, 0x9999] VENDOR_NAME = ['DEUTSCHE'] WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['_TELEKOMTOLINO']