Jetbook driver: add FB2 format.

This commit is contained in:
John Schember 2009-12-18 23:35:19 -05:00
parent 11427001a3
commit 9ee3e926c0

View File

@ -20,13 +20,13 @@ from calibre.ebooks.metadata import authors_to_string, string_to_authors
class JETBOOK(USBMS):
name = 'Ectaco JetBook Device Interface'
description = _('Communicate with the JetBook eBook reader.')
author = _('James Ralston')
author = 'James Ralston'
supported_platforms = ['windows', 'osx', 'linux']
# Ordered list of supported formats
# Be sure these have an entry in calibre.devices.mime
FORMATS = ['epub', 'mobi', 'prc', 'txt', 'rtf', 'pdf']
FORMATS = ['epub', 'mobi', 'prc', 'fb2', 'txt', 'rtf', 'pdf']
VENDOR_ID = [0x0525]
PRODUCT_ID = [0xa4a5]