From 5a8c900969c16bfbe5eb542bcf6869109055fbe8 Mon Sep 17 00:00:00 2001 From: David Forrester Date: Tue, 3 Dec 2013 13:25:51 +1100 Subject: [PATCH] Update Kobo firmware version. AGAIN. Kobo are updating the firmware a lot faster than in the past. The latest is 3.1.0. The supported version is being set to 3.1.5 in case any bug fix only versions are released. Also, commented out a couple of debug lines to reduce the clutter when testing. --- src/calibre/devices/kobo/driver.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/devices/kobo/driver.py b/src/calibre/devices/kobo/driver.py index 1469d91..c2a8b6f 100644 --- a/src/calibre/devices/kobo/driver.py +++ b/src/calibre/devices/kobo/driver.py @@ -1254,7 +1254,7 @@ class KOBOTOUCH(KOBO): min_dbversion_activity = 77 min_dbversion_keywords = 82 - max_supported_fwversion = (3, 0, 5) + max_supported_fwversion = (3, 1, 5) min_fwversion_shelves = (2, 0, 0) min_fwversion_images_on_sdcard = (2, 4, 1) min_fwversion_images_tree = (2, 9, 0) # Cover images stored in tree under .kobo-images @@ -1986,13 +1986,13 @@ class KOBOTOUCH(KOBO): return True def filename_callback(self, path, mi): - debug_print("KoboTouch:filename_callback:Path - {0}".format(path)) +# debug_print("KoboTouch:filename_callback:Path - {0}".format(path)) idx = path.rfind('.') ext = path[idx:] if ext == KEPUB_EXT: path = path + EPUB_EXT - debug_print("KoboTouch:filename_callback:New path - {0}".format(path)) +# debug_print("KoboTouch:filename_callback:New path - {0}".format(path)) return path -- 1.8.4.msysgit.0