From 964a35e9b015311e9bdb21b2f5e833590735eef3 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Thu, 28 Aug 2025 09:49:52 +0800 Subject: [PATCH] ENH: update filaments_blacklist.json jira: [STUDIO-14159] Change-Id: Idde4d1c366024b49d474d8802d9f912711ea3991 (cherry picked from commit 5bdf315e6f68e2e27036e348e70402df38f4c49f) --- resources/printers/filaments_blacklist.json | 7 +++++++ src/slic3r/GUI/DeviceCore/DevFilaBlackList.cpp | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/resources/printers/filaments_blacklist.json b/resources/printers/filaments_blacklist.json index 29c131e259..b273c09994 100644 --- a/resources/printers/filaments_blacklist.json +++ b/resources/printers/filaments_blacklist.json @@ -8,6 +8,13 @@ "slot": "ams", "description": "TPU is not supported by AMS." }, + { + "vendor": "Bambu Lab", + "type": "PET-CF", + "action": "prohibition", + "slot": "ams", + "description": "AMS does not support 'Bambu Lab PET-CF'." + }, { "type": "TPU", "action": "warning", diff --git a/src/slic3r/GUI/DeviceCore/DevFilaBlackList.cpp b/src/slic3r/GUI/DeviceCore/DevFilaBlackList.cpp index 41b4a11097..d2febcdec1 100644 --- a/src/slic3r/GUI/DeviceCore/DevFilaBlackList.cpp +++ b/src/slic3r/GUI/DeviceCore/DevFilaBlackList.cpp @@ -169,8 +169,11 @@ void check_filaments(std::string model_id, wiki_url = filament_item.contains("wiki") ? filament_item["wiki"].get() : ""; return; - // Using in description + // Error in description L("TPU is not supported by AMS."); + L("AMS does not support 'Bambu Lab PET-CF'."); + + // Warning in description L("Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer."); L("Damp PVA will become flexible and get stuck inside AMS, please take care to dry it before use."); L("Damp PVA is flexible and may get stuck in extruder. Dry it before use.");