mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
IGN:Preliminary (windows only) driver for the PocketBook 360
This commit is contained in:
parent
bc7fed85ab
commit
cf096585e6
@ -361,7 +361,8 @@ from calibre.customize.profiles import input_profiles, output_profiles
|
||||
from calibre.devices.bebook.driver import BEBOOK, BEBOOK_MINI
|
||||
from calibre.devices.blackberry.driver import BLACKBERRY
|
||||
from calibre.devices.cybookg3.driver import CYBOOKG3, CYBOOK_OPUS
|
||||
from calibre.devices.eb600.driver import EB600, COOL_ER, SHINEBOOK
|
||||
from calibre.devices.eb600.driver import EB600, COOL_ER, SHINEBOOK, \
|
||||
POCKETBOOK360
|
||||
from calibre.devices.iliad.driver import ILIAD
|
||||
from calibre.devices.irexdr.driver import IREXDR1000
|
||||
from calibre.devices.jetbook.driver import JETBOOK
|
||||
@ -430,7 +431,8 @@ plugins += [
|
||||
SHINEBOOK,
|
||||
ESLICK,
|
||||
NUUT2,
|
||||
IRIVER_STORY
|
||||
IRIVER_STORY,
|
||||
POCKETBOOK360
|
||||
]
|
||||
plugins += [x for x in list(locals().values()) if isinstance(x, type) and \
|
||||
x.__name__.endswith('MetadataReader')]
|
||||
|
@ -82,3 +82,13 @@ class SHINEBOOK(EB600):
|
||||
VENDOR_NAME = 'LONGSHIN'
|
||||
WINDOWS_MAIN_MEM = 'ESHINEBOOK'
|
||||
|
||||
class POCKETBOOK360(EB600):
|
||||
|
||||
name = 'PocketBook 360 Device Interface'
|
||||
|
||||
gui_name = 'PocketBook 360'
|
||||
|
||||
FORMATS = ['epub', 'pdf', 'txt']
|
||||
|
||||
VENDOR_NAME = 'PHILIPS'
|
||||
WINDOWS_MAIN_MEM = 'MASS_STORGE'
|
||||
|
Loading…
x
Reference in New Issue
Block a user