From 8e9906f747d31fcfc92c967cb2fb0d570838b31b Mon Sep 17 00:00:00 2001 From: Dennis Klappe <35347995+dennisklappe@users.noreply.github.com> Date: Mon, 4 May 2026 11:41:07 +0200 Subject: [PATCH] Fix Ender-3 V3 KE nozzle switching (#13438) Fix Ender-3 V3 KE nozzle switching by adding printer_variant The four Creality Ender-3 V3 KE 0.X nozzle profiles were missing the printer_variant key, so OrcaSlicer could not map a UI nozzle selection to a specific profile and reverted every choice to 0.2mm. Add the matching printer_variant to each, following the CR-10 SE / K1C pattern. --- resources/profiles/Creality.json | 2 +- .../Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json | 1 + .../Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json | 1 + .../Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json | 1 + .../Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json | 1 + 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 2616d6696c..b95688e15d 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.03.02.70", + "version": "02.03.02.71", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json index 2d55ee3dcf..44754ead86 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.2", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json index 5052015ad0..8d1269dc4a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.4", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json index 5a26353c84..36e61d6229 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.6", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json index 4f1ca62247..863d20c3fb 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.8", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper",