mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-23 16:47:47 +01:00
This commit is contained in:
parent
3deb351b3a
commit
d4cf1ad9aa
2 changed files with 3 additions and 2 deletions
|
|
@ -25,7 +25,8 @@
|
|||
MIME_MAP = {
|
||||
"azw" : "application/azw",
|
||||
"prc" : "application/prc",
|
||||
"txt" : "text/plain"
|
||||
"txt" : "text/plain",
|
||||
'mobi': 'application/mobi',
|
||||
}
|
||||
|
||||
def sortable_title(title):
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ def __init__(self, path):
|
|||
|
||||
|
||||
class KINDLE(Device):
|
||||
FORMATS = ["azw", "prc", "txt"]
|
||||
FORMATS = ["azw", "prc", "txt", 'mobi']
|
||||
VENDOR_ID = 0x1949 #: Amazon Vendor Id
|
||||
PRODUCT_ID = 0x001 #: Product Id for the Kindle
|
||||
INTERNAL_STORAGE = 'INTERNAL_STORAGE'
|
||||
|
|
|
|||
Loading…
Reference in a new issue