From 870875ab01d89fd5a4c13074f32691da75e7ee41 Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 27 Dec 2009 08:19:51 -0500 Subject: [PATCH] Fix bug #4313: Add Airis Dbook Device Interface. --- src/calibre/devices/eb600/driver.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/eb600/driver.py b/src/calibre/devices/eb600/driver.py index 738fcdf375..515fdc0765 100644 --- a/src/calibre/devices/eb600/driver.py +++ b/src/calibre/devices/eb600/driver.py @@ -133,7 +133,7 @@ class ITALICA(EB600): class ECLICTO(EB600): - name = 'eClicto device interface' + name = 'eClicto Device Interface' gui_name = 'eClicto' FORMATS = ['epub', 'pdf', 'txt'] @@ -145,4 +145,13 @@ class ECLICTO(EB600): EBOOK_DIR_MAIN = 'Text' EBOOK_DIR_CARD_A = '' +class Dbook(EB600): + name = 'Airis Dbook Device Interface' + gui_name = 'Airis Dbook' + + FORMATS = ['epub', 'mobi', 'prc', 'fb2', 'html', 'pdf', 'rtf', 'txt'] + + VENDOR_NAME = 'INFINITY' + WINDOWS_MAIN_MEM = 'AIRIS_DBOOK' + WINDOWS_CARD_A_MEM = 'AIRIS_DBOOK'