diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 46650fa..da86339 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -1198,6 +1198,9 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Kindle 1920x1920": { 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS1920', }, + "Kindle 1240x1860": { + 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS1240', + }, "Kindle Scribe 1/2": { 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS', }, @@ -1307,6 +1310,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Separator", "Kindle 1920x1920", "Kindle 1860x1920", + "Kindle 1240x1860", "Kindle 8/10", "Kindle Oasis 8", "Kindle Paperwhite 7/10", diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index 5ba738d..2acb60d 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -103,6 +103,7 @@ class ProfileData: 'KPW5': ("Kindle Paperwhite 5/Signature Edition", (1236, 1648), Palette16, 1.0), 'KS1860': ("Kindle 1860", (1860, 1920), Palette16, 1.0), 'KS1920': ("Kindle 1920", (1920, 1920), Palette16, 1.0), + 'KS1240': ("Kindle 1240", (1240, 1860), Palette16, 1.0), 'KS': ("Kindle Scribe 1/2", (1860, 2480), Palette16, 1.0), 'KCS': ("Kindle Colorsoft", (1264, 1680), Palette16, 1.0), 'KS3': ("Kindle Scribe 3", (1986, 2648), Palette16, 1.0),