mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
Fix #829075 (Cannot transfer book, HP Touchpad with Amazon Kindle App)
This commit is contained in:
parent
5cf848f21f
commit
b7fc5d2626
@ -557,7 +557,7 @@ from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
|
||||
from calibre.devices.nook.driver import NOOK, NOOK_COLOR
|
||||
from calibre.devices.prs505.driver import PRS505
|
||||
from calibre.devices.user_defined.driver import USER_DEFINED
|
||||
from calibre.devices.android.driver import ANDROID, S60
|
||||
from calibre.devices.android.driver import ANDROID, S60, WEBOS
|
||||
from calibre.devices.nokia.driver import N770, N810, E71X, E52
|
||||
from calibre.devices.eslick.driver import ESLICK, EBK52
|
||||
from calibre.devices.nuut2.driver import NUUT2
|
||||
@ -658,8 +658,7 @@ plugins += [
|
||||
KINDLE_DX,
|
||||
NOOK, NOOK_COLOR,
|
||||
PRS505,
|
||||
ANDROID,
|
||||
S60,
|
||||
ANDROID, S60, WEBOS,
|
||||
N770,
|
||||
E71X,
|
||||
E52,
|
||||
|
@ -184,3 +184,24 @@ class S60(USBMS):
|
||||
|
||||
VENDOR_NAME = 'NOKIA'
|
||||
WINDOWS_MAIN_MEM = 'S60'
|
||||
|
||||
class WEBOS(USBMS):
|
||||
|
||||
name = 'WebOS driver'
|
||||
gui_name = 'WebOS Tablet'
|
||||
description = _('Communicate with WebOS tablets.')
|
||||
author = 'Kovid Goyal'
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
|
||||
# Ordered list of supported formats
|
||||
FORMATS = ['mobi', 'azw', 'prc']
|
||||
|
||||
VENDOR_ID = [0x0830]
|
||||
PRODUCT_ID = [0x8074]
|
||||
BCD = [0x0327]
|
||||
|
||||
EBOOK_DIR_MAIN = '.palmkindle'
|
||||
VENDOR_NAME = 'HP'
|
||||
WINDOWS_MAIN_MEM = 'WEBOS-DEVICE'
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user