1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

feat: update image.py to support remarkable paper pro move profile (#1092)

* feat: update image.py to support remarkable paper pro move profile

* fix: update KCC_gui.py to include "reMarkable Paper Pro Move"
This commit is contained in:
Luís Melo
2025-09-29 10:58:31 -07:00
committed by GitHub
parent e92b5c74de
commit e6cd26c773
2 changed files with 4 additions and 0 deletions

View File

@@ -1161,6 +1161,8 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
'Label': 'Rmk2'}, 'Label': 'Rmk2'},
"reMarkable Paper Pro": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 3, 'DefaultUpscale': True, 'ForceColor': True, "reMarkable Paper Pro": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 3, 'DefaultUpscale': True, 'ForceColor': True,
'Label': 'RmkPP'}, 'Label': 'RmkPP'},
"reMarkable Paper Pro Move": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 3, 'DefaultUpscale': True, 'ForceColor': True,
'Label': 'RmkPPMove'},
"Other": {'PVOptions': False, 'ForceExpert': True, 'DefaultFormat': 1, 'DefaultUpscale': False, 'ForceColor': False, "Other": {'PVOptions': False, 'ForceExpert': True, 'DefaultFormat': 1, 'DefaultUpscale': False, 'ForceColor': False,
'Label': 'OTHER'}, 'Label': 'OTHER'},
} }
@@ -1183,6 +1185,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
"reMarkable 1", "reMarkable 1",
"reMarkable 2", "reMarkable 2",
"reMarkable Paper Pro", "reMarkable Paper Pro",
"reMarkable Paper Pro Move",
"Separator", "Separator",
"Other", "Other",
"Separator", "Separator",

View File

@@ -130,6 +130,7 @@ class ProfileData:
'Rmk1': ("reMarkable 1", (1404, 1872), Palette16, 1.8), 'Rmk1': ("reMarkable 1", (1404, 1872), Palette16, 1.8),
'Rmk2': ("reMarkable 2", (1404, 1872), Palette16, 1.8), 'Rmk2': ("reMarkable 2", (1404, 1872), Palette16, 1.8),
'RmkPP': ("reMarkable Paper Pro", (1620, 2160), Palette16, 1.8), 'RmkPP': ("reMarkable Paper Pro", (1620, 2160), Palette16, 1.8),
'RmkPPMove': ("reMarkable Paper Pro Move", (954, 1696), Palette16, 1.8),
} }
Profiles = { Profiles = {