From 2749de9a6748a93ff1cda37c731660a630ec37a5 Mon Sep 17 00:00:00 2001 From: David Fries Date: Fri, 30 Aug 2024 09:12:03 -0500 Subject: [PATCH 1/6] Fix RecentFilesMenu.qml onObjectRemoved incompatible arguments "share/cura/resources/qml/Menus/RecentFilesMenu.qml:39: TypeError: Passing incompatible arguments to C++ functions from JavaScript is not allowed." This was passing the Instantiator index, which is a Number to menu.removeItem which is expecting an object. Add the missing index argument. I found Qt 5.7 had two arguments so it has been there for some time. --- resources/qml/ActionPanel/OutputProcessWidget.qml | 2 +- resources/qml/Menus/RecentFilesMenu.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml index 1303dc20a2..c609cd6ca5 100644 --- a/resources/qml/ActionPanel/OutputProcessWidget.qml +++ b/resources/qml/ActionPanel/OutputProcessWidget.qml @@ -10,7 +10,7 @@ import Cura 1.0 as Cura // This element contains all the elements the user needs to visualize the data -// that is gather after the slicing process, such as printint time, material usage, ... +// that is gather after the slicing process, such as printing time, material usage, ... // There are also two buttons: one to previsualize the output layers, and the other to // select what to do with it (such as print over network, save to file, ...) Column diff --git a/resources/qml/Menus/RecentFilesMenu.qml b/resources/qml/Menus/RecentFilesMenu.qml index 19ff681219..93fddd0bf6 100644 --- a/resources/qml/Menus/RecentFilesMenu.qml +++ b/resources/qml/Menus/RecentFilesMenu.qml @@ -2,7 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 2.1 +import QtQuick.Controls 2.15 import UM 1.3 as UM import Cura 1.0 as Cura @@ -30,6 +30,6 @@ Cura.Menu onTriggered: CuraApplication.readLocalFile(modelData) } onObjectAdded: (index, object) => menu.insertItem(index, object) - onObjectRemoved: (object) => menu.removeItem(object) + onObjectRemoved: (index, object) => menu.removeItem(object) } } From 38695d9572bb84eaa20acbb2ca10ecb2f2408907 Mon Sep 17 00:00:00 2001 From: David Fries Date: Fri, 30 Aug 2024 10:34:12 -0500 Subject: [PATCH 2/6] Fix RecommendedSupportSelector.qml assign undefined to int share/cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:60:17: Unable to assign [undefined] to int If undefined use Widgets/SingleSettingComboBox.qml default of Cura.ExtruderManager.activeExtruderIndex --- .../Recommended/RecommendedSupportSelector.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 254ba477bf..c1b36676c7 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -57,7 +57,9 @@ RecommendedSettingSection settingName: "support_structure" propertyRemoveUnusedValue: false updateAllExtruders: false - defaultExtruderIndex: supportExtruderProvider.properties.value + defaultExtruderIndex: supportExtruderProvider.properties.value != undefined ? + supportExtruderProvider.properties.value : + Cura.ExtruderManager.activeExtruderIndex } }, RecommendedSettingItem @@ -92,7 +94,9 @@ RecommendedSettingSection width: parent.width settingName: "support_type" updateAllExtruders: true - defaultExtruderIndex: supportExtruderProvider.properties.value + defaultExtruderIndex: supportExtruderProvider.properties.value != undefined ? + supportExtruderProvider.properties.value : + Cura.ExtruderManager.activeExtruderIndex } } ] From 6e3e3e67425a100e13eb7f7f85e390f5e7cc9dfa Mon Sep 17 00:00:00 2001 From: David Fries Date: Fri, 30 Aug 2024 18:20:52 -0500 Subject: [PATCH 3/6] Use raw strings for regular expressions with invalid escape sequences If "T(\d*)" was "T(\n*)" it would search for newlines. There isn't any such \d escape character. It should be "T(\\d*)" or r"T(\d*)" going with the latter, to be easier to read and be consistent with other Cura usage. Start python with -Wd or for python 3.12 will raise a SyntaxWarning. --- plugins/PostProcessingPlugin/Script.py | 2 +- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 2 +- plugins/UM3NetworkPrinting/src/ExportFileJob.py | 2 +- scripts/extract_changelog.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/PostProcessingPlugin/Script.py b/plugins/PostProcessingPlugin/Script.py index be661e0889..bdd57a06e0 100644 --- a/plugins/PostProcessingPlugin/Script.py +++ b/plugins/PostProcessingPlugin/Script.py @@ -122,7 +122,7 @@ class Script: if not key in line or (';' in line and line.find(key) > line.find(';')): return default sub_part = line[line.find(key) + 1:] - m = re.search('^-?[0-9]+\.?[0-9]*', sub_part) + m = re.search(r'^-?[0-9]+\.?[0-9]*', sub_part) if m is None: return default try: diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index f502678317..43df766962 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -338,7 +338,7 @@ class PauseAtHeight(Script): nbr_negative_layers += 1 #Track the latest printing temperature in order to resume at the correct temperature. - if re.match("T(\d*)", line): + if re.match(r"T(\d*)", line): current_t = self.getValue(line, "T") m = self.getValue(line, "M") if m is not None and (m == 104 or m == 109) and self.getValue(line, "S") is not None: diff --git a/plugins/UM3NetworkPrinting/src/ExportFileJob.py b/plugins/UM3NetworkPrinting/src/ExportFileJob.py index ac3da65719..1ab493c747 100644 --- a/plugins/UM3NetworkPrinting/src/ExportFileJob.py +++ b/plugins/UM3NetworkPrinting/src/ExportFileJob.py @@ -28,7 +28,7 @@ class ExportFileJob(WriteFileJob): # Determine the filename. job_name = CuraApplication.getInstance().getPrintInformation().jobName - job_name = re.sub("[^\w\-. ()]", "-", job_name) + job_name = re.sub(r"[^\w\-. ()]", "-", job_name) extension = self._mesh_format_handler.preferred_format.get("extension", "") self.setFileName("{}.{}".format(job_name, extension)) diff --git a/scripts/extract_changelog.py b/scripts/extract_changelog.py index a1a0b251f0..934b963e0a 100644 --- a/scripts/extract_changelog.py +++ b/scripts/extract_changelog.py @@ -13,7 +13,7 @@ if __name__ == "__main__": args.version = args.version[:-2] start_token = f"[{args.version}]" - pattern_stop_log = "\[\d+(\.\d+){1,2}\]" + pattern_stop_log = r"\[\d+(\.\d+){1,2}\]" log_line = False first_chapter = True From a7c234862a892081c62961dfc3d8054f5bff7def Mon Sep 17 00:00:00 2001 From: Alan Bjorklund Date: Mon, 27 Jan 2025 18:02:54 -0500 Subject: [PATCH 4/6] Add 0.27 layer height options for Sprint Enable PLA and TPLA at 0.27 layer height via Balanced & Draft mode options. Draft mode has higher acceleration values, and adjusted overhang settings. Also additional minor settings changes such as first layer height, and initial cooling fan. PP-561 --- ...rint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg | 54 +++++++++++++++++++ ....4mm_um-tough-pla-175_0.3mm_draft.inst.cfg | 54 +++++++++++++++++++ ...tch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg | 16 ++++++ ...rint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg | 23 ++++++++ ...h_sprint_global_Verydraft_Quality.inst.cfg | 15 ++++++ 5 files changed, 162 insertions(+) create mode 100644 resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg create mode 100644 resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg create mode 100644 resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg create mode 100644 resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg create mode 100644 resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg new file mode 100644 index 0000000000..c2c8b9b3bd --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg @@ -0,0 +1,54 @@ +[general] +definition = ultimaker_sketch_sprint +name = Draft +version = 4 + +[metadata] +intent_category = draft +is_experimental = True +material = ultimaker_pla_175 +quality_type = verydraft +setting_version = 24 +type = intent +variant = 0.4mm + +[values] +acceleration_layer_0 = 5000 +acceleration_print = 20000 +acceleration_roofing = 5000 +acceleration_topbottom = 10000 +acceleration_travel_layer_0 = 5000 +acceleration_wall_0 = 5000.0 +acceleration_wall_0_roofing = 5000 +acceleration_wall_x = 10000 +acceleration_wall_x_roofing = 5000 +cool_fan_full_at_height = 0.54 +cool_min_layer_time = 2 +cool_min_speed = 50 +cool_min_temperature = 220 +infill_angles = [135] +infill_line_width = 0.4 +infill_overlap = 25 +infill_pattern = zigzag +infill_wipe_dist = 0.05 +initial_layer_line_width_factor = 125 +line_width = 0.4 +material_final_print_temperature = 225 +material_initial_print_temperature = 225 +material_print_temperature = 225 +retraction_hop_enabled = True +seam_overhang_angle = 25 +speed_layer_0 = 70 +speed_print = 270 +speed_roofing = 215 +speed_support_bottom = 100 +speed_support_interface = 215 +speed_topbottom = 215 +speed_wall = 215 +speed_wall_x = 270 +speed_wall_x_roofing = 270 +support_line_width = 0.35 +wall_line_width_x = 0.4 +wall_overhang_angle = 25 +wall_overhang_speed_factor = 15 + diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg new file mode 100644 index 0000000000..482f0fa5ec --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg @@ -0,0 +1,54 @@ +[general] +definition = ultimaker_sketch_sprint +name = Draft +version = 4 + +[metadata] +intent_category = draft +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = verydraft +setting_version = 24 +type = intent +variant = 0.4mm + +[values] +acceleration_layer_0 = 5000 +acceleration_print = 20000 +acceleration_roofing = 5000 +acceleration_topbottom = 10000 +acceleration_travel_layer_0 = 5000 +acceleration_wall_0 = 5000.0 +acceleration_wall_0_roofing = 5000 +acceleration_wall_x = 10000 +acceleration_wall_x_roofing = 5000 +cool_fan_full_at_height = 0.54 +cool_min_layer_time = 2 +cool_min_speed = 50 +cool_min_temperature = 220 +infill_angles = [135] +infill_line_width = 0.4 +infill_overlap = 25 +infill_pattern = zigzag +infill_wipe_dist = 0.05 +initial_layer_line_width_factor = 125 +line_width = 0.4 +material_final_print_temperature = 225 +material_initial_print_temperature = 225 +material_print_temperature = 225 +retraction_hop_enabled = True +seam_overhang_angle = 25 +speed_layer_0 = 70 +speed_print = 270 +speed_roofing = 215 +speed_support_bottom = 100 +speed_support_interface = 215 +speed_topbottom = 215 +speed_wall = 215 +speed_wall_x = 270 +speed_wall_x_roofing = 270 +support_line_width = 0.35 +wall_line_width_x = 0.4 +wall_overhang_angle = 25 +wall_overhang_speed_factor = 15 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg new file mode 100644 index 0000000000..14a1d87dc5 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_pla_175 +quality_type = verydraft +setting_version = 24 +type = quality +variant = 0.4mm +weight = -3 + +[values] + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg new file mode 100644 index 0000000000..cc49b97b7f --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = verydraft +setting_version = 24 +type = quality +variant = 0.4mm +weight = -3 + +[values] +acceleration_layer_0 = 200 +acceleration_travel_layer_0 = =acceleration_layer_0 +speed_layer_0 = 30 +speed_slowdown_layers = 4 +speed_travel_layer_0 = 150 +wall_0_material_flow_layer_0 = =material_flow * 1.03 +wall_x_material_flow_layer_0 = =material_flow * 0.95 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg new file mode 100644 index 0000000000..d1d5bde260 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast +version = 4 + +[metadata] +global_quality = True +quality_type = verydraft +setting_version = 24 +type = quality +weight = -2 + +[values] +layer_height = 0.27 + From 859327b3ba47c6cf2d83d1e463146cfb3619dfc5 Mon Sep 17 00:00:00 2001 From: Alan Bjorklund Date: Tue, 28 Jan 2025 17:42:57 -0500 Subject: [PATCH 5/6] Sketch infill line width update Add logic that sets the infill width to 0.4 when the layer height is not equal to 0.2. The infill width at 0.45mm was causing the flow rate to be > 30 mm^3/s for 0.27 Balanced prints. This update corrects the flow rate issue. PP-561 --- resources/definitions/ultimaker_sketch_sprint.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/ultimaker_sketch_sprint.def.json b/resources/definitions/ultimaker_sketch_sprint.def.json index cde655e70f..4c5e68b983 100644 --- a/resources/definitions/ultimaker_sketch_sprint.def.json +++ b/resources/definitions/ultimaker_sketch_sprint.def.json @@ -130,7 +130,7 @@ ] }, "infill_before_walls": { "value": false }, - "infill_line_width": { "value": 0.45 }, + "infill_line_width": { "value": "0.45 if layer_height == 0.2 else 0.4" }, "infill_overlap": { "value": 10 }, "infill_pattern": { "value": "'lines'" }, "infill_sparse_density": { "value": 15 }, From f039e901327ec5e59e6afd804890ec55355c28ba Mon Sep 17 00:00:00 2001 From: Alan Bjorklund Date: Thu, 30 Jan 2025 14:28:09 -0500 Subject: [PATCH 6/6] Moved 0.27 profiles into "imperial" quality This commit corrects the filenames in the previous commit. Profiles with 0.27 layer height had "0.3" in the filename. Now they are correctly named as 0.27. PP-561 --- ... => um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg} | 2 +- ..._sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg} | 2 +- ...st.cfg => um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg} | 2 +- ... => um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg} | 2 +- ...st.cfg => um_sketch_sprint_global_Imperial_Quality.inst.cfg} | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename resources/intent/ultimaker_sketch_sprint/{um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg => um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg} (98%) rename resources/intent/ultimaker_sketch_sprint/{um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg => um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg} (98%) rename resources/quality/ultimaker_sketch_sprint/{um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg => um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg} (90%) rename resources/quality/ultimaker_sketch_sprint/{um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg => um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg} (95%) rename resources/quality/ultimaker_sketch_sprint/{um_sketch_sprint_global_Verydraft_Quality.inst.cfg => um_sketch_sprint_global_Imperial_Quality.inst.cfg} (88%) diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg similarity index 98% rename from resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg rename to resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg index c2c8b9b3bd..5204072807 100644 --- a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm_draft.inst.cfg +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = draft is_experimental = True material = ultimaker_pla_175 -quality_type = verydraft +quality_type = imperial setting_version = 24 type = intent variant = 0.4mm diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg similarity index 98% rename from resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg rename to resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg index 482f0fa5ec..546d69404d 100644 --- a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm_draft.inst.cfg +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = draft is_experimental = True material = ultimaker_tough_pla_175 -quality_type = verydraft +quality_type = imperial setting_version = 24 type = intent variant = 0.4mm diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg similarity index 90% rename from resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg rename to resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg index 14a1d87dc5..f084bc1791 100644 --- a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] is_experimental = True material = ultimaker_pla_175 -quality_type = verydraft +quality_type = imperial setting_version = 24 type = quality variant = 0.4mm diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg similarity index 95% rename from resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg rename to resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg index cc49b97b7f..1d7584fd7a 100644 --- a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] is_experimental = True material = ultimaker_tough_pla_175 -quality_type = verydraft +quality_type = imperial setting_version = 24 type = quality variant = 0.4mm diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg similarity index 88% rename from resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg rename to resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg index d1d5bde260..bef8501e67 100644 --- a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] global_quality = True -quality_type = verydraft +quality_type = imperial setting_version = 24 type = quality weight = -2