From 61ef61e3d95761446353a25047d49879ecc94fa5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Apr 2018 07:27:15 +0530 Subject: [PATCH] Kindle driver: Change the height of generated thumbnails to 500px, needed for the Oasis 2017 --- src/calibre/devices/kindle/driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/kindle/driver.py b/src/calibre/devices/kindle/driver.py index 8f108dc876..c739f9572b 100644 --- a/src/calibre/devices/kindle/driver.py +++ b/src/calibre/devices/kindle/driver.py @@ -391,7 +391,8 @@ class KINDLE2(KINDLE): # x330 on the PaperWhite # x262 on the Touch. Doesn't choke on x330, though. # x470 on the Voyage, checked that it works on PW, Touch checked by eschwartz. - THUMBNAIL_HEIGHT = 470 + # x500 on the Oasis 2017. checked that it works on the PW3 + THUMBNAIL_HEIGHT = 500 @classmethod def migrate_extra_customization(cls, vals):