From 6f6db1b47743d3209d9de980e685fb2905ae119c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 15 Dec 2010 18:08:59 -0700 Subject: [PATCH] Fix #7914 (Details for adding Samsung E65 ereader to Calibre) --- src/calibre/devices/sne/driver.py | 6 +++--- src/calibre/gui2/device.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/calibre/devices/sne/driver.py b/src/calibre/devices/sne/driver.py index 0ccac13245..bb8d34c59c 100644 --- a/src/calibre/devices/sne/driver.py +++ b/src/calibre/devices/sne/driver.py @@ -23,16 +23,16 @@ class SNE(USBMS): FORMATS = ['epub', 'pdf', 'txt'] VENDOR_ID = [0x04e8] - PRODUCT_ID = [0x2051, 0x2053] + PRODUCT_ID = [0x2051, 0x2053, 0x2054] BCD = [0x0323] VENDOR_NAME = 'SAMSUNG' - WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = 'SNE-60' + WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['SNE-60', 'E65'] MAIN_MEMORY_VOLUME_LABEL = 'SNE Main Memory' STORAGE_CARD_VOLUME_LABEL = 'SNE Storage Card' - EBOOK_DIR_MAIN = 'Books' + EBOOK_DIR_MAIN = EBOOK_DIR_CARD_A = 'Books' SUPPORTS_SUB_DIRS = True diff --git a/src/calibre/gui2/device.py b/src/calibre/gui2/device.py index 92b5932406..3b071aa024 100644 --- a/src/calibre/gui2/device.py +++ b/src/calibre/gui2/device.py @@ -593,7 +593,6 @@ class DeviceMenu(QMenu): # {{{ # }}} - class DeviceMixin(object): # {{{ def __init__(self):