From 14eb79ab9a02d73f5e6deea8f7dc77897e76ac7e 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 --- resources/info/filament_info.json | 8 ++++++-- src/libslic3r/PrintConfig.cpp | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/resources/info/filament_info.json b/resources/info/filament_info.json index 8472e6646..e35756cb0 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,14 +20,17 @@ "low_temp_filament": [ "PLA", "TPU", + "TPU-AMS", "PLA-CF", "PLA-AERO", "PVA", - "BVOH" + "BVOH", + "PCTG" ], "high_low_compatible_filament":[ "HIPS", "PETG", + "PETG-CF", "PE", "PP", "EVA", diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 4f81ee07a..77ef5f79d 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1570,6 +1570,7 @@ void PrintConfigDef::init_fff_params() def->enum_values.push_back("PLA"); def->enum_values.push_back("ABS"); def->enum_values.push_back("ASA"); + def->enum_values.push_back("ASA-CF"); def->enum_values.push_back("PETG"); def->enum_values.push_back("PCTG"); def->enum_values.push_back("TPU");