diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index 25ffe32d87..e0367515bc 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -474,7 +474,7 @@ from calibre.devices.binatone.driver import README from calibre.devices.hanvon.driver import N516, EB511, ALEX, AZBOOKA, THEBOOK from calibre.devices.edge.driver import EDGE from calibre.devices.teclast.driver import TECLAST_K3, NEWSMY, IPAPYRUS, \ - SOVOS, PICO, SUNSTECH_EB700 + SOVOS, PICO, SUNSTECH_EB700, ARCHOS7O from calibre.devices.sne.driver import SNE from calibre.devices.misc import PALMPRE, AVANT, SWEEX, PDNOVEL, KOGAN, \ GEMEI, VELOCITYMICRO, PDNOVEL_KOBO, Q600, LUMIREAD, ALURATEK_COLOR, \ @@ -581,7 +581,7 @@ plugins += [ ELONEX, TECLAST_K3, NEWSMY, - PICO, SUNSTECH_EB700, + PICO, SUNSTECH_EB700, ARCHOS7O, IPAPYRUS, SOVOS, EDGE, diff --git a/src/calibre/devices/teclast/driver.py b/src/calibre/devices/teclast/driver.py index f406448ad2..078e59da5b 100644 --- a/src/calibre/devices/teclast/driver.py +++ b/src/calibre/devices/teclast/driver.py @@ -41,6 +41,16 @@ class NEWSMY(TECLAST_K3): WINDOWS_MAIN_MEM = 'NEWSMY' WINDOWS_CARD_A_MEM = 'USBDISK____SD' +class ARCHOS7O(TECLAST_K3): + name = 'Archos 7O device interface' + gui_name = 'Archos' + description = _('Communicate with the Archos reader.') + + FORMATS = ['epub', 'mobi', 'fb2', 'rtf', 'ap', 'html', 'pdf', 'txt'] + + VENDOR_NAME = 'ARCHOS' + WINDOWS_MAIN_MEM = 'USB-MSC' + class PICO(NEWSMY): name = 'Pico device interface' gui_name = 'Pico'