mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:33:42 +02:00
Pull from trunk
This commit is contained in:
commit
ae290ae43d
2 changed files with 13 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ def set_metadata(self, stream, mi, type):
|
|||
from calibre.devices.binatone.driver import README
|
||||
from calibre.devices.hanvon.driver import N516, EB511, ALEX, AZBOOKA
|
||||
from calibre.devices.edge.driver import EDGE
|
||||
from calibre.devices.teclast.driver import TECLAST_K3, NEWSMY
|
||||
from calibre.devices.teclast.driver import TECLAST_K3, NEWSMY, IPAPYRUS
|
||||
from calibre.devices.sne.driver import SNE
|
||||
from calibre.devices.misc import PALMPRE, KOBO, AVANT
|
||||
from calibre.devices.folder_device.driver import FOLDER_DEVICE_FOR_CONFIG
|
||||
|
|
@ -532,6 +532,7 @@ def set_metadata(self, stream, mi, type):
|
|||
ELONEX,
|
||||
TECLAST_K3,
|
||||
NEWSMY,
|
||||
IPAPYRUS,
|
||||
EDGE,
|
||||
SNE,
|
||||
ALEX,
|
||||
|
|
|
|||
|
|
@ -53,3 +53,14 @@ class NEWSMY(TECLAST_K3):
|
|||
def windows_sort_drives(self, drives):
|
||||
return drives
|
||||
|
||||
class IPAPYRUS(TECLAST_K3):
|
||||
|
||||
name = 'iPapyrus device interface'
|
||||
gui_name = 'iPapyrus'
|
||||
description = _('Communicate with the iPapyrus reader.')
|
||||
|
||||
FORMATS = ['epub', 'pdf', 'txt']
|
||||
|
||||
VENDOR_NAME = 'E_READER'
|
||||
WINDOWS_MAIN_MEM = ''
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue