From b5143767f4546250206061bcd83b69e2b9dbcbc7 Mon Sep 17 00:00:00 2001 From: NM <34319168+ni4223@users.noreply.github.com> Date: Thu, 25 Jun 2026 07:04:10 -0700 Subject: [PATCH] =?UTF-8?q?fix(profiles):=20Snapmaker=20U1=20=E2=80=94=20a?= =?UTF-8?q?dd=20bed=20dimensions=20to=20fdm=5FU1=20for=20all=20nozzle=20va?= =?UTF-8?q?riants=20(#14391)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(profiles): add printable_area to fdm_U1 so all nozzle variants inherit correct 270x270 bed The 0.2/0.6/0.8 nozzle profiles inherit from fdm_U1 which had no printable_area defined, causing them to fall back to a smaller default bed size. The 0.4 profile was the only one that set it explicitly. Move printable_area and printable_height to the shared parent (fdm_U1) so all Snapmaker U1 nozzle variants get the correct 270x270mm bed. Bump vendor version to trigger profile re-sync on existing installs. Co-authored-by: ni4223 --- resources/profiles/Snapmaker.json | 2 +- resources/profiles/Snapmaker/machine/fdm_U1.json | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json index 56dee2ce38c..6405a3caf25 100644 --- a/resources/profiles/Snapmaker.json +++ b/resources/profiles/Snapmaker.json @@ -1,6 +1,6 @@ { "name": "Snapmaker", - "version": "02.04.00.04", + "version": "02.04.00.06", "force_update": "0", "description": "Snapmaker configurations", "machine_model_list": [ diff --git a/resources/profiles/Snapmaker/machine/fdm_U1.json b/resources/profiles/Snapmaker/machine/fdm_U1.json index 00f0161b7bf..73fe5b74ef1 100644 --- a/resources/profiles/Snapmaker/machine/fdm_U1.json +++ b/resources/profiles/Snapmaker/machine/fdm_U1.json @@ -186,5 +186,12 @@ "nozzle_type": "undefine", "auxiliary_fan": "0", "default_bed_type": "Textured PEI Plate", - "printer_agent": "snapmaker" + "printer_agent": "snapmaker", + "printable_area": [ + "0.5x1", + "270.5x1", + "270.5x271", + "0.5x271" + ], + "printable_height": "270.05" }