From f149ae23f38650a7b2d8b16e3d6846ec7350af19 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Sun, 3 May 2026 16:48:05 -0700 Subject: [PATCH] add Kindle Scribe 2025 landscape 1324x1986 profile (#1325) --- README.md | 2 ++ kindlecomicconverter/KCC_gui.py | 4 ++++ kindlecomicconverter/image.py | 1 + 3 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 4d7d4ae..f4b29a7 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,8 @@ sudo apt-get install python3 p7zip-full python3-pil python3-psutil python3-slugi 'KCS': ("Kindle Colorsoft", (1272, 1696), 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), + 'KS1324': ("Kindle 1324", (1324, 1986), Palette16, 1.0), 'KS': ("Kindle Scribe 1/2", (1860, 2480), Palette16, 1.0), 'KS3': ("Kindle Scribe 3", (1986, 2648), Palette16, 1.0), 'KSCS': ("Kindle Scribe Colorsoft", (1986, 2648), Palette16, 1.0), diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 309b1a8..ff457d4 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -1261,6 +1261,9 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Kindle 1240x1860": { 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS1240', }, + "Kindle 1324x1986": { + 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS1324', + }, "Kindle Scribe 1/2": { 'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'ForceColor': False, 'Label': 'KS', }, @@ -1368,6 +1371,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Separator", "Other", "Separator", + "Kindle 1324x1986", "Kindle 1920x1920", "Kindle 1860x1920", "Kindle 1240x1860", diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index 16d9095..2a00c75 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -106,6 +106,7 @@ class ProfileData: 'KS1860': ("Kindle 1860", (1860, 1920), Palette16, 1.0), 'KS1920': ("Kindle 1920", (1920, 1920), Palette16, 1.0), 'KS1240': ("Kindle 1240", (1240, 1860), Palette16, 1.0), + 'KS1324': ("Kindle 1324", (1324, 1986), Palette16, 1.0), 'KS': ("Kindle Scribe 1/2", (1860, 2480), Palette16, 1.0), 'KCS': ("Kindle Colorsoft", (1272, 1696), Palette16, 1.0), 'KS3': ("Kindle Scribe 3", (1986, 2648), Palette16, 1.0),