mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-11 09:13:57 -04:00
Fix #1338219 [Tolino Shine SW Rev. 1.4.5 requires ebooks in directory Books](https://bugs.launchpad.net/calibre/+bug/1338219)
This commit is contained in:
parent
6ecbbc03f6
commit
295cc5b0b1
@ -62,9 +62,9 @@ class TOLINO(EB600):
|
||||
|
||||
EXTRA_CUSTOMIZATION_MESSAGE = [
|
||||
_('Swap main and card A') +
|
||||
':::' +
|
||||
_('Check this box if the device\'s main memory is being seen as card a and the card '
|
||||
'is being seen as main memory. Some Tolino devices may need this option.'),
|
||||
':::' +
|
||||
_('Check this box if the device\'s main memory is being seen as card a and the card '
|
||||
'is being seen as main memory. Some Tolino devices may need this option.'),
|
||||
]
|
||||
|
||||
EXTRA_CUSTOMIZATION_DEFAULT = [
|
||||
@ -98,8 +98,9 @@ class TOLINO(EB600):
|
||||
|
||||
def post_open_callback(self):
|
||||
# The Tolino Vision only handles books inside the Books folder
|
||||
product_id = self.device_being_opened[1]
|
||||
self.ebook_dir_for_upload = 'Books' if product_id == 0x6033 else ''
|
||||
product_id, bcd = self.device_being_opened[1], self.device_being_opened[2]
|
||||
is_tolino = product_id == 0x6033 or (product_id == 0x1688 and bcd == 0x226)
|
||||
self.ebook_dir_for_upload = 'Books' if is_tolino else ''
|
||||
|
||||
def get_main_ebook_dir(self, for_upload=False):
|
||||
if for_upload:
|
||||
|
Loading…
x
Reference in New Issue
Block a user