From 86f16d9c8b04db9c2b6fe18fd560e0c65c5fd310 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Wed, 9 Oct 2024 15:36:52 +0800 Subject: [PATCH] ENH: add some missing filament types jira:NONE Signed-off-by: xun.zhang Change-Id: I6d5b8f7a3c2eb26950bf39694023903ddbc47088 (cherry picked from commit 14eb79ab9a02d73f5e6deea8f7dc77897e76ac7e) --- resources/info/filament_info.json | 6 +++++- src/libslic3r/PrintConfig.cpp | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/info/filament_info.json b/resources/info/filament_info.json index ebcbd09439..bd82c0d534 100644 --- a/resources/info/filament_info.json +++ b/resources/info/filament_info.json @@ -1,8 +1,9 @@ { - "version": "1.0.0.2", + "version": "1.0.0.3", "high_temp_filament": [ "ABS", "ASA", + "ASA-CF", "PC", "PA", "PA-CF", @@ -19,15 +20,18 @@ "low_temp_filament": [ "PLA", "TPU", + "TPU-AMS", "PLA-CF", "PLA-AERO", "PVA", "BVOH", + "PCTG", "SBS" ], "high_low_compatible_filament":[ "HIPS", "PETG", + "PETG-CF", "PE", "PP", "EVA", diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index bd976a062e..2b2bf8788b 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2443,6 +2443,7 @@ void PrintConfigDef::init_fff_params() def->enum_values.push_back("ABS-GF"); def->enum_values.push_back("ASA"); def->enum_values.push_back("ASA-AERO"); + def->enum_values.push_back("ASA-CF"); def->enum_values.push_back("BVOH"); def->enum_values.push_back("PCTG"); def->enum_values.push_back("EVA");