~ubuntu-branches/debian/experimental/calibre/experimental

« back to all changes in this revision

Viewing changes to src/calibre/devices/eb600/driver.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-02-12 16:45:34 UTC
  • mfrom: (1.3.38)
  • Revision ID: package-import@ubuntu.com-20130212164534-4tue9c37ui3lgdsl
Tags: 0.9.18+dfsg-1
* New upstream release. (Closes: #699700)
* Unfuzz patches.
* Add new libqt4-private-dev build dependency, required by this version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
class POCKETBOOK602(USBMS):
235
235
 
236
236
    name = 'PocketBook Pro 602/902 Device Interface'
237
 
    description    = _('Communicate with the PocketBook 602/603/902/903 reader.')
 
237
    description    = _('Communicate with the PocketBook 602/603/902/903/Pro 912 reader.')
238
238
    author         = 'Kovid Goyal'
239
239
    supported_platforms = ['windows', 'osx', 'linux']
240
240
    FORMATS = ['epub', 'fb2', 'prc', 'mobi', 'pdf', 'djvu', 'rtf', 'chm',
249
249
 
250
250
    VENDOR_NAME = ''
251
251
    WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['PB602', 'PB603', 'PB902',
252
 
            'PB903', 'PB']
 
252
            'PB903', 'Pocket912', 'PB']
253
253
 
254
254
class POCKETBOOK622(POCKETBOOK602):
255
255