Add FB2 to list of supported formats for the JetBook

This commit is contained in:
Kovid Goyal 2009-12-19 09:25:43 -07:00
parent a0935b190c
commit 319196add3

View File

@ -20,13 +20,13 @@ from calibre.ebooks.metadata import string_to_authors
class JETBOOK(USBMS): class JETBOOK(USBMS):
name = 'Ectaco JetBook Device Interface' name = 'Ectaco JetBook Device Interface'
description = _('Communicate with the JetBook eBook reader.') description = _('Communicate with the JetBook eBook reader.')
author = _('James Ralston') author = 'James Ralston'
supported_platforms = ['windows', 'osx', 'linux'] supported_platforms = ['windows', 'osx', 'linux']
# Ordered list of supported formats # Ordered list of supported formats
# Be sure these have an entry in calibre.devices.mime # 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] VENDOR_ID = [0x0525]
PRODUCT_ID = [0xa4a5] PRODUCT_ID = [0xa4a5]