mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 06:46:22 +01:00
T1 driver. Add support for Japanese formats
This commit is contained in:
parent
5941f9d887
commit
55cb29e150
2 changed files with 3 additions and 2 deletions
|
|
@ -39,7 +39,8 @@ class PRST1(USBMS):
|
|||
path_sep = '/'
|
||||
booklist_class = CollectionsBookList
|
||||
|
||||
FORMATS = ['epub', 'pdf', 'txt']
|
||||
FORMATS = ['epub', 'pdf', 'txt', 'book', 'zbf'] # The last two are
|
||||
# used in japan
|
||||
CAN_SET_METADATA = ['collections']
|
||||
CAN_DO_DEVICE_DB_PLUGBOARD = True
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class ParserError(ValueError):
|
|||
'html', 'htmlz', 'xhtml', 'pdf', 'pdb', 'pdr', 'prc', 'mobi', 'azw', 'doc',
|
||||
'epub', 'fb2', 'djv', 'djvu', 'lrx', 'cbr', 'cbz', 'cbc', 'oebzip',
|
||||
'rb', 'imp', 'odt', 'chm', 'tpz', 'azw1', 'pml', 'pmlz', 'mbp', 'tan', 'snb',
|
||||
'xps', 'oxps', 'azw4']
|
||||
'xps', 'oxps', 'azw4', 'book', 'zbf']
|
||||
|
||||
class HTMLRenderer(object):
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue